com um clique
status
Show project progress, current phase, and next actions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Show project progress, current phase, and next actions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Initialize a Megazord project with configuration and planning structure
Systematic four-phase debugging (reproduce, isolate, root-cause, fix)
Socratic brainstorming to explore approaches before implementation
Execute the current phase plan (subagent or Agent Teams mode)
Show all available Megazord skills with descriptions and usage examples
Complete milestone lifecycle -- audit, archive, deferred items, and next version preparation
Baseado na classificação ocupacional SOC
| name | status |
| description | Show project progress, current phase, and next actions |
| disable-model-invocation | false |
Display current project progress, phase completion, and recommended next actions. Supports compact (default) and verbose (--verbose) modes.
Reference @skills/init/design-system.md for all visual output formatting.
Reference @skills/shared/presentation-standards.md for content formatting rules.
Reference @skills/shared/terminology.md for official term definitions.
╔═══════════════════════════════════════════════╗
║ ⚡ MEGAZORD ► STATUS ║
╚═══════════════════════════════════════════════╝
Read .planning/megazord.config.json. Extract plugin_path from the config. If plugin_path is not set, try ~/.claude/plugins/mz. If neither exists, display a warning but continue (status can still show state data without CLI tools).
If the config file does not exist, display:
╔═══════════════════════════════════════════════╗
║ ✗ No Megazord project found ║
╠═══════════════════════════════════════════════╣
║ Run /mz:init to set up your project first. ║
╚═══════════════════════════════════════════════╝
Then exit.
Read .planning/STATE.md for current position, accumulated context, and session continuity.
Read .planning/ROADMAP.md for phase listing and completion status.
Check if the user's message contains --verbose or -v. Store the result as a boolean.
Run via Bash to get progress JSON:
node {plugin_path}/bin/megazord.mjs tools progress
Parse the JSON result which contains:
overall: overall progress percentagecurrentPhase: { completed, total } plan countsbar: pre-formatted progress bar stringAlso run via Bash to get current position:
node {plugin_path}/bin/megazord.mjs tools state read-position
Parse the JSON result which contains:
phase, totalPhases, phaseNameplan, totalPlansstatusWhere {plugin_path} is resolved from config.plugin_path, falling back to ~/.claude/plugins/mz.
Display the project name and current position using heading-based layout (per presentation-standards.md — no action box for regular summaries):
### {project_name}
Phase {phase}/{totalPhases}: {phaseName} — {functional_sentence_from_goal}
Plan {plan}/{totalPlans}: {status}
Power: ████░░░░░░ {percentage}%
Where {functional_sentence_from_goal} is extracted from the phase's Goal field in ROADMAP.md (max 8-10 words, user-centric). This provides inline phase context per presentation-standards.md Section 4.
Calculate {percentage} from the overall field in the progress JSON. Render the progress bar using Unicode blocks: █ for filled, ░ for empty (10 characters total).
Display the Recent section showing the last 3 phases from ROADMAP.md with status symbols, functional descriptions, and progress bars:
▸ Recent
✓ Phase 1: {name} — {functional_sentence} ({plan_count}/{plan_count})
✓ Phase 2: {name} — {functional_sentence} ({plan_count}/{plan_count})
◆ ████░░░░░░ Phase 3: {name} — {functional_sentence} ({completed}/{total})
Use these status symbols:
✓ for completed phases (all plans have SUMMARY.md files, or marked [x] in ROADMAP.md)◆ for the current in-progress phase — prepend a progress bar before the phase label○ for pending/future phasesExtract the functional sentence for each phase from the phase's Goal field in ROADMAP.md. Shorten to max 8-10 words. Use user-centric language (what the phase makes possible, not what it technically implements).
Read the loaded config and display active toggle states:
▸ Config
Model: {model_profile} ({resolved default model, e.g., "opus"})
TDD: {on | off}
Review: {auto | manual | off}
Brainstorm: {on | off}
CORTEX: {on | off}
Debug: {systematic | quick}
Research: {on | off}
Plan check: {on | off}
Verifier: {on | off}
Map config values to display:
model_profile: Show as "{profile} ({model name})" -- e.g., "quality (opus)", "balanced (sonnet)", "budget (haiku)"quality.tdd: true -> "on", false -> "off"quality.review: Show the enum value directly: "auto", "manual", or "off"quality.brainstorming: true -> "on", false -> "off"quality.cortex: true -> "on", false -> "off"quality.debug: Show the enum value directly: "systematic" or "quick"workflow.research: true -> "on", false -> "off"workflow.plan_check: true -> "on", false -> "off"workflow.verifier: true -> "on", false -> "off"If model_overrides has any entries, display them after the Model line:
Overrides: executor=opus, researcher=haiku
Only show the Overrides line if model_overrides is non-empty. Omit entirely if no overrides are set.
Read session continuity from STATE.md. If Last error field exists and is not "None", display:
▸ Last Error
{error context from STATE.md}
Only show this if the error is from the most recent session. Do not show stale errors.
Determine the appropriate next action based on current state:
.planning/ does not exist or no config: suggest /mz:init/mz:plan (to create roadmap)/mz:plan {N} (include specific phase number)/mz:go/mz:verify {N} (include specific phase number)Use the heading-based Next Up format (per presentation-standards.md Section 8):
## Next Up
**{What to do}: Phase {N}: {Name} — {functional_sentence_from_goal}**
`/mz:{command} {phase_number}`
<sub>`/clear` — start fresh context for the next step</sub>
Extract the functional sentence for the target phase from ROADMAP.md Goal field (max 8-10 words, user-centric). Always include the specific phase number in the command (e.g., /mz:plan 4, /mz:verify 3).
If NOT verbose, stop here. Do not display verbose sections.
If verbose mode was requested, display everything from Step 5 PLUS the following additional sections.
List every phase from ROADMAP.md with status symbol, functional description, plan counts, and duration (from STATE.md Performance Metrics if available) — one line per phase:
▸ All Phases
✓ Phase 1: {name} — {functional_sentence} ({completed}/{total}) {duration}
✓ Phase 2: {name} — {functional_sentence} ({completed}/{total}) {duration}
◆ ████░░░░░░ Phase 3: {name} — {functional_sentence} ({completed}/{total})
○ Phase 4: {name} — {functional_sentence}
○ Phase 5: {name} — {functional_sentence}
Duration appears inline for completed phases only (e.g., ~6min). Future phases show name and functional sentence only — no progress info. The active phase shows a progress bar before the label.
Extract the functional sentence for each phase from the phase's Goal field in ROADMAP.md. Shorten to max 8-10 words, user-centric.
Same Config section as Step 5 -- display all toggle states in verbose mode as well. This section appears in both compact and verbose output since the user specifically requested config visibility at a glance.
If PLAN.md files exist for the current phase, list them with status and functional objectives:
▸ Current Phase Tasks
✓ Plan 01: {functional_objective} (completed)
◆ Plan 02: {functional_objective} (in progress)
○ Plan 03: {functional_objective}
Where {functional_objective} is extracted from each plan's <objective> section — user-centric, max 10 words. Use ✓ for plans with a corresponding SUMMARY.md, ◆ for the current plan (next without summary), ○ for remaining plans.
Display performance metrics from STATE.md:
▸ Performance
Plans completed: {total}
Average duration: {avg}min
Total execution: {total} hours
Display recent decisions from STATE.md Accumulated Context section:
▸ Decisions
- {decision 1}
- {decision 2}
- {decision 3}
Show up to 5 most recent decisions. If more exist, show "... and {N} more in STATE.md".
Same as Step 5 -- always end with the Next Up block using the ## Next Up heading format per presentation-standards.md Section 8.