From claude-structure
Run a thorough performance review on the codebase or a specific file/module. Identifies bottlenecks, inefficient patterns, and optimization opportunities.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-structure:performanceThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
$ARGUMENTS
$ARGUMENTS
Before starting, scan the project to understand its tech stack and entry points:
find . -maxdepth 2 -name "package.json" -o -name "pom.xml" -o -name "build.gradle" -o -name "requirements.txt" -o -name "go.mod" -o -name "Cargo.toml" 2>/dev/null | head -10find . -maxdepth 3 -name "*.config.*" -o -name "*.conf" 2>/dev/null | grep -v node_modules | head -10If $ARGUMENTS is provided, focus only on that path. Otherwise, analyze the full project.
Perform a deep analysis covering ALL of the following categories. For each finding, include:
Produce the report in this exact structure:
## 🚀 Performance Review Report
**Target:** [file/module/project]
**Date:** [today]
**Stack detected:** [detected tech stack]
---
### Executive Summary
[2–3 sentence overview of overall performance health]
---
### 🔴 Critical Issues ([count])
[List each with location, description, and recommended fix]
### 🟠 High Priority ([count])
[List each with location, description, and recommended fix]
### 🟡 Medium Priority ([count])
[List each with location, description, and recommended fix]
### 🟢 Low / Nice-to-Have ([count])
[List each with location, description, and recommended fix]
---
### Quick Wins (can be fixed in < 30 min)
[Bullet list of the fastest, lowest-risk improvements]
### Estimated Impact
[For the top 3 findings, estimate the expected improvement in latency / throughput / memory]
---
### Next Steps
1. [Prioritized action item]
2. [Prioritized action item]
3. [Prioritized action item]
npx claudepluginhub valdemird/claude-structure --plugin claude-structureGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.