risk-assessment

Installation
SKILL.md

Risk Assessment

Assess risk from technical and functional evidence.

Signals

  • Complexity and large methods/classes.
  • Missing tests or low coverage.
  • CRAP score when available.
  • Fan-in/fan-out and number of consumers.
  • External dependencies.
  • Public contracts.
  • Async behavior, transactions, persistence, and critical domain rules.
  • Git churn when history is available.

Classify overall risk as low, medium, high, or critical and explain why.

Churn and hot spots

When git history is available (read-only git log / git blame / git shortlog), rank the target's files by change frequency. High churn on a risky unit raises its priority: refactor pays off where change keeps happening. Churn ≈ 0 lowers it — untouched ugly code is zero-interest debt, and refactoring it has ROI near zero unless a planned change is about to land there.

Installs
4
First Seen
Jul 12, 2026
risk-assessment — andresnator/agents-orchestrator