adhdev 0.1.24 → 0.1.26

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 +1 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5213,16 +5213,8 @@ var init_adhdev_daemon = __esm({
5213
5213
  ...Array.from(this.adapters.entries()).map(([k, a]) => ({ id: a.cliType, name: a.cliName, status: this.lastAgentStatus.get(k) || "idle" }))
5214
5214
  ],
5215
5215
  activeChat: managedClis[0]?.activeChat || managedIdes[0]?.activeChat || null,
5216
- // Legacy agentStreams: managedIdes의 agentStreams 통합 (이미 IDE별로 올바르게 구성됨)
5216
+ // Legacy agentStreams: managedIdes의 agentStreams 통합 (CLI는 managedClis로 별도 push)
5217
5217
  agentStreams: [
5218
- ...managedClis.map((c) => ({
5219
- agentType: c.cliType,
5220
- agentName: c.cliName,
5221
- extensionId: "cli-bridge",
5222
- status: c.status === "generating" ? "streaming" : "idle",
5223
- messages: c.activeChat?.messages || [],
5224
- inputContent: ""
5225
- })),
5226
5218
  ...managedIdes.flatMap((ide) => ide.agentStreams || [])
5227
5219
  ],
5228
5220
  connectedExtensions: extSummary.connectedIdes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
4
4
  "description": "ADHDev CLI — Detect, install and configure your IDE + AI agent extensions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {