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.
- package/dist/index.js +1 -9
- 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
|
|
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,
|