getEffortLevelDescription method
Get user-facing description for effort levels.
Implementation
String getEffortLevelDescription(EffortLevel level) {
switch (level) {
case EffortLevel.low:
return 'Quick, straightforward implementation with minimal overhead';
case EffortLevel.medium:
return 'Balanced approach with standard implementation and testing';
case EffortLevel.high:
return 'Comprehensive implementation with extensive testing and documentation';
case EffortLevel.max:
return 'Maximum capability with deepest reasoning (Opus 4.6 only)';
}
}