بنقرة واحدة
quick
Run a quick task without project ceremony
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run a quick task without project ceremony
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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 | quick |
| description | Run a quick task without project ceremony |
| disable-model-invocation | false |
Execute a one-off task with atomic commit tracking. Skips roadmap and phase planning but respects quality gates from project config. Works with or without an active Megazord project.
Reference @skills/init/design-system.md for all visual output formatting.
Reference @skills/shared/terminology.md for official term definitions.
╔═══════════════════════════════════════════════╗
║ ⚡ MEGAZORD ► QUICK ║
╚═══════════════════════════════════════════════╝
Read .planning/megazord.config.json.
If config exists: Parse it and note quality settings (TDD, review mode). These will be applied during execution.
If config does not exist: That is OK -- quick tasks work without a project. Use defaults:
Look for the task description in the user's message after /mz:quick.
If a description is provided (e.g., /mz:quick fix the typo in README.md):
/mz:quick as the task description.If no description is provided (just /mz:quick with nothing after):
Generate a sequential task number and slug:
.planning/quick/ directory for existing task directories.001-fix-typo/), add 1. If none exist, start at 001..planning/quick/{NNN}-{slug}/Write a minimal plan file at .planning/quick/{NNN}-{slug}/{NNN}-PLAN.md:
---
type: quick
task: {NNN}
description: "{task description}"
created: {ISO date}
---
<objective>
{task description}
</objective>
<tasks>
<task type="auto">
<name>Task 1: {task description}</name>
<action>{task description}</action>
<done>{task description} completed and committed.</done>
</task>
</tasks>
This is Phase 3 -- execute the task directly (no subagent delegation).
Read the task description and execute it. This means:
Display progress as you work.
If config exists and quality settings are enabled:
TDD (if quality.tdd is true):
Review (if quality.review is "auto"):
If quality gates are off: Skip directly to commit.
Quick means less ceremony, not less quality. If the user has TDD enabled, quick tasks get TDD too.
Stage all files changed by this quick task (NOT .planning/ files yet -- those come after):
git add {changed_files}
git commit -m "quick({NNN}): {slug}"
Record the commit hash.
Write .planning/quick/{NNN}-{slug}/{NNN}-SUMMARY.md:
---
type: quick
task: {NNN}
completed: {ISO date}
commit: {hash}
---
# Quick Task {NNN}: {description}
{Brief summary of what was done}
## Files Modified
- {file 1}
- {file 2}
Read STATE.md. If a ### Quick Tasks Completed section exists under ## Accumulated Context, append to it. If the section does not exist, create it.
Add an entry:
- Quick {NNN}: {description} ({commit hash}, {date})
Use the Edit tool to add this entry to STATE.md rather than rewriting the whole file.
Stage and commit the quick task tracking files:
git add .planning/quick/{NNN}-{slug}/
git commit -m "docs(quick-{NNN}): track {slug}"
╔═══════════════════════════════════════════════════════╗
║ Quick Task Complete ║
╠═══════════════════════════════════════════════════════╣
║ Task: {NNN} -- {description} ║
║ Commit: {hash} ║
║ Files: {N} modified ║
╚═══════════════════════════════════════════════════════╝
End with the Next Up block suggesting the logical next action:
/mz:status to see overall progress/mz:init to set up a project═══════════════════════════════════════════════════
▸ Next Up
**{suggestion}** -- {context}
`/mz:{command}`
═══════════════════════════════════════════════════