examples/reference-agent/skills/executing-plans/SKILL.md
Use when the user says "execute my plan", "run the plan", "start executing", "implement the plan step by step", or has a written plan to execute sequentially with review checkpoints. Tasks run one at a time in order. If tasks are independent and can run in parallel, use parallel-execute instead.
npx skillsauth add adrozdenko/soleri executing-plansInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Load plan, review critically, execute tasks in batches, report for review between batches.
Announce at start: "I'm using the executing-plans skill to implement this plan."
salvador_core op:get_plan
salvador_core op:plan_list_tasks
params: { planId: "<id>" }
salvador_core op:plan_stats
If no tracked plan exists, read from docs/plans/. Review critically — raise concerns before starting.
salvador_core op:loop_start
params: { prompt: "<plan objective>", mode: "custom" }
For each task:
op:update_task — mark in_progressop:update_task — mark completedop:loop_iterate — track progressShow what was implemented, verification output, loop status. Say: "Ready for feedback."
Apply feedback, execute next batch, repeat until complete.
salvador_core op:loop_completesalvador_core op:plan_reconcile — compare planned vs actualsalvador_core op:plan_complete_lifecycle — extract knowledge, archivesalvador_core op:session_capture — save session contextCapture mid-execution learnings with op:capture_quick as they happen — don't wait until the end.
Ask for clarification rather than guessing.
Do NOT rationalize away failures. If a verification step fails, the task is not complete.
completed.plan_reconcile. Do not reconcile a failing plan.completed while its tests fail, even if the code "looks right."in_progress and report honestly.| Op | When to Use |
| ----------------------------------------------- | --------------------------- |
| get_plan / plan_list_tasks / plan_stats | Load plan |
| update_task | Mark task status |
| loop_start / loop_iterate / loop_complete | Validation loop |
| plan_reconcile | Post-execution drift report |
| plan_complete_lifecycle | Extract knowledge, archive |
| session_capture | Save session context |
| capture_quick | Mid-execution learnings |
Related skills: writing-plans, verification-before-completion, test-driven-development
testing
Triggers: "terse mode", "be brief", "less tokens", "fewer tokens", "compress output", "caveman", or invokes /terse. Token-efficient responses with full technical accuracy.
tools
Triggers: "compress this file", "compress CLAUDE.md", "compress memory", "shrink this", "reduce tokens in file", or invokes /compress. Compresses natural language files to save input tokens.
testing
Triggers: "release", "bump version", "publish packages", "cut a release", "version bump", "npm publish". Bumps monorepo versions, commits, tags, pushes to trigger CI release. Use deliver-and-ship for quality gates.
development
Triggers: "implement X", "build Y", "fix Z", "add feature", or any work task needing planning + execution. Full orchestration loop: plan, execute, complete with vault context and brain recs.