ソース情報
- リポジトリ
- notque/vexjoy-agent
- ソースの最終更新活動
- 2026年7月5日 20:41
- 検出された SKILL.md の言語
- 英語
- スター
- 415
- フォーク
- 44
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/notque/vexjoy-agent --skill skill-composerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Run the full evidence-to-live implementation workflow for large, multi-system, multi-wave, or CPU-delegated 5 Star Booker GM programs.
Classify user requests and route to the correct agent + skill. Primary entry point for all delegated work.
Structured multi-phase workflows: review, debug, refactor (tidy, clean up, untangle messy code without behaviour change), deploy, create, research.
SOC 職業分類に基づく
SKILL.md を表示中
| name | skill-composer |
| promoted_to | workflow |
| description | DAG-based multi-skill orchestration with dependency resolution. |
| user-invocable | false |
| allowed-tools | ["Read","Write","Bash","Grep","Glob","Edit","Task","Skill"] |
| routing | {"triggers":["compose skills","DAG orchestration","multi-skill chain","skill pipeline","combine skills"],"category":"meta-tooling","pairs_with":["workflow","feature-lifecycle"]} |
Orchestrate complex workflows by chaining multiple skills into validated execution DAGs. This skill discovers applicable skills, resolves dependencies, validates compatibility, presents execution plans, and manages skill-to-skill context passing. Use when a task requires 2+ skills chained together, parallel skill execution, or conditional branching between skills. Invoke the single skill directly when it can handle the request alone, or for simple sequential invocation that needs no dependency management.
Core principle: Minimize composition overhead. Prefer simple 2-3 skill chains. Add only skills directly needed or "nice to have" additions without explicit user request.
| Signal | Load These Files | Why |
|---|---|---|
| checking skill chain compatibility and input/output type matching | compatibility-matrix.md | Loads detailed guidance from compatibility-matrix.md. |
| choosing sequential vs parallel composition; chain length limits | composition-patterns.md | Loads detailed guidance from composition-patterns.md. |
| composition walkthroughs: feature+tests, debug+docs, parallel quality checks, research-driven builds | examples.md | Loads detailed guidance from examples.md. |
| selecting a proven composition pattern; troubleshooting compositions | skill-patterns.md | Loads detailed guidance from skill-patterns.md. |
Goal: Analyze the task and find applicable skills.
Step 1: Analyze the user's request
Identify:
Step 2: Discover available skills
Before building any DAG, scan skills/*/SKILL.md for available skills:
python3 ${CLAUDE_SKILL_DIR}/scripts/discover_skills.py ./skills
Review the discovered skills. Categorize by type (workflow, testing, quality, documentation, code-analysis, debugging) with dependency metadata.
Step 3: Select skills (Apply minimum-skills principle)
Choose only skills directly needed for the stated goals. This prevents over-composition and unnecessary failure points:
Cross-reference selections against references/compatibility-matrix.md to confirm chaining is valid before proceeding.
Gate: Task goals identified. Available skills indexed. Selected skills directly address stated goals with no extras. Proceed only when gate passes.
Goal: Build a validated execution DAG.
Step 1: Build the DAG
Construct the execution DAG as a JSON structure with nodes (skills) and edges (dependencies) based on the task analysis:
python3 ${CLAUDE_SKILL_DIR}/scripts/build_dag.py skill-index.json task-description.json
Step 2: Validate the DAG (MANDATORY before execution)
ALWAYS validate the execution graph is acyclic before moving to execution. Validation checks:
references/compatibility-matrix.md)If validation fails, fix the issue and re-validate. Common fixes:
Step 3: Present the execution plan (Dry run is MANDATORY)
ALWAYS show the execution plan and get user confirmation before running skills. This prevents wasting time on composition errors:
=== Execution Plan ===
Phase 1 (Sequential):
-> skill-name
Purpose: [what it does in this context]
Output: [what it produces]
Phase 2 (Parallel):
-> skill-a
Purpose: [what it does]
Input: [from Phase 1]
-> skill-b
Purpose: [what it does]
Input: [from Phase 1]
Phase 3 (Sequential):
-> skill-c
Purpose: [what it does]
Input: [from Phase 2]
Skills: N | Phases: N | Parallel phases: N
Proceed? [Y/n]
Gate: DAG is acyclic. All skills exist. Input/output types are compatible. Topological ordering is valid. User has seen the plan. Proceed only when gate passes.
Goal: Run skills in topological order, passing context between them.
Step 1: Execute each phase
For sequential phases:
For parallel phases:
Step 2: Pass context between skills
ALWAYS verify output/input compatibility between chained skills before passing context:
references/compatibility-matrix.md)Step 3: Report progress
After each phase completes, report:
Show command output rather than describing it. Be concise but informative.
Step 4: Handle failures during execution
ALWAYS catch skill failures and determine if remaining chain can continue. If a skill fails mid-chain:
Assess impact: Does this block downstream skills?
Report failure context:
Skill failed: [skill-name]
Phase: N
Error: [error message]
Downstream impact: [list blocked skills]
Continuing branches: [list unaffected skills]
Recovery options:
1. Fix error and retry
2. Skip skill and continue (if non-critical)
3. Abort entire workflow
Gate: All phases executed. All skill outputs captured. Context passed successfully between all transitions. Proceed only when gate passes.
Goal: Collect results and clean up.
Step 1: Generate results summary
=== Composition Results ===
Execution Summary:
Total phases: N
Skills executed: N
Duration: X minutes
Phase Results:
Phase 1: [skill-name] - [status]
Output: [summary]
Phase 2: [skill-a] - [status]
[skill-b] - [status]
Output: [summary]
Phase 3: [skill-c] - [status]
Output: [summary]
Final Output:
[Key deliverables with file paths]
Step 2: Clean up temporary files
Remove temporary files at task completion. Keep only files explicitly needed for final output:
/tmp/skill-index.json/tmp/execution-dag.jsonGate: Results reported. Temporary files cleaned up. Composition complete.
Cause: Skills reference each other cyclically in the DAG Solution:
Cause: Output type from one skill does not match expected input of the next Solution:
references/compatibility-matrix.md for valid chainsCause: A skill in the chain encountered an error Solution:
Cause: Referenced skill does not exist or name is misspelled Solution:
${CLAUDE_SKILL_DIR}/references/composition-patterns.md: Proven multi-skill composition patterns with duration estimates${CLAUDE_SKILL_DIR}/references/compatibility-matrix.md: Skill input/output compatibility and valid chains${CLAUDE_SKILL_DIR}/references/skill-patterns.md: Common skill patterns with sequential/parallel decision trees