From codereview-skills
Sweep inline @AI review trail left by codereview-inline. Removes closed-thread comments (`@SEEN @AI` blocks + adjacent `@AI-reply:` comments) from a file or path. Defaults to closed threads only. `--all` also removes still-open `@AI` markers; `--replies-only` removes only agent replies, leaving user comments intact. Use when the user types `/codereview-clean <path>`, "clean AI review comments", or similar.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codereview-skills:codereview-cleanThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Companion to `codereview-inline`. Removes the embedded review trail when the user is done with it. Closed threads can stay in source indefinitely; this skill only runs on explicit invocation.
Companion to codereview-inline. Removes the embedded review trail when the user is done with it. Closed threads can stay in source indefinitely; this skill only runs on explicit invocation.
/codereview-clean <path>, optionally with a mode flag. <path> can be a file, directory, or . for the whole repo.
| Flag | Behavior |
|---|---|
| (default) | Remove closed comment blocks (@SEEN @AI ...) and their adjacent @AI-reply: comments. Leave still-open @AI threads alone. |
--all | All of the above, plus remove still-open @AI comments (use when the user has decided to drop a pending question). |
--replies-only | Remove only @AI-reply: comments. Keep user comments intact, including @SEEN markers — useful when the user wants to preserve their own questions as inline documentation. |
<path>. Refuse /, ~, paths containing .. that escape the repo, or anything outside the current repo root.codereview-inline).codereview-inline.@SEEN @AI, since that comment exists only as part of the review trail.@AI-reply: removal: drop the entire reply comment block.--all open-marker removal: drop the entire user comment block containing @AI (even without @SEEN).Removed N comments across M files, with a per-file count.// @SEEN @AI TODO: revisit this later): default mode treats the whole comment as review trail and removes it. If the user wants to keep surrounding prose, they should hand-edit before running clean, or use --replies-only.@AI-reply: reply: remove the whole comment block, not just the first line.codereview-inline.<path> argument.@AI, @SEEN, or @AI-reply:.npx claudepluginhub korayucar/ai_review --plugin codereview-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.