
orchestration
by alavida-ai
Beta testing of repo for Noncitizen
SKILL.md
name: orchestration description: Provides the "how-to" for workflow execution orchestration. Defines methods for planning multi-phase workflows, implementing them through agent delegation, managing artifacts, and tracking progress. Pure concepts - no command triggers.
Workflow Orchestration
Knowledge base for orchestrating multi-phase workflow executions with standardized folder structures, progress tracking, and agent delegation.
Core Concepts
This skill embodies five key orchestration principles:
- Planning - HOW to create execution plans with phase breakdown and artifact definition
- Implementation - HOW to execute plans through agent delegation
- Delegation - HOW to maintain focused context through strategic agent handoffs
- Artifacts - HOW to standardize outputs that flow between phases
- Progress Tracking - HOW to maintain execution state and resumability
Progressive Disclosure
A core architectural principle that emerges from delegation: pass file paths, not content. This enables agents to load context when needed, maintaining high signal-to-noise ratio. Instead of inlining everything upfront, each agent reads only the files it needs for its specific task.
Orchestration Philosophy
Skills provide the "HOW" - This skill contains pure knowledge about workflow orchestration concepts. It does not define when or why these concepts are triggered.
Commands provide the "DO" - External commands invoke this skill to execute planning or implementation tasks.
Standard Execution Folder
All workflows follow this structure:
/research/{workflow-name}/{YYYY-MM-DD_HH:MM}/
├── data/ # Input files (optional)
├── artifacts/ # Phase outputs
│ ├── 01-*.md
│ ├── 02a-*.md
│ ├── 02b-*.md
│ └── 03-*.md
├── PLAN.md # Initial plan
├── TODO.md # Progress tracking
└── RESEARCH.md # Final output
See Artifacts for naming conventions and Progress Tracking for folder structure details.
Two-Phase Orchestration
Planning Phase
Purpose: Create a structured execution plan
Inputs:
- Task description or workflow definition
- User requirements and context
Process: See Planning
Outputs:
- Execution folder structure
- PLAN.md with phase breakdown
- Expected artifact definitions
Implementation Phase
Purpose: Execute the plan through agent delegation
Inputs:
- PLAN.md from execution folder
- data/ (optional, created in planning phase) Process: See Implementation
Outputs:
- Phase artifacts in execution folder
- Updated TODO.md tracking progress
- Final RESEARCH.md with synthesized findings
Tools and Resources
Scripts
scripts/create_execution_folder.py- Creates timestamped execution folders
Templates
assets/TODO.md.template- Progress tracking templateassets/PLAN.md.template- Workflow plan template
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です