Stats
Actions
Tags
From wheel
Stop the currently running workflow. Archives state.json to .wheel/history/ and deactivates hook interception.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wheel:wheel-stopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stop the active workflow, archive the state for history, and deactivate hook interception.
Stop the active workflow, archive the state for history, and deactivate hook interception.
if [[ ! -f ".wheel/state.json" ]]; then
echo "No workflow is currently running."
exit 0
fi
If no workflow is running, report that and stop here.
mkdir -p .wheel/history
NAME=$(jq -r '.workflow_name' .wheel/state.json)
TIMESTAMP=$(date -u +%Y%m%d-%H%M%S)
cp .wheel/state.json ".wheel/history/${NAME}-${TIMESTAMP}.json"
rm .wheel/state.json
echo "Workflow '$NAME' stopped. Archived to .wheel/history/${NAME}-${TIMESTAMP}.json"
echo "Hooks are now dormant."
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub yoshisada/ai-repo-template --plugin wheel