원클릭으로
notes-review
Review the note store for quality issues — duplicates, stale content, broken links, tag inconsistencies, and cleanup opportunities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review the note store for quality issues — duplicates, stale content, broken links, tag inconsistencies, and cleanup opportunities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
The user's personal note store, accessed via the `mor` CLI. Check here first when the user asks to recall, find, or reuse something they previously saved.
Bump version, commit, push, and create a GitHub release with changelog
Apply batch edits to notes using natural language — rename, retag, add cross-references, merge, or clean up a set of notes
Reconcile docs (README, CLAUDE.md, man page, website) with the current source. Only fixes factual drift — does not rewrite prose.
Save a code snippet or piece of knowledge to the note store. Use when the user asks to remember, save, or store something for later.
| name | notes-review |
| description | Review the note store for quality issues — duplicates, stale content, broken links, tag inconsistencies, and cleanup opportunities |
| disable-model-invocation | true |
Audit the note store and produce a structured report of proposed changes. Do NOT apply changes — present proposals for user approval, then use /notes-consolidate or individual notes_update/notes_remove calls to execute approved changes.
/notes-review
/notes-review tag hygiene
/notes-review duplicates
/notes-review stale
notes_list with a high limit to get all notesSuccess criteria: You have a complete inventory of all notes with their metadata.
Read notes in batches using notes_read (batch IDs). For each note, check:
| Issue | What to look for |
|---|---|
| Duplicates | Notes with very similar titles or overlapping content |
| Stale | Outdated information, references to things that may have changed |
| Tag inconsistencies | Similar tags that should be unified (e.g. "fs" vs "filesystem"), unused tags on single notes |
| Type mismatches | Notes whose type doesn't match their content (see type guidelines below) |
| Broken links | mor: links pointing to non-existent notes |
| Missing links | Notes that reference the same concepts but aren't cross-linked |
| Empty/thin | Notes with very little content that could be merged into related notes |
| Title quality | Vague titles that don't help with search |
file — a source file that can be dropped into a project as-is. Content should be a brief one-line description followed by a single fenced code block — nothing else. No prose sections, no multiple code blocks. If a file note has extra context (usage examples, design notes), split those into a separate snippet or knowledge note with a cross-reference link.snippet — a code example, pattern, or recipe. Can have prose, multiple code blocks, and explanatory sections.knowledge — concepts, design docs, references. Primarily prose.If the user specified a focus area (e.g. "duplicates", "tag hygiene"), prioritize that.
Success criteria: Each note has been reviewed and issues catalogued.
Output a structured report grouped by issue type:
mor: referencesFor each proposal, include:
End with a summary: "X notes reviewed, Y issues found across Z categories"
Success criteria: User can review and approve/reject each proposal individually.
After the user approves specific proposals:
notes_update for retags, title changes, content updates/notes-consolidate for batch operations (retagging many notes, merging)notes_remove for deletionsmor commands and links