Stats
Actions
Tags
From cavemenko
One-line code review comments. Use when user asks to review code, check changes, or calls /cavemenko-review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cavemenko:cavemenko-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review current code changes. Format — one-line comments.
Review current code changes. Format — one-line comments.
One line per issue:
L<line_number>: <severity> <problem>. <fix>.
Severity:
bug — broken, doesn't work as intendedrisk — works but dangerous (race, leak, security)nit — style, minorq — question, needs clarificationmissing semicolon, trailing whitespace — linter's jobLGTM and stopGood:
L42: bug off-by-one in loop, `i <= arr.length` → IndexError. Use `<`.
L78: risk `JSON.parse` without try/catch — crash on invalid input.
L104: nit magic constant `86400`, replace with `SECONDS_PER_DAY`.
L130: q why retry with delay=0? This is a busy loop.
If all clean:
LGTM
Bad:
L42: Nice function, but could be improved. Maybe worth thinking about...
git diff or specified file)LGTM and stopnpx claudepluginhub ruslanlap/cavemenko --plugin cavemenkoGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.