Stats
Actions
Tags
From wheel
Show the status of the currently running workflow. Displays workflow name, current step, progress, and elapsed time.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wheel:wheel-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display the current state of the active workflow.
Display the current state of the active workflow.
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.
STATE=$(cat .wheel/state.json)
NAME=$(echo "$STATE" | jq -r '.workflow_name')
STATUS=$(echo "$STATE" | jq -r '.status')
CURSOR=$(echo "$STATE" | jq -r '.cursor')
TOTAL=$(echo "$STATE" | jq '.steps | length')
STEP_ID=$(echo "$STATE" | jq -r ".steps[$CURSOR].id")
STEP_STATUS=$(echo "$STATE" | jq -r ".steps[$CURSOR].status")
STARTED=$(echo "$STATE" | jq -r '.started_at')
LAST_CMD=$(echo "$STATE" | jq -r ".steps[$CURSOR].command_log[-1].command // \"(none)\"")
echo "Workflow: $NAME"
echo "Status: $STATUS"
echo "Step: $STEP_ID ($((CURSOR + 1))/$TOTAL)"
echo "Step status: $STEP_STATUS"
echo "Last command: $LAST_CMD"
echo "Started: $STARTED"
/wheel-stop to clean up.npx claudepluginhub yoshisada/ai-repo-template --plugin wheelGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.