← ClaudeAtlas

soleri-executing-planslisted

Triggers: "execute my plan", "run the plan", "start executing", "implement the plan". Sequential task execution with review checkpoints. Use parallel-execute for concurrent.
adrozdenko/soleri · ★ 6 · AI & Automation · score 74
Install: claude install-skill adrozdenko/soleri
# Executing Plans 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." ## The Process ### Step 1: Load and Review Plan ``` YOUR_AGENT_core op:get_plan YOUR_AGENT_core op:plan_list_tasks params: { planId: "<id>" } YOUR_AGENT_core op:plan_stats ``` If no tracked plan exists, read from `docs/plans/`. Review critically — raise concerns before starting. ### Step 2: Start Execution Loop ``` YOUR_AGENT_core op:loop_start params: { prompt: "<plan objective>", mode: "custom" } ``` ### Step 3: Execute Batch (default: first 3 tasks) For each task: 1. `op:update_task` — mark `in_progress` 2. Follow each step exactly 3. Run verifications as specified 4. `op:update_task` — mark `completed` 5. `op:loop_iterate` — track progress ### Step 4: Report Show what was implemented, verification output, loop status. Say: "Ready for feedback." ### Step 5: Continue Apply feedback, execute next batch, repeat until complete. ### Step 6: Complete Development 1. Run final verification (use verification-before-completion skill) 2. `YOUR_AGENT_core op:loop_complete` 3. `YOUR_AGENT_core op:plan_reconcile` — compare planned vs actual 4. `YOUR_AGENT_core op:plan_complete_lifecycle` — extract knowledge, archive 5. `YOUR_AGENT_core op:session_capture` — save session context Capture mid-execution learnings with `op:capture_quick` as they happen — don't wait until the end.