@baryonlabs/cli 0.3.8 → 0.4.0
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/package.json +1 -1
- package/src/commands.js +1 -1
- package/src/constants.js +5 -1
package/package.json
CHANGED
package/src/commands.js
CHANGED
|
@@ -260,7 +260,7 @@ export function edge(args) {
|
|
|
260
260
|
});
|
|
261
261
|
child.on("error", () => {
|
|
262
262
|
log(` ${sym.warn} ${t("edge.notInstalled")}`);
|
|
263
|
-
log(` ${c.lime("npm i -g
|
|
263
|
+
log(` ${c.lime("npm i -g github:baryonlabs/baryon-edge")}`);
|
|
264
264
|
resolve(1);
|
|
265
265
|
});
|
|
266
266
|
child.on("exit", (code) => resolve(code ?? 0));
|
package/src/constants.js
CHANGED
|
@@ -92,7 +92,11 @@ export const DEFAULT_MODELS = [
|
|
|
92
92
|
*/
|
|
93
93
|
export const DEFAULT_EXTENSIONS = [
|
|
94
94
|
{ name: "pi-canvas", src: "https://github.com/jyaunches/pi-canvas", note: "캔버스" },
|
|
95
|
-
{ name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" }
|
|
95
|
+
{ name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" },
|
|
96
|
+
// Claude-Code-style dynamic workflows: registers a `workflow` tool that fans
|
|
97
|
+
// work out across isolated subagents, then synthesizes. Installed from npm
|
|
98
|
+
// (a pi-package) rather than a git clone. https://github.com/michaelliv/pi-dynamic-workflows
|
|
99
|
+
{ name: "pi-dynamic-workflows", src: "npm:pi-dynamic-workflows", note: "다이내믹 워크플로(서브에이전트 팬아웃)" }
|
|
96
100
|
];
|
|
97
101
|
|
|
98
102
|
/**
|