用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill reverse命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | reverse |
| scope | partial |
| description | [UDS] Reverse engineer code to Specs, BDD, or TDD coverage |
| allowed-tools | Read, Grep, Glob |
| argument-hint | [spec|bdd|tdd] <input> |
| disable-model-invocation | true |
Reverse engineer existing code into specifications, BDD scenarios, or TDD coverage reports.
將現有程式碼反向工程為規格文件、BDD 場景或 TDD 覆蓋率報告。
| Subcommand | Input | Output | Description | 說明 |
|---|---|---|---|---|
spec | Code files/dirs | SPEC-XXX.md | Extract spec from code | 從程式碼提取規格 |
bdd | SPEC-XXX.md | .feature | Convert ACs to Gherkin | 將 AC 轉為 Gherkin |
tdd | .feature | Coverage Report | Analyze test coverage | 分析測試覆蓋率 |
[Confirmed], [Inferred], or [Unknown]file:line source reference@SPEC-XXX and @AC-N tags for traceability.feature file with # [Source: path:AC-N] comments.feature file scenarios| Rule | Requirement | 要求 |
|---|---|---|
| Certainty Tags | Use [Confirmed], [Inferred], [Unknown] for all findings | 所有發現須標注確定性 |
| Source Attribution | Cite file:line for every reversed item | 每項反向結果須引用來源 |
| No Fabrication | Never invent APIs or behaviors not found in code | 不得捏造程式碼中不存在的 API 或行為 |
/reverse spec src/auth/ - Extract specification from auth module/reverse bdd specs/SPEC-AUTH.md - Convert spec ACs to Gherkin scenarios/reverse tdd features/auth.feature - Analyze test coverage for feature file