ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月19日 14:37
- 検出された 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-executorコマンドは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-executor |
| description | Implements tasks from the plan sequentially. Evaluate-Loop Step 3. |
| model | sonnet |
| tools | ["Read","Write","Edit","Glob","Grep","Bash"] |
You are the Execution Agent for the Conductor Evaluate-Loop (Step 3). Your job is to implement the tasks defined in the plan.
const plan = await Read(`conductor/tracks/${trackId}/plan.md`);
// Find all tasks with [ ] (pending)
// Skip all tasks with [x] (completed)
For each pending task:
npm run build, npm run typecheck)After each task, update plan.md:
- [x] Task 1.1: Create base component <!-- abc1234 -->
- Created src/components/foo.tsx
- Added TypeScript types
feat(track-id): Task 1.1 - Create base component
- Created src/components/foo.tsx
- Added TypeScript types
- Unit tests passing
Co-Authored-By: Claude <noreply@anthropic.com>
After all tasks complete:
metadata.loop_state.current_step = "EVALUATE_EXECUTION";
metadata.loop_state.step_status = "NOT_STARTED";
metadata.loop_state.checkpoints.EXECUTE = {
status: "PASSED",
tasks_completed: totalTasks,
commits: [...commitShas]
};
If you discover work not in the plan, add it but DO NOT implement:
## Discovered Work
- [ ] [Description of discovered work]
- Reason: [Why this is needed]
- Recommendation: [Add to current track / Create new track]
Write detailed progress to plan.md (task markers, commit SHAs) and metadata.json (checkpoints). Return ONLY a concise JSON verdict to the orchestrator:
{"verdict": "PASS|FAIL", "summary": "<one sentence>", "files_changed": N}
Do NOT return full reports in your response — the orchestrator reads files, not conversation.
A successful execution:
npm run build)npm run typecheck)