()
| 166 | |
| 167 | /** The list an adapter registers as the native `/` menu. */ |
| 168 | export function menuDescriptors(): { command: string; description: string }[] { |
| 169 | return COMMANDS.map(c => ({ command: c.name, description: c.description })); |
| 170 | } |
| 171 | |
| 172 | function helpText(): string { |
| 173 | const cmds = COMMANDS.map(c => `\`/${c.name}\` — ${c.description}`).join('\n'); |
no outgoing calls
no test coverage detected