agentic-workflow
Agentic Workflow Pattern
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Agentic Workflow Pattern
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Maestro spec-driven development for Claude Code. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Maestro spec-driven development for Gemini CLI. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Maestro spec-driven development for Amp CLI. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Show users how Maestro works - the opinionated setup with hooks, memory, and coordination
Full 5-layer analysis of a specific function for debugging or deep understanding
Get a token-efficient overview of any project using the TLDR stack
| name | agentic-workflow |
| description | Agentic Workflow Pattern |
| user-invocable | false |
Standard multi-agent pipeline for implementation tasks.
run_in_background: true for all agents to keep main context minimalTask tool (never TaskOutput) to avoid receiving full agent transcripts.maestro/cache/agents/<stage>/ for injection into subsequent agentsTask(subagent_type="planner", run_in_background=true, prompt="""
Query NIA Oracle (via /nia-docs skill) to verify approach and gather best practices.
Output to: .maestro/cache/agents/planner/<task>-research.md
""")
Task(subagent_type="plan-agent", run_in_background=true, prompt="""
Read: .maestro/cache/agents/planner/<task>-research.md
Use RP-CLI to analyze the target codebase section.
Generate implementation plan informed by research.
Output to: .maestro/cache/agents/plan-agent/<task>-plan.md
""")
Task(subagent_type="validate-agent", run_in_background=true, prompt="""
Read: .maestro/cache/agents/plan-agent/<task>-plan.md
Read: .maestro/cache/agents/planner/<task>-research.md
Review plan against research findings and best practices.
Output to: .maestro/cache/agents/validate-agent/<task>-validated.md
""")
Task(subagent_type="agentica-agent", run_in_background=true, prompt="""
Read: .maestro/cache/agents/validate-agent/<task>-validated.md
Read: .maestro/cache/agents/planner/<task>-research.md
TDD approach: Write failing tests FIRST, then implement.
Run tests to verify.
Output summary to: .maestro/cache/agents/implement-agent/<task>-implementation.md
""")
Task(subagent_type="review-agent", run_in_background=true, prompt="""
Read: .maestro/cache/agents/implement-agent/<task>-implementation.md
Read: .maestro/cache/agents/validate-agent/<task>-validated.md
Read: .maestro/cache/agents/planner/<task>-research.md
Cross-reference implementation against plan and research.
Run tests to confirm passing.
Output to: .maestro/cache/agents/review-agent/<task>-review.md
""")
# Watch for system reminders:
# "Agent a42a16e progress: 6 new tools used, 88914 new tokens"
# Poll for output files:
find .maestro/cache/agents -name "*.md" -mmin -5
# Check task file size growth:
wc -c /tmp/claude/.../tasks/<id>.output
Stuck detection:
.maestro/cache/agents/
├── planner/
│ └── <task>-research.md
├── plan-agent/
│ └── <task>-plan.md
├── validate-agent/
│ └── <task>-validated.md
├── implement-agent/
│ └── <task>-implementation.md
└── review-agent/
└── <task>-review.md