用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/scotttrinh/forward-roll --skill fr-specify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fr-specify |
| description | Create or sharpen high-level project specs through discovery or description |
| metadata | {"short-description":"Specify the project at a high level"} |
Specify supports two modes:
discover for reverse-engineering an existing codebase into durable high-level specsdescribe for turning a new idea or change direction into tight high-level specsThe output should focus on:
Stay above implementation detail. The result should help recreate the project or steer future changes without becoming code-level instructions for one local edit.
If the runtime contract does not exist yet, run bootstrap first.Resolve the current context first:
python3 plugins/forward-roll/skills/fr-specify/scripts/resolve_context.py
Create a specification work artifact with:
python3 plugins/forward-roll/skills/fr-specify/scripts/specify.py <slug> --mode <discover|describe> --goal "<specification goal>"
1. Run `resolve_context.py` first to load the runtime, specs root, and plans root before deeper exploration.
2. Read the runtime contract before gathering context.
3. Load only the specs, code, and repository facts that materially constrain the requested specification work.
4. Create or update the specification work artifact under `/specify/.md`.
5. Keep the artifact high-level and decision-oriented; do not dump raw exploration.
6. Update durable spec documents directly when the resulting project truth is clear enough.