()
| 147 | } |
| 148 | |
| 149 | export function listMcpExposedCommandNames(): CliCommandName[] { |
| 150 | return listCliCommandNames().filter((command) => !MCP_UNEXPOSED_CLI_COMMANDS.has(command)); |
| 151 | } |
| 152 | |
| 153 | export function listCapabilityCheckedCommandNames(): CliCommandName[] { |
| 154 | return listCliCommandNames().filter((command) => !CAPABILITY_EXEMPT_CLI_COMMANDS.has(command)); |
no test coverage detected