decision_refresh
Update an existing decision's metadata—advance its review date, append dated evidence, or change its status—without editing decisions.json directly.
Instructions
Refresh an existing decision's metadata: bump review_date forward, append evidence as the decision continues to hold, or change status (active/superseded/archived). Use INSTEAD of editing decisions.json directly. Does not mutate decision content — for content changes, log a new decision via decision_log.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | New status. Use 'superseded' only when a replacement decision exists — prefer logging the replacement via decision_log with its `supersedes` parameter instead. Transitioning away from 'superseded' automatically clears the dangling superseded_by pointer. | |
| decision_id | Yes | ID of the decision to refresh (e.g. 'dec-002') | |
| review_date | No | New review date YYYY-MM-DD | |
| add_evidence | No | Evidence note to append (e.g. 'shipped v1, onboarded first users'). Each call appends a dated entry, never overwrites. |