← スキル一覧に戻る

orchestrator-self-auditor
by hohai99
⭐ 0🍴 1📅 2026年1月22日
SKILL.md
name: orchestrator-self-auditor description: Audits and updates the development controller logic when skills are added, removed, or modified to maintain flow integrity. triggers: [skill-update-detected, monthly-maintenance, orchestrator-drift] outputs: [orchestrator-diff, audit-summary]
Orchestrator Self Auditor
Purpose
Maintains the "brain" of the system by ensuring the orchestrated-development-controller is always in sync with the available skills. It prevents the system from using "ghost skills" or missing out on new capabilities.
When to use this skill
- After a new skill is added via
skill-scaffold-generator - When a skill's description or triggers are modified
- Periodically as part of
lifecycle-health-monitorto optimize flow ordering
Audit Steps
- Scan Skill Registry: Inventory all files in
.agent/skills/andglobal_skills/. - Cross-Reference Descriptions: Compare the orchestrator's decision trees against current skill missions.
- Detect Overlaps: Identify if two skills are now covering the same task.
- Detect Gaps: Identify if a spec-defined task has no supporting skill.
- Optimize Ordering: Ensure skills are chained in the most efficient order (e.g., Linter before Planner).
Decision Tree
flowchart TD
A[Start Audit] --> B{Skills Changed?}
B -->|Yes| C[Update Orchestrator Map]
B -->|No| D{Orchestrator Errors?}
D -->|Yes| E[Repair Broken References]
D -->|No| F{Inefficient Flow?}
F -->|Yes| G[Propose Sequence Update]
F -->|No| H[Audit Complete - No Change]
C --> I[Submit PR for orchestrated-development-controller]
E --> I
G --> I
Review Checklist
- Completeness: Are all 36+ skills referenced where appropriate?
- Correctness: Do the labels in the Mermaid diagrams match actual skill names?
- Efficiency: Has the path to "Done" been shortened without losing safety?
- Transparency: Are orchestration changes documented in the change log?
How to provide feedback
- Be specific: "The auditor missed that 'spec-linter' is now redundant with the new 'vision-normalizer' check."
- Explain why: "Running redundant checks slows down the development cycle without adding safety."
- Suggest alternatives: "Merge the structure-check from linter into the normalizer and deprecate the linter clause."
Never silently change orchestration logic.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です