Help us improve
Share bugs, ideas, or general feedback.
From nota
This skill should be used when the user asks to 'show open reviews', 'continue the review', 'resume review work', 'what reviews are pending', or after context compaction or session handover. Loads existing review state from .nota/ tracking files — does not extract new comments from source code.
npx claudepluginhub urso/nota --plugin notaHow this skill is triggered — by the user, by Claude, or both
Slash command
/nota:review-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load the current state of code reviews from `.nota/` tracking files. Useful after context compaction, handover, or when context about ongoing reviews has been lost.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Load the current state of code reviews from .nota/ tracking files. Useful after context compaction, handover, or when context about ongoing reviews has been lost.
bash ${CLAUDE_PLUGIN_ROOT}/scripts/list-open.sh
If no files listed, there are no open reviews.
For each file from Step 1:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/read-open.sh <file>
This filters out [resolved] and [wontfix] sections.
For each open file, check if it has depends-on or references in its frontmatter. If so, read those files too for context:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/find-review.sh --refs-of <name>
bash ${CLAUDE_PLUGIN_ROOT}/scripts/find-review.sh --deps-of <name>
Where <name> is the filename stem (e.g. auth for .nota/auth.md).
Each .nota/*.md file:
---
status: open
group: optional-group-name
depends-on:
- other-review-file
references:
- resolved-review-file
tags:
- security
---
## tag — file.go:LINE
Review comment body...
open or resolvedreview(auth): → group auth)review, discuss, explain, impl, critique, or custom tags). Run bash ${CLAUDE_PLUGIN_ROOT}/scripts/nota.sh behavior for all known tags and behaviors.[resolved] or [wontfix] prepended to the headingSummarize open items including dependency relationships, continue addressing in-progress work, or answer questions about review status. Never mark an item resolved without user confirmation.