用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vubaolinh123/Oh-My-Link --skill swarming命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | swarming |
| description | Parallel Worker orchestration — groups tasks into non-conflicting tracks and spawns concurrent Workers |
<Use_When>
<Do_Not_Use_When>
Read all pending task files from .oh-my-link/tasks/.
Build a map: link_id → file_scope[].
Filter to only tasks with status: "pending" and no unresolved dependencies
(all dependency link_ids must have status: "done").
Group tasks into parallel tracks such that no two tasks in the same track share a file.
Algorithm:
file_scope sets intersect, merge their tracksTasks within the same track must run sequentially (shared files). Tasks in different tracks can run concurrently.
Example output:
Track 1: [task-01, task-04] (share a file — sequential within track)
Track 2: [task-02] (independent)
Track 3: [task-03, task-05] (share a file — sequential within track)
For each track, spawn one Worker agent via the Agent tool.
Pass the Worker its prompt file: .oh-my-link/plans/worker-{link-id}.md
All track-lead Workers are spawned simultaneously (parallel Agent calls). Each Worker handles its track sequentially if the track contains multiple tasks.
Wait for all Workers to complete. Collect results:
done — link implemented and self-verifiedfailed — Worker encountered an unrecoverable errorFor any failed link:
After all links are done or failed-and-escalated:
SWARM COMPLETE
Tracks spawned: N
Links completed: X / Y
Links failed: Z (escalated to Master)
Total wall time: ~T minutes
Hand off to Reviewer.
<Tool_Usage>
.oh-my-link/tasks/{link-id}.json status fields as Workers report back