@baryonlabs/cli 0.3.4 → 0.3.5

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/constants.js +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baryonlabs/cli",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Baryon CLI — AI 코딩·학습 에이전트. baryon.ai API에 기본 연결된 pi 코딩 에이전트 래퍼. 한 줄 설치, 상용·로컬 모델 전환.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/constants.js CHANGED
@@ -92,8 +92,7 @@ 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: "인터랙티브 셸" },
96
- { name: "pi-parallel-web-search", src: "https://github.com/philipp-spiess/pi-parallel-web-search", note: "병렬 웹 검색" }
95
+ { name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" }
97
96
  ];
98
97
 
99
98
  /**
@@ -111,7 +110,11 @@ export const DEPRECATED_EXTENSIONS = [
111
110
  // path → "Cannot find module …/pi-ai/dist/index.js/compat". Both hard-fail
112
111
  // startup; prune from existing installs. (web search remains via pi-parallel-web-search.)
113
112
  { name: "pi-subagents", src: "https://github.com/nicobailon/pi-subagents", owner: "nicobailon" },
114
- { name: "pi-web-access", src: "https://github.com/nicobailon/pi-web-access", owner: "nicobailon" }
113
+ { name: "pi-web-access", src: "https://github.com/nicobailon/pi-web-access", owner: "nicobailon" },
114
+ // pi ≥0.78 ships a built-in `websearch` (Wikipedia-backed web_search + web_fetch,
115
+ // NO key). pi-parallel-web-search needs PARALLEL_API_KEY → "web_search: PARALLEL_API_KEY
116
+ // not set — tool disabled" noise + redundant. Prune it; search stays via built-in.
117
+ { name: "pi-parallel-web-search", src: "https://github.com/philipp-spiess/pi-parallel-web-search", owner: "philipp-spiess" }
115
118
  ];
116
119
 
117
120
  /**