> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enagrams.com/llms.txt
> Use this file to discover all available pages before exploring further.

# decision_reaffirm

> Mark stale decisions fresh again

## Overview

Mark stale decisions as still valid even though their linked code changed. Use when the decision's rationale still holds and the drift was cosmetic (rename, file move, implementation swap that preserves the contract).

For decisions that no longer hold, record a new one (`decide`) that supersedes the old one — do not reaffirm.

## Parameters

| Parameter      | Type      | Required | Description              |
| -------------- | --------- | -------- | ------------------------ |
| `decision_ids` | string\[] | Yes      | Decision ids to reaffirm |

## Example

```json theme={null}
{
  "tool": "decision_reaffirm",
  "arguments": { "decision_ids": ["dec_abc", "dec_def"] }
}
```
