(args)
| 82 | userInvocable: true, |
| 83 | isEnabled: isKairosCronEnabled, |
| 84 | async getPromptForCommand(args) { |
| 85 | const trimmed = args.trim() |
| 86 | if (!trimmed) { |
| 87 | return [{ type: 'text', text: USAGE_MESSAGE }] |
| 88 | } |
| 89 | return [{ type: 'text', text: buildPrompt(trimmed) }] |
| 90 | }, |
| 91 | }) |
| 92 | } |
| 93 |
nothing calls this directly
no test coverage detected