ac-complexity-assessor
Installation
SKILL.md
AC Complexity Assessor
Assess complexity for effort estimation and planning.
Purpose
Analyzes features and projects to determine complexity levels, estimate effort, and select appropriate processing pipelines.
Quick Start
from scripts.complexity_assessor import ComplexityAssessor
assessor = ComplexityAssessor(project_dir)
assessment = await assessor.assess_project()
print(assessment.pipeline_type) # SIMPLE/STANDARD/COMPLEX
print(assessment.estimated_hours)