(args)
| 24 | userInvocable: true, |
| 25 | isEnabled: () => shouldAutoEnableClaudeInChrome(), |
| 26 | async getPromptForCommand(args) { |
| 27 | let prompt = `${BASE_CHROME_PROMPT}\n${SKILL_ACTIVATION_MESSAGE}` |
| 28 | if (args) { |
| 29 | prompt += `\n## Task\n\n${args}` |
| 30 | } |
| 31 | return [{ type: 'text', text: prompt }] |
| 32 | }, |
| 33 | }) |
| 34 | } |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected