analyze
Run code analyzers (unused packages, code quality, security). Use when user wants to analyze the codebase or runs /analyze.
npx skills add majiayu000/claude-skill-registry --skill analyze-cooper538-eshop-demo-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Code Analyzer Run analysis tools on the codebase. ## Usage ``` /analyze # Run all analyzers /analyze packages # Unused NuGet packages only /analyze quality # Code quality only /analyze security # Security vulnerabilities only ``` ## Arguments - `$ARGUMENTS` - Analyzer type to run - Empty or `all` - Run all analyzers - `packages` - Detect unused NuGet packages (dotnet-unused) - `quality` - Check code style and Roslyn warnings - `security` - Scan for known CVEs and deprecated packages ## Process ### Step 1: Ensure Tools Are Installed Run `dotnet tool restore` if tools are not available. ### Step 2: Execute Analyzer(s) Based on `$ARGUMENTS`: | Argument | Script | |----------|--------| | (empty) / `all` | `./tools/analyzers/run-all.sh` | | `packages` | `./tools/analyzers/unused-packages/analyze.sh` | | `quality` | `./tools/analyzers/code-quality/analyze.sh` | | `security` | `./tools/analyzers/security/analyze.sh` | ### Step 3: Report Results Summarize findings: - Number of issues found per category - Actionable recommendations ## Output Format ``` === Analysis Results === Unused Packages: X issues - ProjectName: PackageName Code Quality: X warnings - File:Line - Warning description S
- Usage
- Arguments
- Process
- Step 1: Ensure Tools Are Installed
- Step 2: Execute Analyzer(s)
- Step 3: Report Results
- Output Format
What does the analyze skill do?
Run code analyzers (unused packages, code quality, security). Use when user wants to analyze the codebase or runs /analyze.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill analyze-cooper538-eshop-demo-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
