(args)
| 20 | userInvocable: true, |
| 21 | files: SKILL_FILES, |
| 22 | async getPromptForCommand(args) { |
| 23 | const parts: string[] = [SKILL_BODY.trimStart()] |
| 24 | if (args) { |
| 25 | parts.push(`## User Request\n\n${args}`) |
| 26 | } |
| 27 | return [{ type: 'text', text: parts.join('\n\n') }] |
| 28 | }, |
| 29 | }) |
| 30 | } |
| 31 |