From codebase-attributes-plugin
Routes to specialized agents like security-audit and test_runner to automatically remediate codebase health findings prioritized by severity after /attributes:collect. Use --dry-run to preview.
npx claudepluginhub laurigates/claude-plugins --plugin codebase-attributes-pluginThis skill is limited to using the following tools:
Route to specialized agents based on codebase health attributes.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Route to specialized agents based on codebase health attributes.
| Use this skill when... | Use another approach when... |
|---|---|
| Have attribute data and want automated remediation | Need to collect attributes first (use /attributes:collect) |
| Want severity-based agent prioritization | Know exactly which agent to use |
| Batch-fixing multiple health findings | Fixing a single specific issue |
| Parameter | Description |
|---|---|
--dry-run | Show routing plan without spawning agents |
--focus <category> | Only route for: docs, tests, security, quality, ci |
--min-severity <level> | Minimum severity: critical, high, medium (default), low |
Read attribute data from one of:
.claude/attributes.json (if exists)/attributes:collect to generate fresh data--focus category if specified--min-severity thresholdactions arrayShow the routing plan:
Attribute-Based Routing
Based on attribute analysis, prioritize these agents in order:
1. security (priority 7): .env file committed; No security scanning in CI
2. test_runner (priority 3): No test directory or test files found
3. docs (priority 2): Missing CLAUDE.md
If --dry-run, stop here.
For each agent in priority order, spawn the agent with its findings as context:
| Attribute Category | Agent | Condition |
|---|---|---|
| security (critical/high) | security-audit | Always route first |
| tests | test | When test gaps found |
| quality (high+) | refactor | Anti-patterns exceed threshold |
| quality (medium) | review | Code review suggestions |
| docs | docs | Documentation gaps |
| ci | configure | CI configuration gaps |
When spawning each agent, include:
After all agents complete, summarize:
| Context | Command |
|---|---|
| Preview routing | /attributes:route --dry-run |
| Security only | /attributes:route --focus security |
| Critical only | /attributes:route --min-severity critical |
| Full remediation | /attributes:route |