MCPcopy Create free account
hub / github.com/codeaashu/claude-code / getEffortLevelDescription

Function getEffortLevelDescription

src/utils/effort.ts:224–235  ·  view source on GitHub ↗
(level: EffortLevel)

Source from the content-addressed store, hash-verified

222 * @returns Human-readable description
223 */
224export 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)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected