From reviewer
This skill should be used when the user asks to "customize a review", "override review defaults", "add project-specific review rules", "extend review-logic", or "create local review overrides". Create or modify a local review override for a core review type.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reviewer:customize-core-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create or modify a local review override for one of the 4 built-in core review types. Add project-specific rules on top of (or instead of) the reviewer plugin's default checks.
Create or modify a local review override for one of the 4 built-in core review types. Add project-specific rules on top of (or instead of) the reviewer plugin's default checks.
Input: $ARGUMENTS - one of logic, patterns, documentation, or skill.
/reviewer:customize-core-review patterns - add project-specific pattern rules/reviewer:customize-core-review logic - override default logic review rulesExtract the review type from $ARGUMENTS. Must be one of: logic, patterns, documentation, skill. If missing or invalid, ask the user which type to customize.
Read the plugin's default rules from the corresponding core review skill's references directory to show what's already covered:
${CLAUDE_PLUGIN_ROOT}/skills/review-<type>/references/default-<type>.mdPresent a summary so the user understands what they're extending or replacing.
Ask the user:
Check if .claude/skills/local-review-<type>/SKILL.md already exists on disk.
If it exists:
Ask the user for their project-specific review rules. Prompt for concrete, actionable checks (not vague guidelines).
Read the template from assets/local-review.md. Replace placeholders:
| Placeholder | Value |
|---|---|
{TYPE} | The review type (e.g., patterns) |
{MODE_LINE} | Mode-specific instruction (see template) |
{RULES} | User-provided bullet list of rules |
Write the result to .claude/skills/local-review-<type>/SKILL.md.
Print what was created and how it integrates with the review system.
npx claudepluginhub tvishwanadha/skills --plugin reviewerCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.