AI & Agentslow risk
roughdraft-review
Open a Markdown file in Roughdraft for the user to review, wait for Done Reviewing, then respond to the CriticMarkup feedback. Use when the user wants to review, comment on, or annotate a Markdown file (they may call the tool "rd"), and when presenting a plan — write the plan to disk and offer it for review this way.
zby/commonplace·kb/instructions/roughdraft-review/SKILL.md
43/ 100推荐值
导入这个 Skill
选择你的 coding agent,复制项目级或个人级安装命令。
导入当前项目.agents/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a codex -y导入个人环境~/.agents/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a codex -g -y导入当前项目.claude/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a claude-code -y导入个人环境~/.claude/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a claude-code -g -y导入当前项目.agents/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a github-copilot -y导入个人环境~/.copilot/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a github-copilot -g -y导入当前项目.agents/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a cursor -y导入个人环境~/.cursor/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a cursor -g -y导入当前项目.agents/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a gemini-cli -y导入个人环境~/.gemini/skills/roughdraft-review
npx skills add https://github.com/zby/commonplace/tree/66118a103ab9b5f312dc6584507f0f3b77336001/kb/instructions/roughdraft-review -a gemini-cli -g -yNative Gemini CLI
gemini skills install https://github.com/zby/commonplace.git --scope workspace --path kb/instructions/roughdraft-review⚠ 安装命令使用开源 skills CLI。执行前请检查来源、脚本和权限。
Skill 指令
在 GitHub 查看原始文件 ↗# Roughdraft review
Roughdraft is a single-file Markdown viewer/editor for inline review. The user may refer to it as `rd` in natural language; treat `rd` as shorthand, but do not create or modify any shell alias, executable, symlink, or command named `rd`.
When the user asks for a plan, write the plan as a Markdown file on disk before asking them to review it.
## Opening a file for review
```bash
roughdraft open "/absolute/path/to/file.md"
```
Open one `.md` file at a time. If Roughdraft is not running, `roughdraft open` starts it automatically.
**Leave the command running.** Do not interrupt, kill, background, detach, or treat the waiting process as cleanup. The wait is intentional: Roughdraft exits the command after the user clicks Done Reviewing, and that exit is the signal to resume — read the file from disk and respond to any CriticMarkup comments or suggested changes.
## CriticMarkup (Roughdraft-flavored)
Base markers:
- Comment: `{>>comment<<}`
- Insertion: `{++new text++}`
- Deletion: `{--old text--}`
- Substitution: `{~~old~>new~~}`
- Highlight: `{==text==}`
Each marker may be followed by an attribute block: `id` (stable document-local id), `by` (author), `at` (ISO timestamp), `re` (parent comment/suggestion id in a reply thread).
When adding a new comment or suggested change: generate a stable id (`c1`, `c2`, … for comments; `s1`, `s2`, … for suggestions), set `by` to your agent label, set `at` to the current ISO timestamp, and set `re` when replying.
Preserve existing attribute blocks unless intentionally removing the associated comment or suggestion.
Typical shapes:
- Anchored comment: `{==selected text==}{>>Comment text<<}{id="c1" by="AI" at="2026-04-28T12:00:00.000Z"}`
- Suggested change: `{++new text++}{id="s1" by="AI" at="2026-04-28T12:10:00.000Z"}` or `{~~old~>new~~}{id="s2" by="AI" at="2026-04-28T12:11:00.000Z"}`
- Reply: `{>>Reply text<<}{id="c2" by="AI" at="2026-04-28T12:05:00.000Z" re="c1"}`
For local command and syntax details: `roughdraft help` and `roughdraft help criticmarkup`.