Agent skill · Security

analyze

Run code analyzers (unused packages, code quality, security). Use when user wants to analyze the codebase or runs /analyze.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: BashRead
Path: skills/analysis/analyze-cooper538-eshop-demo-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Usage
  2. Arguments
  3. Process
  4. Step 1: Ensure Tools Are Installed
  5. Step 2: Execute Analyzer(s)
  6. Step 3: Report Results
  7. Output Format
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going