@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baryonlabs/cli",
3
- "version": "0.3.8",
3
+ "version": "0.4.0",
4
4
  "description": "Baryon CLI — AI 코딩·학습 에이전트. baryon.ai API에 기본 연결된 pi 코딩 에이전트 래퍼. 한 줄 설치, 상용·로컬 모델 전환.",
5
5
  "type": "module",
6
6
  "bin": {
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 @baryonlabs/edge")}`);
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
  /**