Execute implementation plans with checkpoints. Use to systematically work through planned tasks with progress tracking.
View on GitHubpaxtone-io/openkodo
kodo
plugins/kodo/skills/execute/SKILL.md
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/paxtone-io/openkodo/blob/main/plugins/kodo/skills/execute/SKILL.md -a claude-code --skill executeInstallation paths:
.claude/skills/execute/# Executing Implementation Plans ## Overview Load plan, review critically, execute tasks in batches, report for review between batches. Stop immediately when blocked - never guess. **Core principle:** Batch execution with checkpoints for review. **Announce at start:** "I'm using the execute skill to implement this plan." ## The Process ### Step 1: Load and Review Plan 1. Read the plan file completely 2. Review critically - identify any questions or concerns 3. **If concerns:** Raise them before starting. Don't proceed with unclear instructions. 4. **If no concerns:** Create TodoWrite with all tasks, proceed to Step 2 **Questions to ask:** - Are file paths clear and complete? - Is the code complete or does it have placeholders? - Do I understand the test expectations? - Are there implicit dependencies not listed? ### Step 2: Execute Batch **Default batch size: 3 tasks** For each task in the batch: 1. Mark task as `in_progress` in TodoWrite 2. Follow each step exactly as written 3. Run verifications as specified in plan 4. Mark as `completed` only when ALL steps pass 5. Capture learnings: `kodo reflect --signal "Pattern that worked: ..."` **Execute steps literally:** - If plan says "run `cargo test`" - run exactly that - If plan says "expected output: FAIL" - verify you see FAIL - If plan shows code - use that exact code ### Step 3: Report When batch complete: ``` Completed tasks 1-3: - Task 1: [summary] - PASS - Task 2: [summary] - PASS - Task 3: [summary] - PASS Verification output: [key test results] Ready for feedback before continuing. ``` **Wait for user response before proceeding.** ### Step 4: Continue or Adjust Based on feedback: - **"Continue"** - Execute next batch - **"Fix X"** - Apply changes, re-verify, then continue - **"Stop"** - Save progress, note remaining tasks Repeat Steps 2-4 until complete. ### Step 5: Completion After all tasks complete: 1. Run full test suite 2. Verify all commits are clean 3. Offer code review: "Ready fo