MCPcopy Index your code
hub / github.com/codeaashu/claude-code / executeEffort

Function executeEffort

src/commands/effort/effort.tsx:107–118  ·  view source on GitHub ↗
(args: string)

Source from the content-addressed store, hash-verified

105 };
106}
107export function executeEffort(args: string): EffortCommandResult {
108 const normalized = args.toLowerCase();
109 if (normalized === 'auto' || normalized === 'unset') {
110 return unsetEffortLevel();
111 }
112 if (!isEffortLevel(normalized)) {
113 return {
114 message: `Invalid argument: ${args}. Valid options are: low, medium, high, max, auto`
115 };
116 }
117 return setEffortValue(normalized);
118}
119function ShowCurrentEffort(t0) {
120 const {
121 onDone

Callers 1

callFunction · 0.85

Calls 3

unsetEffortLevelFunction · 0.85
isEffortLevelFunction · 0.85
setEffortValueFunction · 0.85

Tested by

no test coverage detected