원클릭으로
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.