code-complexity-analyzer
SolidAnalyze code complexity metrics including cyclomatic complexity, code smells, and technical debt
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Code Complexity Analyzer Skill
## Overview
Analyzes code complexity metrics including cyclomatic complexity, cognitive complexity, code smells, duplicate code detection, and technical debt scoring.
## Capabilities
- Calculate cyclomatic complexity
- Calculate cognitive complexity
- Identify code smells
- Dependency analysis
- Duplicate code detection
- Technical debt scoring
- Maintainability index calculation
- Lines of code metrics
## Target Processes
- refactoring-plan
- performance-optimization
- system-design-review
## Input Schema
```json
{
"type": "object",
"required": ["paths"],
"properties": {
"paths": {
"type": "array",
"items": { "type": "string" },
"description": "Paths to analyze (supports glob patterns)"
},
"metrics": {
"type": "array",
"items": {
"type": "string",
"enum": ["cyclomatic", "cognitive", "loc", "dependencies", "duplicates", "maintainability"]
},
"default": ["cyclomatic", "cognitive", "loc"]
},
"thresholds": {
"type": "object",
"properties": {
"cyclomatic": { "type": "number", "default": 10 },
"cognitive": { "type": "number", "default": 15 },
"duplicateLines": { "type": "number", "default": 6 }
}
},
"languages": {
"type": "array",
"items": { "type": "string" },
"description": "Languages to analyze"
}
}
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"files"...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Listed
complexity-analyzer
Measure and report code complexity metrics with actionable recommendations.
335 Updated today
aiskillstore AI & Automation Solid
static-code-analyzer
Deep static analysis of codebases for quality, complexity, and migration readiness assessment
1,160 Updated today
a5c-ai AI & Automation Solid
complexity-analyzer
Automated Big-O complexity analysis of code and algorithms. Performs static analysis of loop structures, recursive call trees, space complexity estimation, and amortized analysis with detailed derivation documents.
1,160 Updated today
a5c-ai AI & Automation Solid
code-quality-analyzer
Static code analysis, technical debt assessment, engineering velocity metrics
1,160 Updated today
a5c-ai Code & Development Listed
tenet-complexity
Measures function/file complexity, nesting, length, and maintainability thresholds.
0 Updated today
inceptyon-labs