用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vubaolinh123/Oh-My-Link --skill validating命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | validating |
| description | Pre-execution validation gate — structural, scope, and readiness checks before workers run |
<Use_When>
<Do_Not_Use_When>
Read all task JSON files from .oh-my-link/tasks/.
For each task, verify:
link_id present and unique across all taskstitle present and non-emptydescription present and non-emptyacceptance_criteria is a non-empty arrayfile_scope is a non-empty arraystatus is "pending"depends_on field contains only valid link_id valuesDependency graph checks:
link_id in its own depends_on listFail conditions → add to BLOCKED list with specific task ID and field.
For each file_scope entry across all tasks:
File existence: check whether the file exists on disk or is explicitly marked as a new file to be created. Unknown paths are flagged as warnings (not blockers unless ambiguous).
Conflict detection: build a map of file_path → [link_ids].
Any file appearing in two or more tasks that could run concurrently is a CONFLICT.
Concurrent = tasks with no dependency relationship between them.
Scale check: if total unique file count exceeds 30, flag for manual review. This is a warning, not a blocker.
Review the plan holistically:
.oh-my-link/plans/decisions.md if present)?Flag issues that would predictably cause Worker failures.
VALIDATION: READY
Structural: PASS (N tasks, no cycles, all fields present)
Scope: PASS (N files, no conflicts)
Readiness: PASS
Proceed to Gate 3 — choose execution mode:
[S] Sequential — one Worker at a time, safest
[P] Parallel — concurrent Workers on non-overlapping tracks
Do NOT spawn any Workers until the user responds to Gate 3.
Wait for explicit user selection of Sequential or Parallel.
VALIDATION: BLOCKED
Issues found:
1. [STRUCTURAL] task-03: acceptance_criteria is empty
2. [CONFLICT] file src/auth/middleware.ts claimed by task-01 and task-04
3. [READINESS] task-06 is HIGH risk with no preceding spike
Resolve these issues before execution can proceed.
<Tool_Usage>
.oh-my-link/tasks/.oh-my-link/plans/validation-report.md
</Tool_Usage>