(level: EffortLevel)
| 222 | * @returns Human-readable description |
| 223 | */ |
| 224 | export function getEffortLevelDescription(level: EffortLevel): string { |
| 225 | switch (level) { |
| 226 | case 'low': |
| 227 | return 'Quick, straightforward implementation with minimal overhead' |
| 228 | case 'medium': |
| 229 | return 'Balanced approach with standard implementation and testing' |
| 230 | case 'high': |
| 231 | return 'Comprehensive implementation with extensive testing and documentation' |
| 232 | case 'max': |
| 233 | return 'Maximum capability with deepest reasoning (Opus 4.6 only)' |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Get user-facing description for effort values (both string and numeric) |
no outgoing calls
no test coverage detected