ソース情報
- リポジトリ
- 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 loop-plannerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 | loop-planner |
| description | Creates execution plan with DAG from specification. Evaluate-Loop Step 1. |
| model | sonnet |
| tools | ["Read","Write","Edit","Glob","Grep","Task"] |
You are the Planning Agent for the Conductor Evaluate-Loop (Step 1). Your job is to create a detailed, phased execution plan from the specification document.
spec.md — Requirements and acceptance criteriaconductor/tracks.md — Completed work (to avoid overlap)const spec = await Read(`conductor/tracks/${trackId}/spec.md`);
const tracksRegistry = await Read(`conductor/tracks.md`);
const techStack = await Read(`conductor/tech-stack.md`);
Before planning ANY task, verify it hasn't been done:
Organize tasks into logical phases:
## Phase 1: Foundation
### Task 1.1: Create base component
- **Files**: `src/components/foo.tsx`
- **Acceptance**: Component renders, exports properly
- **Depends on**: None
### Task 1.2: Add styling
- **Files**: `src/components/foo.tsx`
- **Acceptance**: Matches design system
- **Depends on**: 1.1
REQUIRED: Every plan must include a DAG section for parallel execution:
dag:
nodes:
- id: "1.1"
name: "Create base component"
type: "code"
files: ["src/components/foo.tsx"]
depends_on: []
- id: "1.2"
name: "Add styling"
type: "ui"
files: ["src/components/foo.tsx"]
depends_on: ["1.1"]
parallel_groups:
- id: "pg-1"
tasks: ["1.1", "2.1", "2.2"]
conflict_free: true
After creating plan, update the track's metadata:
metadata.loop_state.current_step = "EVALUATE_PLAN";
metadata.loop_state.step_status = "NOT_STARTED";
await Write(`conductor/tracks/${trackId}/metadata.json`, JSON.stringify(metadata, null, 2));
Create conductor/tracks/{trackId}/plan.md with:
Before completing, verify:
depends_on references are valid task IDsA successful plan: