()
| 139 | } |
| 140 | |
| 141 | export async function handleInfoSlashCommand() { |
| 142 | const infoLines = [ |
| 143 | ...getVersionInfo(), |
| 144 | ...getConfigInfo(), |
| 145 | ...getSessionInfo(), |
| 146 | ...getUsageInfo(), |
| 147 | ...getDiagnosticInfo(), |
| 148 | ]; |
| 149 | |
| 150 | return { |
| 151 | exit: false, |
| 152 | output: infoLines.join("\n"), |
| 153 | }; |
| 154 | } |
nothing calls this directly
no test coverage detected