with one click
settings
View and modify Megazord project configuration
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
View and modify Megazord project configuration
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| name | settings |
| description | View and modify Megazord project configuration |
| disable-model-invocation | false |
View current Megazord configuration and modify individual settings. Changes take effect on the next skill invocation.
Reference @skills/init/design-system.md for all visual output formatting.
Display the stage banner:
╔═══════════════════════════════════════════════╗
║ ⚡ MEGAZORD ► SETTINGS ║
╚═══════════════════════════════════════════════╝
Read .planning/megazord.config.json. If the file does not exist, display:
╔═══════════════════════════════════════════════╗
║ ✗ No Megazord config found ║
╠═══════════════════════════════════════════════╣
║ Run /mz:init to set up your project first. ║
╚═══════════════════════════════════════════════╝
Then exit. Do not proceed further.
If the config file exists, parse it and display the current settings:
╔═══════════════════════════════════════════════════════╗
║ Current Settings ║
╠═══════════════════════════════════════════════════════╣
║ ▸ Project ║
║ Name: {project_name} ║
║ Mode: {yolo|interactive} ║
║ Depth: {comprehensive|standard|quick} ║
║ Parallelization: {✓/✗} ║
║ Commit docs: {✓/✗} ║
║ ║
║ ▸ Model ║
║ Profile: {quality|balanced|budget} ║
║ ║
║ ▸ Quality ║
║ TDD: {✓/✗} ║
║ Review: {auto|manual|off} ║
║ Brainstorming: {✓/✗} ║
║ CORTEX: {✓/✗} ║
║ Debug: {systematic|quick} ║
║ ║
║ ▸ Workflow ║
║ Research: {✓/✗} ║
║ Plan check: {✓/✗} ║
║ Verifier: {✓/✗} ║
╚═══════════════════════════════════════════════════════╝
Use ✓ for true values and ✗ for false values. Display enum values as-is (e.g., "auto", "systematic").
Ask the user what they would like to change.
Use AskUserQuestion:
If "Done": Display "Settings unchanged." and exit.
If the user selects "Quality", present each toggle:
If the user selects "Workflow", present each toggle:
If the user selects "Model", present:
If the user selects "Execution", present each setting:
After collecting changes, write the updated config back to .planning/megazord.config.json with 2-space indentation.
Show what changed:
╔═══════════════════════════════════════════════╗
║ Settings Updated ║
╠═══════════════════════════════════════════════╣
║ {setting}: {old value} → {new value} ║
║ {setting}: {old value} → {new value} ║
╚═══════════════════════════════════════════════╝
If no values actually changed (user selected same values), display: "No changes detected. Settings remain the same."
Note: "Changes take effect on the next skill invocation."
Ask if the user wants to change anything else. If yes, return to Step 2. If no, exit with the next-up block:
═══════════════════════════════════════════════════
▸ Next Up
**Check Project Status** -- see current progress and next actions
`/mz:status`
═══════════════════════════════════════════════════