adhdev 0.1.29 → 0.1.31
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5173,6 +5173,9 @@ var init_adhdev_daemon = __esm({
|
|
|
5173
5173
|
}
|
|
5174
5174
|
});
|
|
5175
5175
|
}
|
|
5176
|
+
if (this.adapters.size > 0) {
|
|
5177
|
+
console.log(`[StatusReport] adapters=${this.adapters.size}, managedClis=${managedClis.length}, clis=${managedClis.map((c) => `${c.cliType}(${c.status})`).join(",")}`);
|
|
5178
|
+
}
|
|
5176
5179
|
const payload = {
|
|
5177
5180
|
// Machine 정보
|
|
5178
5181
|
daemonMode: true,
|
|
@@ -5221,7 +5224,7 @@ var init_adhdev_daemon = __esm({
|
|
|
5221
5224
|
...Array.from(this.adapters.entries()).map(([k, a]) => ({ id: a.cliType, name: a.cliName, status: this.lastAgentStatus.get(k) || "idle" }))
|
|
5222
5225
|
],
|
|
5223
5226
|
activeChat: managedClis[0]?.activeChat || managedIdes[0]?.activeChat || null,
|
|
5224
|
-
//
|
|
5227
|
+
// agentStreams: IDE만 (CLI는 DaemonConnection에서 별도 엔트리로 push)
|
|
5225
5228
|
agentStreams: [
|
|
5226
5229
|
...managedIdes.flatMap((ide) => ide.agentStreams || [])
|
|
5227
5230
|
],
|