Runs radon on Python or gocyclo on Go code to spot functions that need refactoring, focusing on cyclomatic complexity scores above 10. Point it at a path or let it scan recent git changes, and it generates a markdown report in .agents/complexity/ with functions ranked by severity. The grading is straightforward: anything over 20 is a must-fix, over 30 is critical. What's useful here is that it doesn't just dump numbers but suggests specific extractions and simplifications for each hotspot. Best used before planning a refactoring sprint or when you inherit a codebase and need to triage technical debt quickly.
npx skills add https://github.com/boshu2/agentops --skill complexity