بنقرة واحدة
status
Show current Maestro state — plans, drafts, active tasks, and wisdom files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Show current Maestro state — plans, drafts, active tasks, and wisdom files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
UI/UX design intelligence with searchable database
Generate comprehensive implementation plans through systematic discovery, synthesis, verification, and decomposition into beads. Use when asked to plan a feature, create a roadmap, design an implementation approach, or decompose work into trackable issues. Do NOT use for simple one-step tasks, quick fixes, or when the user just wants to execute an existing plan — use the work skill instead.
Execute a plan or direct task with worker delegation and verification.
Deep investigation mode. Gather context, analyze, synthesize recommendations without making code changes.
Fetch up-to-date library documentation via Context7 MCP. Use when working with external libraries, APIs, or frameworks.
Start interview-driven planning with Prometheus. Asks clarifying questions before generating implementation plan.
| name | status |
| description | Show current Maestro state — plans, drafts, active tasks, and wisdom files. |
| allowed-tools | Read, Bash, Glob, Grep, TaskList |
| disable-model-invocation | true |
Report the current state of all Maestro artifacts.
List all files in .maestro/plans/:
If empty, report "No plans found. Run /design to create one."
List all files in .maestro/archive/:
If empty, report "No archived plans."
List all files in .maestro/context/:
If empty, report "No project context. Run /setup to create."
List all files in .maestro/drafts/:
If empty, report "No active drafts."
Run TaskList to check for any active task lists:
If no tasks, report "No active task lists."
List all files in .maestro/wisdom/:
If empty, report "No wisdom accumulated yet. Complete a /work cycle to start learning."
List all files in .maestro/research/:
If empty, report "No research sessions. Run /research <topic> to start one."
Check if .maestro/notepad.md exists:
## Priority Context — N items## Working Memory — N items## Manual — N itemsIf file doesn't exist, report "No notepad. Run /note <content> to start."
List all files in .maestro/handoff/:
If empty, report "No active handoffs."
If any handoff has status: "designing", highlight it: "Design in progress for {topic} — started {timestamp}."
Check for active Maestro worktrees:
git worktree list --porcelain
Filter for worktrees on maestro/* branches (these are Maestro-created worktrees).
For each Maestro worktree, report:
.maestro/handoff/*.json has matching worktree_path or worktree_branch)If no Maestro worktrees found, report "No active Maestro worktrees."
Check for active teams:
ls ~/.claude/teams/ 2>/dev/null
Report any active team directories.
Check trace log state:
ls -la .maestro/trace.jsonl 2>/dev/null
If .maestro/trace.jsonl exists, report:
wc -l .maestro/trace.jsonl
If missing, report "No trace log found."
Check PSM session state:
ls -la ~/.maestro-psm/sessions.json 2>/dev/null
If ~/.maestro-psm/sessions.json exists, report active session count from .sessions entries:
jq '.sessions | length' ~/.maestro-psm/sessions.json
If missing, report "No PSM sessions state found."
Based on the state discovered above, suggest the most relevant next action:
| State | Suggestion |
|---|---|
| Plans exist + no active tasks | Cross-reference .maestro/handoff/*.json for a handoff with status: "complete" whose plan_destination matches an existing plan. If found: "Ready to execute: {plan title}. Run /work to start, or claude "/work" for a fresh session." If no matching handoff: "Ready to execute. Run /work to start." |
| Wisdom exists + no active tasks | "Previous cycle complete. Run /design for next iteration or /review to verify." |
| Active teams present | "Workers may be running. Run /reset if stuck." |
| Worktrees exist + no active tasks | "Worktrees may be from completed sessions. Run /reset to clean up." |
| Handoff with status "designing" | "Design in progress. Run /design to continue or /reset to clean up." |
| Drafts exist + no plans | "Interview was interrupted. Run /design to continue or /reset to start fresh." |
| Archive has items + no active plans | "Previous plans archived. Run /design for next iteration." |
| No context files exist | "Run /setup to scaffold project context (product, tech stack, guidelines)." |
| Empty state (no plans, drafts, tasks, wisdom) | "Get started: Run /setup-check, then /design <your request>." |
Display all matching suggestions. Multiple states can apply simultaneously.
End with a summary table:
## Maestro Status
| Artifact | Count | Latest |
|----------|-------|--------|
| Plans | N | <name> |
| Archive | N | <name> |
| Context | N | <name> |
| Drafts | N | <name> |
| Tasks | N (X active) | - |
| Handoffs | N | <name> |
| Wisdom | N | <name> |
| Research | N | <name> |
| Notepad | Present/Absent | N priority items |
| Worktrees | N active | - |
| Teams | N active | - |
| Trace | Present/Absent | N events |
| PSM Sessions | Present/Absent | N active |