@baryonlabs/cli 0.3.8 → 0.3.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/commands.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baryonlabs/cli",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
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));