adhdev 0.1.29 → 0.1.30

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/dist/index.js +9 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5221,8 +5221,16 @@ var init_adhdev_daemon = __esm({
5221
5221
  ...Array.from(this.adapters.entries()).map(([k, a]) => ({ id: a.cliType, name: a.cliName, status: this.lastAgentStatus.get(k) || "idle" }))
5222
5222
  ],
5223
5223
  activeChat: managedClis[0]?.activeChat || managedIdes[0]?.activeChat || null,
5224
- // Legacy agentStreams: managedIdes의 agentStreams만 통합 (CLI는 managedClis로 별도 push)
5224
+ // agentStreams: IDE + CLI 통합 (대시보드 생성 기반)
5225
5225
  agentStreams: [
5226
+ ...managedClis.map((c) => ({
5227
+ agentType: c.cliType,
5228
+ agentName: c.cliName,
5229
+ extensionId: "cli-bridge",
5230
+ status: c.status === "generating" ? "streaming" : "idle",
5231
+ messages: c.activeChat?.messages || [],
5232
+ inputContent: ""
5233
+ })),
5226
5234
  ...managedIdes.flatMap((ide) => ide.agentStreams || [])
5227
5235
  ],
5228
5236
  connectedExtensions: extSummary.connectedIdes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "ADHDev CLI — Detect, install and configure your IDE + AI agent extensions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {