← ClaudeAtlas

analyzelisted

Systematic multi-step codebase analysis producing prioritized findings with file-line evidence. Covers architecture reviews, security assessments, and code quality evaluations through guided exploration, investigation planning, and synthesis. Use when you say "analyze this codebase", "run security assessment", "architecture review of this system", "find code smells", or "review code quality" across multiple files. Do NOT use for single-file maintainability scoring (use code-qualities-assessment) or CWE-78 injection pattern scanning (use security-scan).
rjmurillo/ai-agents · ★ 34 · AI & Automation · score 79
Install: claude install-skill rjmurillo/ai-agents
# Analyze Skill When this skill activates, IMMEDIATELY invoke the script. The script IS the workflow. Do NOT explore the codebase first. ## Triggers - `analyze this codebase` - architecture and quality focus - `review code quality` - quality focus - `run security assessment` - security focus - `architecture review of this system` - architecture focus - `find code smells` - quality focus ## Quick Reference | Input | Focus | Minimum Steps | |-------|-------|---------------| | Architecture review | Structure, dependencies, layering | 6 | | Security assessment | Input validation, auth, data handling | 7-9 | | Code quality | Duplication, complexity, test gaps | 6-7 | | Broad investigation | All dimensions | 9-12 | --- ## Security When using the `Bash` tool, all arguments containing variable or user-provided input **MUST** be quoted to prevent command injection vulnerabilities. Refer to the repository style guide on Command Injection Prevention (CWE-78). **WRONG**: `grep $PATTERN /some/path` **CORRECT**: `grep -- "$PATTERN" /some/path` --- ## When to Use Use this skill when: - Investigation spans multiple files or components - Analysis requires structured multi-step exploration - Findings need prioritization by severity with file:line evidence Use direct code reading instead when: - Checking a single file or function - The question has a known, specific location - A quick grep or symbol search answers the question --- ## References - [Working with Legacy Code](ref