Turbo stage
Stage implementation changes for commit with precise file selection. Use when the user asks to \"stage changes\", \"stage files\", \"add files to staging\", or \"prepare changes for commit\".
install
source · Clone the upstream repo
git clone https://github.com/tobihagemann/turbo
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tobihagemann/turbo "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/stage" ~/.claude/skills/tobihagemann-turbo-stage && rm -rf "$T"
manifest:
skills/stage/SKILL.mdsource content
Stage Changes
Stage implementation changes with precise file selection.
Step 1: Identify Changes
Run
git status to see all modified, added, and deleted files.
Step 2: Stage Files
Stage only the files relevant to the current task:
git add <file1> <file2> ...
- Do not use
orgit add -Agit add . - If a file contains both relevant and unrelated changes, use
to stage only the relevant hunksgit add -p <file> - Never stage files containing secrets (
, credentials, API keys). Warn if detected..env
Step 3: Verify
Run
git status and git diff --cached to verify the staging area contains exactly the intended changes.
Then use the TaskList tool and proceed to any remaining task.