Executing plans
Skill NickCrew/Claude-Cortex/skills/collaboration/executing-plans
Claude Cortex
npx -y skills add NickCrew/Claude-Cortex --skill executing-plansAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 23 stars23 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Execution discipline that translates plans into tracked tasks with orchestration and verification loops. Use when driving a plan through cortex’s task system, coordinating workstreams across agents, or ensuring every plan item is tracked, executed, and verified.
The file declares its own license as MIT (obra/superpowers). That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.8 KB, as published. Nobody here has run it
Executing Plans
Locks in an approved plan and drives it through cortex’s orchestration and verification stack, ensuring every item becomes a tracked task that is executed, verified, and reported.
When to Use This Skill
- A plan from
writing-plansor/ctx:planis ready for execution - Coordinating multiple workstreams or agents against a shared plan
- Ensuring plan items are tracked as tasks with status updates
- Running verification loops (tests, lint, visual checks) before marking tasks done
- Avoid using before a plan exists — use
writing-plansfirst
Prerequisites
- Plan output available in the thread (from
writing-plansor/ctx:plan) - Access to Task view (
T) in cortex TUI - Relevant modes and agents activated for the workstreams
Workflow
Step 1: Create and Sync Tasks
For each plan item, create or update a task in the Task view:
Task view (T) → Add (A) or Edit (E)
- Set category and workstream to mirror the plan’s stream names
- Ensure every plan item has a corresponding task — no orphan items
- Link tasks to the originating plan document
Step 2: Activate Modes and Rules
Toggle the required configuration to match the plan:
- Modes (view
3): Activate modes needed for current workstreams - Rules (view
4): Enable rules that apply (e.g., testing requirements, style enforcement)
Step 3: Execute Workstream Loops
For each task in priority order:
- Pick the next task from the active workstream
- Execute the work (implementation, writing, configuration, etc.)
- Verify before marking complete:
- Run tests:
pytest,vitest, or project-specific test command - Run linting:
just lintor equivalent - Visual check via Supersaiyan if UI changes are involved
- Run tests:
- Update task status and progress notes
# Example verification sequence
just test && just lint && echo "Verification passed"
Step 4: Update Stakeholders
For each completed workstream:
- Summarize progress and what’s next
- Attach relevant screenshots, logs, or test output
- Flag any blockers or scope changes discovered during execution
Step 5: Run Retrospective Hooks
When all tasks are complete:
- Close all tasks in the Task view
- Capture learnings and surprises in the chat thread
- Link back to the original plan document
- Note any follow-up issues or tech debt discovered
Expected Output
tasks/current/active_agents.jsonupdated with task statuses- Status update message covering: completed tasks, blockers, verification evidence
- Next steps or follow-up issues if the plan extends beyond this session
Best Practices
- Verify before advancing — Never mark a task done without running the verification loop
- One task at a time — Complete and verify each task before starting the next
- Update status in real time — Stakeholders should see progress, not just a final dump
- Link everything — Tasks link to plan, plan links to tasks, status updates reference both
- Capture blockers immediately — Don’t wait until the retrospective to surface problems
Resources
- Execution checklist:
skills/collaboration/executing-plans/resources/checklist.md