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

Function getEffortValueDescription

src/utils/effort.ts:243–252  ·  view source on GitHub ↗
(value: EffortValue)

Source from the content-addressed store, hash-verified

241 * @returns Human-readable description
242 */
243export function getEffortValueDescription(value: EffortValue): string {
244 if (process.env.USER_TYPE === 'ant' && typeof value === 'number') {
245 return `[ANT-ONLY] Numeric effort value of ${value}`
246 }
247
248 if (typeof value === 'string') {
249 return getEffortLevelDescription(value)
250 }
251 return 'Balanced approach with standard implementation and testing'
252}
253
254export type OpusDefaultEffortConfig = {
255 enabled: boolean

Callers 2

setEffortValueFunction · 0.85
showCurrentEffortFunction · 0.85

Calls 1

Tested by

no test coverage detected