From superpowers
Use when MCP cloud connection is available - reports workflow phase transitions to the cloud for tracking and quality gate enforcement
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:cloud-workflow-trackingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When MCP cloud tools are available, report workflow phase transitions to enable cloud-backed quality gates, telemetry, and team visibility.
When MCP cloud tools are available, report workflow phase transitions to enable cloud-backed quality gates, telemetry, and team visibility.
Core principle: Report state transitions to the cloud. Never let cloud unavailability block local work.
This skill activates when bazdmeg_workflow_* MCP tools are available. If they're not available, skip all cloud reporting silently.
When beginning a new task or conversation that involves development work:
Call: bazdmeg_workflow_start
projectName: (repo or project name)
branchName: (current branch, if applicable)
Save the returned sessionId for subsequent calls.
At each phase boundary, report the transition:
| When | Call |
|---|---|
| Starting brainstorming | bazdmeg_workflow_transition with toPhase: "BRAINSTORMING" |
| Moving to planning | bazdmeg_workflow_transition with toPhase: "PLANNING" |
| Starting implementation | bazdmeg_workflow_transition with toPhase: "IMPLEMENTING" |
| Starting review | bazdmeg_workflow_transition with toPhase: "REVIEWING" |
| Finishing up | bazdmeg_workflow_transition with toPhase: "FINISHING" |
When invoking a superpowers skill, also record it:
Call: bazdmeg_skill_invoke
skillName: (the skill being invoked)
sessionId: (current session)
When the skill completes:
Call: bazdmeg_skill_complete
eventId: (from invoke response)
outcome: "success" | "failure" | "skipped"
When work is complete:
Call: bazdmeg_workflow_complete
sessionId: (current session)
When abandoning work:
Call: bazdmeg_workflow_abandon
sessionId: (current session)
reason: (why)
Critical rule: Cloud reporting NEVER blocks local work.
Pairs with:
npx claudepluginhub zerdos/superpowers --plugin superpowersOrchestrates deprecated workflow phases via /0-init to /4-security commands for session init, task planning, implementation, QA checks, and security reviews using agents.
DEPRECATED: Orchestrates legacy workflow commands (/0-init to /4-security) for development session init, planning, implementation, QA, and security using agent chains.
Drives a config-driven state machine for dev workflows: reads state.md, executes stages inline or via subagents, transitions via update-status.sh. Requires an existing state.md bootstrap.