Agent skill · Documentation

repository-analyzer

Analyzes codebases to generate comprehensive documentation including structure, languages, frameworks, dependencies, design patterns, and technical debt. Use when user says "analyze repository", "understand codebase", "document project", or when exploring unfamiliar code.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill repository-analyzer-jackspace-claudeskillz-17c1e6ca --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/analysis/repository-analyzer-jackspace-claudeskillz-17c1e6ca/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

# Repository Analyzer ## Purpose Quickly understand unfamiliar codebases by automatically scanning structure, detecting technologies, mapping dependencies, and generating comprehensive documentation. **For SDAM users**: Creates external documentation of codebase structure you can reference later. **For ADHD users**: Instant overview without manual exploration - saves hours of context-switching. **For all users**: Onboard to new projects in minutes instead of days. ## Activation Triggers - User says: "analyze repository", "understand codebase", "document project" - Requests for: "what's in this repo", "how does this work", "codebase overview" - New project onboarding scenarios - Technical debt assessment requests ## Core Workflow ### 1. Scan Repository Structure **Step 1: Get directory structure** ```bash # Use filesystem tools to map structure tree -L 3 -I 'node_modules|.git|dist|build' ``` **Step 2: Count files by type** ```bash # Identify languages used find . -type f -name "*.js" | wc -l find . -type f -name "*.py" | wc -l find . -type f -name "*.go" | wc -l # etc... ``` **Step 3: Measure codebase size** ```bash # Count lines of code cloc . --exclude-dir=node_modules,.git,dist,b

What's inside
Steps it walks through
  1. Purpose
  2. Activation Triggers
  3. Core Workflow
  4. 1. Scan Repository Structure
  5. 2. Detect Technologies
  6. 3. Map Dependencies
  7. 4. Identify Architecture Patterns
  8. 5. Extract Technical Debt
  9. 6. Generate Documentation
  10. Advanced Analysis Features
  11. Git History Analysis
  12. Code Complexity Metrics
  13. Dependency Security
  14. Integration with Other Skills
Ships with 1 file
  • metadata.json
Commands it runs
Use filesystem tools to map structure
tree -L 3 -I 'node_modules|.git|dist|build'
Identify languages used
find . -type f -name "*.js" | wc -l
find . -type f -name "*.py" | wc -l
find . -type f -name "*.go" | wc -l
etc...
Count lines of code
cloc . --exclude-dir=node_modules,.git,dist,build
Read package.json
More from claude-skill-registry
All skills →
About this skill
What does the repository-analyzer skill do?

Analyzes codebases to generate comprehensive documentation including structure, languages, frameworks, dependencies, design patterns, and technical debt. Use when user says "analyze repository", "understand codebase", "document project", or when exploring unfamiliar code.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill repository-analyzer-jackspace-claudeskillz-17c1e6ca --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