From reviewer
This skill should be used when the user asks to "add a review type", "create a custom review", "add security review", "add performance review", or "create a new review category". Create a new custom review type with project-specific rules.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reviewer:add-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 a new custom review type. Add project-specific review categories like security, performance, accessibility, or domain-specific checks.
Create a new custom review type. Add project-specific review categories like security, performance, accessibility, or domain-specific checks.
Input: $ARGUMENTS - name for the new review type (e.g., security, plugin, codex).
/reviewer:add-core-review security - create a security review type/reviewer:add-core-review plugin - create a plugin-specific review typeExtract the type name from $ARGUMENTS. Validate:
review-, strip the prefix (e.g., review-security becomes security)logic, patterns, documentation, skill)Check if .claude/skills/review-<name>/SKILL.md already exists on disk.
If it exists:
Ask the user for:
Read the template from assets/review-type.md. Replace placeholders:
| Placeholder | Value |
|---|---|
{NAME} | The review type name |
{FOCUS} | What this review checks for |
{KEYWORDS} | Auto-invocation trigger phrases |
{RULES} | Categorized bullet list of review rules |
If additional tools were specified, add them to the allowed-tools frontmatter field.
Write the result to .claude/skills/review-<name>/SKILL.md.
Check if .claude/skills/self-review-extension/SKILL.md exists:
reviewer:reviewer or reviewer:simple-reviewer). Note: if the review type requires tools beyond the standard reviewer agents (e.g., Bash, MCP tools), recommend creating a custom agent via /reviewer:create-reviewer-agent instead. If accepted, edit the extension to include the new type./reviewer:extend-self-review to configure the orchestrator to include this new type.Print what was created and how to invoke it (e.g., /review-<name> src/).
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.