From agents-plugin
Analyzes Claude Code plugins for sub-agent opportunities, identifying skills with verbose output, gaps in agent coverage, and model selection improvements like opus for complex reasoning.
npx claudepluginhub laurigates/claude-plugins --plugin agents-pluginThis skill is limited to using the following tools:
Analyze the plugin collection to identify where sub-agents would improve workflows by isolating verbose output, enforcing constraints, or specializing behavior.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Analyze the plugin collection to identify where sub-agents would improve workflows by isolating verbose output, enforcing constraints, or specializing behavior.
find . -maxdepth 1 -type d -name '*-plugin'find agents-plugin/agents -maxdepth 1 -name '*.md'find . -path '*/skills/*/skill.md'find . -path '*/skills/*/SKILL.md' -not -path './agents-plugin/*'$1: Optional --focus <plugin-name> to analyze a single plugin in depthPerform a systematic analysis of the plugin collection to identify sub-agent opportunities.
Scan the repository to build an inventory:
agents-plugin/agents/ to understand current coverage--focus is provided, restrict analysis to that plugin onlyFor each plugin (or focused plugin), evaluate skills and commands against these criteria:
Operations that produce verbose output benefiting from isolation:
| Indicator | Examples |
|---|---|
| Build tools | docker build, cargo build, webpack, tsc |
| Infrastructure ops | terraform plan/apply, kubectl describe |
| Test runners | Full test suite output, coverage reports |
| Profiling tools | Flame graphs, benchmark results |
| Security scanners | Vulnerability reports, audit output |
| Log analysis | Application logs, system logs |
| Package managers | Dependency trees, audit results |
Operations that should be limited to specific tools:
| Constraint | Rationale |
|---|---|
| Read-only analysis | Security audit, code review - no writes |
| No network | Pure code analysis tasks |
| Limited bash | Tasks that shouldn't execute arbitrary commands |
| Assign opus when... | Assign haiku when... |
|---|---|
| Complex reasoning required | Structured/mechanical task |
| Security analysis | Status checks |
| Architecture decisions | Output formatting |
| Debugging methodology | Configuration generation |
| Performance analysis | File operations |
Compare identified opportunities against existing agents:
/delegate references agents that don't existFor each recommended new agent, specify:
### Proposed: <agent-name>
- **Model**: opus | haiku
- **Covers plugins**: <list>
- **Context value**: <what verbose output it isolates>
- **Tools**: <minimal set>
- **Constraint**: <read-only, no-network, etc.>
- **Priority**: HIGH | MEDIUM | LOW
- **Rationale**: <why this is better than inline execution>
For model/tool corrections to existing agents:
### Fix: <agent-name>
- **Current model**: X → **Recommended**: Y
- **Reason**: <why the change improves things>
If new agents are recommended, check:
/delegate command## Sub-Agent Analysis Report
**Scope**: [All plugins | focused plugin name]
**Date**: [today]
**Plugins analyzed**: N
**Existing agents**: N
**Skills without agent coverage**: N
### Current Coverage Map
| Domain | Agent | Skills Covered | Gaps |
|--------|-------|----------------|------|
| ... | ... | ... | ... |
### Recommended New Agents
[Proposals from Step 4]
### Recommended Fixes
[Model/tool corrections from Step 4]
### Delegation Mapping Updates
[Any updates needed for /delegate command's agent reference table]
### Priority Summary
| Priority | Count | Top Recommendation |
|----------|-------|-------------------|
| HIGH | N | ... |
| MEDIUM | N | ... |
| LOW | N | ... |
After presenting the analysis:
agents-plugin/agents/agents-plugin/README.md with new agents/delegate command's agent reference table if needed