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