adhdev 0.1.30 → 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.
Files changed (2) hide show
  1. package/dist/index.js +4 -9
  2. 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,16 +5224,8 @@ 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
- // agentStreams: IDE + CLI 통합 (대시보드 생성 기반)
5227
+ // agentStreams: IDE (CLI DaemonConnection에서 별도 엔트리로 push)
5225
5228
  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
- })),
5234
5229
  ...managedIdes.flatMap((ide) => ide.agentStreams || [])
5235
5230
  ],
5236
5231
  connectedExtensions: extSummary.connectedIdes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "ADHDev CLI — Detect, install and configure your IDE + AI agent extensions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {