From vosslab-skills
Parallel multi-reviewer audit launched before merge or release; not for single-pass review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vosslab-skills:audit-code-reviewerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to turn a code-change review into six independent review passes run by separate
Use this skill to turn a code-change review into six independent review passes run by separate subagents. The main agent is the review coordinator: gather shared context, launch independent review subagents with separate scopes, wait for their results, then merge their findings into a single concise review.
docs/REPO_STYLE.md when flagging this.git status --short and the relevant git diff.AGENTS.md,
docs/REPO_STYLE.md,
docs/PYTHON_STYLE.md, docs/PYTEST_STYLE.md when present,
docs/MARKDOWN_STYLE.md, and
docs/CHANGELOG.md.Launch Plan auditor to verify that the current plan, ticket, or user request was implemented
according to its stated design philosophy and scope.
Review focus:
Launch Test auditor to prune fragile pytests and route elaborate scenarios to E2E, keeping
tests/ fast and stable. Less is more: the default action is removal, not addition.
Review focus:
tmp_path, network calls, large fixtures, or
model loads.tests/: whole-script CLI runs, I/O round trips,
real external tools. These belong in tests/e2e/ per
docs/E2E_TESTS.md, not in pytest. Recommend moving or deleting, not
rewriting in place.docs/PYTEST_STYLE.md: dates,
collection sizes, lists of required keys, hardcoded defaults, tunable constants, dataclass
storage, function-name strings, and over-broad or order-dependent assertions._temp.* files, or tests that will not
still pass next week without code changes.Launch Style auditor to review changed code against implementation style guides.
Review focus:
docs/PYTHON_STYLE.md when Python changed.docs/REPO_STYLE.md.Launch Docs auditor to identify existing documentation that should be updated because of the code
change.
Review focus:
Launch Legacy auditor to find unused code, dead branches, and legacy cruft introduced or left
behind by the change. Goal: prevent feature drift and keep the code lean.
Review focus:
pip_requirements.txt, Brewfile, or similar that no code references anymore.Launch Comment auditor to confirm changed code is well commented and easy to read. Anchor
the review in docs/PYTHON_STYLE.md commenting rules when Python
changed.
Review focus:
#====) used in Python where the style guide expects them.Dispatch a fresh subagent for each atomic task. Reusing a subagent across tasks
carries stale context, encourages drift, and weakens independent judgment.
SendMessage is for status only; do not use it to chain follow-on editing
work onto a teammate that has already finished its assigned task. See
docs/REPO_STYLE.md.
Use this template for each independent review subagent, replacing the bracketed reviewer and scope text:
You are [reviewer name]. Perform an independent review of this code change from one focused angle:
[scope].
Shared context:
- User request: [brief request]
- Relevant plan or ticket: [path or none found]
- Changed files: [paths]
- Repo rules read: [paths]
- Test evidence so far: [commands and results]
- Suggested review range, if known: [working tree, staged diff, commit range, or unknown]
Instructions:
- Return findings only when there is a concrete issue.
- Include file and line references when possible.
- Include severity: blocker, high, medium, or low.
- Include any missing evidence that blocks confidence.
- Keep the review focused on your assigned scope.
- Do not assume the main agent has already reviewed this scope.
- Perform any deeper history, plan, diff, or call-site inspection needed for your assigned scope.
- Make this an independent review: form your own conclusions from the provided artifacts.
Lead with findings, ordered by severity. For each finding, include the issue, evidence, impact, and the smallest useful fix. After findings, include open questions or assumptions, then a short summary of tests and documentation status.
If all review passes find no issues, say that clearly and list any residual risk such as missing test evidence, unavailable docs, or areas that were not reviewed.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub vosslab/vosslab-skills --plugin vosslab-skills