(args)
| 70 | userInvocable: true, |
| 71 | isEnabled: () => isAutoMemoryEnabled(), |
| 72 | async getPromptForCommand(args) { |
| 73 | let prompt = SKILL_PROMPT |
| 74 | |
| 75 | if (args) { |
| 76 | prompt += `\n## Additional context from user\n\n${args}` |
| 77 | } |
| 78 | |
| 79 | return [{ type: 'text', text: prompt }] |
| 80 | }, |
| 81 | }) |
| 82 | } |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected