Commands: add /plugins chat command (#48765)

* Tests: stabilize MCP config merge follow-ups

* Commands: add /plugins chat command

* Docs: add /plugins slash command guide
This commit is contained in:
Vincent Koc
2026-03-16 22:57:44 -07:00
committed by GitHub
parent 1116ae9766
commit cc88b4a72d
18 changed files with 637 additions and 274 deletions

View File

@@ -10,7 +10,7 @@ import { defaultRuntime } from "../runtime.js";
function fail(message: string): never {
defaultRuntime.error(message);
defaultRuntime.exit(1);
throw new Error("unreachable");
throw new Error(message);
}
function printJson(value: unknown): void {