소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 18일 19:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill implement명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | implement |
| description | Run the full Evaluate-Loop automatically from current track state to completion |
| arguments | [{"name":"track_id","description":"Optional track ID (defaults to active track)","required":false}] |
| user_invocable | true |
Fully automates the Evaluate-Loop workflow. Detects current step, dispatches the correct agent, reads the result, and continues until the track is complete or requires user intervention.
/conductor:implement
/conductor:implement my-track-id
PLAN → EVALUATE PLAN → EXECUTE → EVALUATE EXECUTION
│
PASS → 5.5 BUSINESS DOC SYNC → COMPLETE
FAIL → FIX → re-EXECUTE → re-EVALUATE (loop)
| State | Condition | Action |
|---|---|---|
| No plan | plan.md doesn't exist or has no tasks | Dispatch planner (superpowers or legacy) |
| Plan exists, not evaluated | Tasks exist but no "Plan Evaluation Report" | Dispatch plan evaluator (includes CTO review for technical tracks) |
| Plan evaluated FAIL | Report says FAIL | Dispatch planner to revise |
| Plan evaluated PASS, tasks pending | Has [ ] tasks | Dispatch executor (superpowers or legacy) |
| All tasks done, not evaluated | All [x], no "Execution Evaluation Report" | Dispatch execution evaluator |
| Execution evaluated FAIL | Report says FAIL with fix list | Dispatch fixer (superpowers or legacy) |
| Execution evaluated PASS | All checks passed | Run Step 5.5 Business Doc Sync → Mark complete |
The orchestrator checks metadata.json for superpower_enhanced: true:
superpowers:writing-plans, superpowers:executing-plans, superpowers:systematic-debuggingloop-planner, loop-executor, loop-fixerBoth systems use the same evaluators and quality gates.
For technical tracks (architecture, integrations, infrastructure, APIs, databases), plan evaluation automatically includes CTO technical review:
Plan created → loop-plan-evaluator dispatches:
1. Standard plan checks (scope, overlap, dependencies, clarity)
2. cto-plan-reviewer (for technical tracks)
3. Aggregate results → PASS/FAIL
Technical track keywords: architecture, system design, integration, API, database, schema, migration, infrastructure, scalability, performance, security, authentication, deployment, monitoring
Uses the Task tool to spawn specialized agents:
Task({
subagent_type: "conductor-orchestrator",
description: "Run evaluate-loop",
prompt: "Continue the evaluate-loop for track [track-id]. Check metadata.json for current step and dispatch the correct agent."
})
The loop pauses and asks for user input when:
When execution evaluation returns PASS:
tracks.md, metadata.json, conductor/index.md# Start a new track and run to completion
/conductor:new-track
# ... track created ...
/conductor:implement
# → PLAN → EVALUATE (with CTO review) → EXECUTE → EVALUATE → COMPLETE
# Resume interrupted work
/conductor:status # See where we are
/conductor:implement # Continue automatically
/conductor:status — Check current track progress/conductor:new-track — Create track manually/go — Single entry point (creates track + runs implement)conductor/workflow.md — Full evaluate-loop documentation