( _command: string, _cwd: string, _descriptions: string[], _behavior: ClassifierBehavior, _signal: AbortSignal, _isNonInteractiveSession: boolean, )
| 38 | } |
| 39 | |
| 40 | export async function classifyBashCommand( |
| 41 | _command: string, |
| 42 | _cwd: string, |
| 43 | _descriptions: string[], |
| 44 | _behavior: ClassifierBehavior, |
| 45 | _signal: AbortSignal, |
| 46 | _isNonInteractiveSession: boolean, |
| 47 | ): Promise<ClassifierResult> { |
| 48 | return { |
| 49 | matches: false, |
| 50 | confidence: 'high', |
| 51 | reason: 'This feature is disabled', |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | export async function generateGenericDescription( |
| 56 | _command: string, |
no outgoing calls
no test coverage detected