@arbidocs/tui 0.3.73 → 0.3.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -578,7 +578,12 @@ var ToastContainer = class extends piTui.Container {
|
|
|
578
578
|
// src/command-registry.ts
|
|
579
579
|
init_tui_helpers();
|
|
580
580
|
var registry = /* @__PURE__ */ new Map();
|
|
581
|
-
var KNOWN_SERVER_COMMANDS = /* @__PURE__ */ new Set([
|
|
581
|
+
var KNOWN_SERVER_COMMANDS = /* @__PURE__ */ new Set([
|
|
582
|
+
"pa",
|
|
583
|
+
"setup",
|
|
584
|
+
"cold-start",
|
|
585
|
+
"create-skill"
|
|
586
|
+
]);
|
|
582
587
|
function registerCommand(def) {
|
|
583
588
|
registry.set(def.name, def);
|
|
584
589
|
}
|