Bouncer execute-implementation-plan
install
source · Clone the upstream repo
git clone https://github.com/imbue-ai/bouncer
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/imbue-ai/bouncer "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/execute-implementation-plan" ~/.claude/skills/imbue-ai-bouncer-execute-implementation-plan && rm -rf "$T"
manifest:
.claude/skills/execute-implementation-plan/SKILL.mdsource content
Execute Implementation Plan
Input
Feature name: $ARGUMENTS
Before starting
-
Read the overview file at
. This is the ONLY file you read right now — do not read any task files yet.docs/$ARGUMENTS/implementation_plan/00_overview.md -
Build the TODO list from the Task Index table in the overview. For each row, create a TODO entry with this exact format:
Read and execute docs/$ARGUMENTS/implementation_plan/<filename>For example:
- "Read and execute docs/my-feature/implementation_plan/01_01_install_diffs.md" — pending
- "Read and execute docs/my-feature/implementation_plan/01_02_replace_changes_tab.md" — pending
- "Read and execute docs/my-feature/implementation_plan/02_01_add_config_fields.md" — pending
Executing tasks
Work through the TODO list in order. For each entry:
- Mark it as in_progress
- Read the task file specified in the TODO entry
- Follow the instructions in
to implement, verify, self-review, and commit the task.claude/skills/execute-implementation-plan/implement_task.md - Mark it as completed
- Move to the next entry
If a task fails with a hard blocker you cannot resolve, stop and ask the user how to proceed.
Do not
- Read task files ahead of time — only read each task file when you start working on it
- Skip verification steps
- Commit if verification is failing
- Proceed past a failed task without asking the user