Turbo implement
Load code-style rules, make the change described by the current context, then run /finalize for QA and commit. Use for ad-hoc changes when no plan file or improvements backlog governs the work, and when the user asks to \"just implement\", \"implement directly\", \"implement without a plan\", or \"apply the change\".
git clone https://github.com/tobihagemann/turbo
T=$(mktemp -d) && git clone --depth=1 https://github.com/tobihagemann/turbo "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/implement" ~/.claude/skills/tobihagemann-turbo-implement && rm -rf "$T"
skills/implement/SKILL.mdImplement
Standard implementation flow: load style rules, make the change, run post-implementation QA.
Task Tracking
At the start, use
TaskCreate to create a task for each step:
- Run
skill/code-style - Make the change
- Run
skill/finalize
Step 1: Run /code-style
Skill
/code-styleRun the
/code-style skill to load mirror, reuse, and symmetry rules before editing.
Step 2: Make the Change
Apply the change described by the current context — the user request, a prior skill's task description, or an improvement entry. Keep the edit scoped to what the context describes. If the scope balloons beyond what the context specified, stop and confirm scope before continuing.
Step 3: Run /finalize
Skill
/finalizeRun the
/finalize skill.
Then use the TaskList tool and proceed to any remaining task.