skill-orchestrator-patterns

Solid

Stage Cycle pattern and dispatch table for Orchestrator compression. Defines common Init→Review→Revision flow.

AI & Automation 4 stars 0 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 80/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Orchestrator Patterns This skill defines reusable patterns for the Orchestrator's pipeline stages, enabling compressed prompts. > [!IMPORTANT] > **Reference this skill for Stage Cycle logic.** > The Orchestrator uses these patterns instead of verbose per-scenario instructions. ## Stage Dispatch Table | Stage | Agent Prompt | Reviewer Prompt | Max Cycles | Skill | Next Stage | |-------|--------------|-----------------|------------|-------|------------| | Analysis | `02_analyst` | `03_task_reviewer` | 2 | `skill-archive-task` | Architecture | | Architecture | `04_architect` | `05_architecture_reviewer` | 2 | `architecture-design` | Planning | | Planning | `06_planner` | `07_plan_reviewer` | 2 (1 rev) | `planning-decision-tree` | Execution | | Execution | `08_developer` | `09_code_reviewer` | 2 (1 fix) | `developer-guidelines` | Next Task / Completion | --- ## Pattern: Stage Cycle ### Applicability - Stages with Init → Review → Revision flow - Applies to: Analysis, Architecture, Planning, Execution ### Init Phase ``` INPUT: {stage_name}, {agent_prompt}, {artifact_path} FLOW: 1. Read agent prompt 2. Pass required context to agent 3. Wait for result: { artifact_file, blocking_questions } DECISION: - IF blocking_questions → STOP, ask user (Scenario 14) - ELSE → proceed to Review ``` ### Review Phase ``` INPUT: {artifact_file}, {reviewer_prompt}, {iteration} FLOW: 1. Read reviewer prompt 2. Pass artifact + context to reviewer 3. Wait for result: { review_file, has_cr...

Details

Author
MatrixFounder
Repository
MatrixFounder/Agentic-development
Created
7 months ago
Last Updated
today
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category