# Plan: [Phase]-[Plan] - [Objective]

## Objective
[One-sentence goal of this plan]

## Context
[Essential background: why are we doing this, what came before, what constraints exist]

## Dependencies
- [Other plans this depends on]
- OR: None

## Tasks

<task type="auto">
<name>[Clear task name]</name>
<files>[Specific file paths, comma-separated]</files>
<action>
[Detailed implementation instructions]
[Include what to avoid and WHY]
[Be specific about commands, APIs, libraries]
</action>
<verify>[Commands/tests to run that prove it works]</verify>
<done>[Observable acceptance criteria]</done>
</task>

<task type="auto">
<name>[Next task name]</name>
<files>[File paths]</files>
<action>
[Instructions]
</action>
<verify>[Verification]</verify>
<done>[Completion criteria]</done>
</task>

## Success Criteria
- [Observable outcome 1]
- [Observable outcome 2]

## Verification
[Commands to run to verify the entire plan]

```bash
# Example:
npm test
npm run build
curl -X POST http://localhost:3000/api/test
```

---

*This plan will be executed by reis_executor in a fresh context.*
