一键导入
annotate-md
Open Markdown file(s) in the browser-based md-annotator for interactive review, then apply the user's annotation feedback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Open Markdown file(s) in the browser-based md-annotator for interactive review, then apply the user's annotation feedback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | annotate-md |
| description | Open Markdown file(s) in the browser-based md-annotator for interactive review, then apply the user's annotation feedback. |
| user-invocable | true |
Open one or more Markdown files in the md-annotator browser UI so the user can review them — selecting text to mark deletions, adding comments, or inserting text — then apply the feedback they submit.
Arguments: $ARGUMENTS
If the arguments contain Markdown file path(s), use those. Otherwise, ask the user which Markdown file they want to annotate.
Run the md-annotator CLI with your shell tool, passing --origin vibe and the
file path(s). This command blocks until the user submits a decision in the
browser:
md-annotator --origin vibe <file1.md> [file2.md ...]
The command prints the result to stdout:
APPROVED: → the user approved the file with no changes. Confirm and stop.Requires the
md-annotatorCLI on yourPATH(npm install -g md-annotator, ornpm linkfrom a local checkout).
Unless the user said otherwise, after applying all changes:
Build feedback notes describing what you changed — a JSON array of
{ "text": "...", "line": <number> } entries. line is the line number in
the updated file; omit it for general notes.
Re-open the annotator with the notes so the user sees what changed:
md-annotator --origin vibe --feedback-notes '[{"text":"Rewrote intro for clarity","line":5},{"text":"Removed redundant section"}]' <file1.md> [file2.md ...]
Evaluate the result:
APPROVED: → the user is satisfied. Done.