Planning Tools
AI-powered plan generation and execution.
Planning tools use your Anthropic API key locally to generate structured work plans from natural language descriptions. The two-step flow — preview then confirm — ensures you always review before tickets are created.
create_plan
Generates a structured plan from a natural language feature description. Returns a preview with an epic, stories, and subtasks — nothing is created yet. Uses Claude claude-sonnet-4-20250514 via your local Anthropic key.
When it runs: Called when you describe a feature and ask for a plan.
Example trigger: "Create a plan for the password reset flow"
| Parameter | Type | Required | Description |
|---|---|---|---|
| description | string | Yes | Natural language description of the feature or work to plan |
confirm_plan
Executes a previously previewed plan. Creates all tickets (epic, stories, subtasks) in your project tracker. Each ticket creation counts as one write action.
When it runs: Called when you approve a plan that was generated by create_plan.
Example trigger: "Yes, create those tickets"
| Parameter | Type | Required | Description |
|---|---|---|---|
| plan_id | string | Yes | The plan ID returned by create_plan |