← スキル一覧に戻る

skill-flow-orchestrator
by vunamhung
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: skill-flow-orchestrator description: Meta-skill that orchestrates other skills into intelligent, self-coordinating workflows. Use when complex tasks require multiple skills working together, need automated skill routing based on task analysis, want to save and replay successful skill combinations, need state persistence across skill boundaries, or building multi-stage processing pipelines. Provides 4 modes - QUICK (1-2min, single skill), STANDARD (5-10min, multi-skill chains), DEEP (15-30min, DAG composition), EXPERT (custom, learning optimization). version: 1.0.0
Skill-Flow-Orchestrator (SFO)
Production-ready Skill Orchestration System that transforms isolated skills into an intelligent, self-coordinating ecosystem.
Core Capabilities
- Intelligent Routing - Match task DNA to skill DNA for optimal selection
- Flow Composition - Build skill chains as Directed Acyclic Graphs (DAGs)
- Context Management - Persist state across skill executions (hybrid: memory file + in-prompt)
- Chain Templates - Save successful chains as reusable workflows
- Adaptive Learning - Optimize routing based on execution outcomes
When to Use
- Complex tasks: Require multiple skills working together
- Automated selection: Need intelligent skill routing based on task analysis
- Workflow reuse: Save and replay successful skill combinations
- Context continuity: Need state persistence across skill boundaries
- Pipeline automation: Building multi-stage processing workflows
4 Orchestration Modes
| Mode | Duration | Features | Best For |
|---|---|---|---|
| QUICK | 1-2 min | Basic routing, single skill | Simple task delegation |
| STANDARD | 5-10 min | Multi-skill chains, context passing | Common workflows |
| DEEP | 15-30 min | Full DAG composition, parallel execution | Complex pipelines |
| EXPERT | Custom | Learning optimization, template management | Production workflows |
Quick Start
1. Scan Available Skills
python3 .agent/skills/skill-flow-orchestrator/scripts/scan_skills.py
Output: .agent/sfo/skill_index.json - indexed skills with DNA
2. Match Skills to Task
python3 .agent/skills/skill-flow-orchestrator/scripts/match_skills.py "<task_description>"
Returns ranked skills with match scores
3. Orchestrate Workflow
python3 .agent/skills/skill-flow-orchestrator/scripts/orchestrate.py --mode standard "<task>"
Orchestration Workflow
- INTAKE - Parse task, extract requirements
- ANALYZE - Match task DNA with skill DNA using semantic matching
- COMPOSE - Build execution DAG from matched skills
- EXECUTE - Run skills in order, passing context
- ADAPT - Log outcomes, update routing weights
Context Management
- Long-term state:
.agent/sfo/context.json - Chain templates:
.agent/sfo/templates/ - Execution logs:
.agent/sfo/logs/
References
- Orchestration Modes - Detailed mode configurations
- DAG Composition - Building skill chains
- Template System - Saving/loading workflows
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です