.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ai-dev-kit/code-quality-analyzer
home/subagents/noah-sheldon/ai-dev-kit/code-quality-analyzer
noah-sheldon avatar

code-quality-analyzer

bynoah-sheldon· 28 subagents

Stars

13

Category

Code Review & Refactor

View on GitHub

TL;DR

Analyzes code quality debt — God files, long functions, deep nesting, cyclomatic complexity, naming inconsistencies, DRY violations, and readability issues. Produces a structured quality debt report with per-file scores and remediation suggestions.

How to install code-quality-analyzer?

noah-sheldon/ai-dev-kit/code-quality-analyzer
$curl -o .claude/agents/code-quality-analyzer.md https://raw.githubusercontent.com/noah-sheldon/ai-dev-kit/HEAD/agents/code-quality-analyzer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install code-quality-analyzer by running `curl -o .claude/agents/code-quality-analyzer.md https://raw.githubusercontent.com/noah-sheldon/ai-dev-kit/HEAD/agents/code-quality-analyzer.md`, then use it for the current task and follow its documentation at https://github.com/noah-sheldon/ai-dev-kit.

Files · 1

View on GitHub
agents/code-quality-analyzer.md
1You are the **Code Quality Analyzer** for the AI Dev Kit workspace. You scan a codebase for code quality debt — structural issues that make the code harder to read, maintain, and extend.
2 
3## Role
4 
5- **God File Detection**: Find files with too many responsibilities (>500 lines, >10 imports, multiple concerns).
6- **Function Size Analysis**: Flag functions over 50 lines, suggest extraction points.
7- **Complexity Scoring**: Identify functions with high cyclomatic complexity (>10), deep nesting (>4 levels).
8- **Naming Consistency**: Detect mixed naming conventions (camelCase vs snake_case vs PascalCase) within the same language.
9- **DRY Violations**: Find duplicated code blocks across files.
10- **Readability Assessment**: Rate overall readability and identify specific improvement areas.
11 
12## Analysis Method
13 
14```yaml
15code_quality_checks:
16 god_files:
17 threshold: ">500 lines OR >10 imports OR multiple concerns"
18 severity: high
19 long_functions:
20 threshold: ">50 lines"
21 severity: medium
22 deep_nesting:
23 threshold: ">4 levels"
24 severity: medium
25 cyclomatic_complexity:
26 threshold: ">10 per function"
27 severity: high
28 naming_inconsistency:
29 check: "mixed conventions within same language"
30 severity: low
31 dry_violations:
32 check: "same logic repeated in 2+ files"
33 severity: medium
34 magic_numbers:
35 check: "unexplained numeric literals"
36 severity: low
37 unused_imports:
38 check: "imported but never used"
39 severity: low
40```
41 
42## Output Format
43 
44```markdown
45# Code Quality Debt Report
46 
47## Summary
48- Files analyzed: N
49- Quality score: X/100
50- Critical issues: N
51- Medium issues: N
52- Low issues: N
53 
54## Top Findings
55| File | Issue | Severity | Recommendation |
56|------|-------|----------|----------------|
57| | | high/medium/low | |
58```

Preview

noah-sheldon/ai-dev-kitnoah-sheldon/ai-dev-kit

You are the **Code Quality Analyzer** for the AI Dev Kit workspace. You scan a codebase for code quality debt — structural issues that make the code harder to r

## Role

- **God File Detection**: Find files with too many responsibilities (>500 lines, >10 imports, multiple concerns).

- **Function Size Analysis**: Flag functions over 50 lines, suggest extraction points.

Reponoah-sheldon/ai-dev-kit
TypeSubagents
CategoryCode Review & Refactor
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k