From project-toolkit
Manages execution plans as versioned Markdown artifacts with progress tracking, decision logs, and archiving in .agents/plans. Use for creating, updating, or archiving plans in complex multi-step work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-toolkit:execution-plansclaude-sonnet-4-6The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Treat execution plans as first-class artifacts, versioned in the repository.
Treat execution plans as first-class artifacts, versioned in the repository.
.agents/
├── plans/
│ ├── active/ # Plans currently in progress
│ ├── completed/ # Successfully finished plans
│ └── abandoned/ # Plans that were stopped (with rationale)
└── debt/
└── tech-debt-registry.md # Known technical debt items
| Trigger Phrase | Operation |
|---|---|
create execution plan | Create new plan in active/ |
update plan progress | Add progress entry to existing plan |
log decision | Add decision to plan's decision log |
complete plan | Move plan to completed/ |
abandon plan | Move plan to abandoned/ with rationale |
Use .agents/plans/TEMPLATE.md as the starting point for new plans.
| Section | Purpose |
|---|---|
| Metadata | Status, dates, owner, complexity |
| Objectives | Checkboxes for trackable goals |
| Decision Log | Table of decisions with rationale |
| Progress Log | Timestamped updates with agent attribution |
| Blockers | Current impediments |
| Related | Links to issues, PRs, ADRs |
.agents/plans/active/{slug}.mdAdd row to Decision Log table:
| Date | Decision | Rationale | Alternatives Considered |
|---|---|---|---|
| YYYY-MM-DD | What was decided | Why this choice | What else was evaluated |
active/ to completed/active/ to abandoned/| Avoid | Why | Instead |
|---|---|---|
| Plans without objectives | Not trackable | Define measurable checkboxes |
| Undocumented decisions | Lost institutional knowledge | Log every non-trivial choice |
| Stale active plans | Clutters workspace | Complete or abandon promptly |
| Plans without issue links | No traceability | Always link to source issue |
After creating a plan:
.agents/plans/active/After completing:
completed/npx claudepluginhub rjmurillo/ai-agents --plugin project-toolkitManages execution plans as versioned Markdown artifacts with progress tracking, decision logs, and archiving in .agents/plans. Use for creating, updating, or archiving plans in complex multi-step work.
Executes tasks from PLAN.md sequentially with human oversight, handling task splitting, clarifying questions, tests, and learning persistence. Useful for deliberate progress on planned work.
Organizes complex tasks using a Manus-style planning system. Creates task_plan.md, findings.md, and progress.md files for project planning, multi-step plans, and session recovery after /clear.