forked from
oppi.li/claude-code
source dump of claude code
1import type { Command } from '../../commands.js'
2import { shouldInferenceConfigCommandBeImmediate } from '../../utils/immediateCommand.js'
3
4export default {
5 type: 'local-jsx',
6 name: 'effort',
7 description: 'Set effort level for model usage',
8 argumentHint: '[low|medium|high|max|auto]',
9 get immediate() {
10 return shouldInferenceConfigCommandBeImmediate()
11 },
12 load: () => import('./effort.js'),
13} satisfies Command