(args)
| 187 | allowedTools: ['Read', 'Grep', 'Glob', 'WebFetch'], |
| 188 | userInvocable: true, |
| 189 | async getPromptForCommand(args) { |
| 190 | const content = await import('./claudeApiContent.js') |
| 191 | const lang = await detectLanguage() |
| 192 | const prompt = buildPrompt(lang, args, content) |
| 193 | return [{ type: 'text', text: prompt }] |
| 194 | }, |
| 195 | }) |
| 196 | } |
| 197 |
nothing calls this directly
no test coverage detected