Agent skill

reverse-engineering-toolkit

Understand undocumented systems through static/dynamic analysis, dependency mapping, and pattern recognition

majiayu000534★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill reverse-engineering-toolkit --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGrepGlobWebFetch
Path: skills/analysis/reverse-engineering-toolkit/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

# Reverse Engineering Toolkit ## Purpose This skill enables you to understand systems without documentation by analyzing code structure, runtime behavior, dependencies, and design patterns. Use this when facing: - Undocumented legacy codebases requiring modernization - Third-party APIs with incomplete specifications - Lost or outdated design documentation - Security audits of closed-source systems - Onboarding to unfamiliar codebases ## When to Use This Skill **Use reverse engineering when**: - Documentation is missing, outdated, or incomplete - System behavior needs to be understood through observation - Dependencies and coupling need to be visualized - Design patterns need to be identified and cataloged - API contracts need to be inferred from implementation - Legacy code requires understanding before refactoring **Do NOT use when**: - Good documentation already exists (read it instead!) - Source code is unavailable (different techniques needed) - Simple codebase can be understood by reading - Time constraints don't allow deep analysis ## Quick Start: 4-Step Process ### 1. Discover Identify what exists in the system: ```bash # Find all source files find . -type f -name "*.py" -o

What's inside
Steps it walks through
  1. Purpose
  2. When to Use This Skill
  3. Quick Start: 4-Step Process
  4. 1. Discover
  5. 2. Map
  6. 3. Analyze
  7. 4. Document
  8. Core Patterns Overview
  9. Pattern 1: Static Code Analysis
  10. Pattern 2: Dynamic Analysis & Tracing
  11. Pattern 3: Dependency Graph Extraction
  12. Pattern 4: Design Pattern Recognition
  13. Pattern 5: Documentation Generation
  14. Detailed Resources
Ships with 1 file
  • metadata.json
Commands it runs
Find all source files
find . -type f -name "*.py" -o -name "*.js" -o -name "*.java"
Count lines of code
cloc .
Identify entry points
grep -r "main\|app\|server" --include="*.py"
Trace execution
strace -o trace.log ./program
Analyze function calls
python -m pycallgraph graphviz -- ./script.py
More from claude-skill-registry
All skills →
About this skill
What does the reverse-engineering-toolkit skill do?

Understand undocumented systems through static/dynamic analysis, dependency mapping, and pattern recognition

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill reverse-engineering-toolkit --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