@adhdev/daemon-core 0.9.82-rc.492 → 0.9.82-rc.494

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.
@@ -220,8 +220,9 @@ export interface RepoMeshPolicy {
220
220
  autoConvergeCodeChange?: boolean;
221
221
  /**
222
222
  * Whether sessions spawned by mesh/coordinator policy should auto-open as visible
223
- * dashboard tabs or start hidden. Defaults to 'visible' to preserve existing
224
- * watch-the-agents behavior; hidden sessions remain discoverable and manually openable.
223
+ * dashboard tabs or start hidden. Defaults to 'hidden' so the dashboard is not
224
+ * flooded with mesh noise tabs; users can still surface or unmute any specific
225
+ * session manually from the dashboard (that override is preserved per-device).
225
226
  */
226
227
  spawnedSessionVisibility?: RepoMeshSpawnedSessionVisibility;
227
228
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.82-rc.492",
3
+ "version": "0.9.82-rc.494",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,8 +47,8 @@
47
47
  "author": "vilmire",
48
48
  "license": "AGPL-3.0-or-later",
49
49
  "dependencies": {
50
- "@adhdev/mesh-shared": "0.9.82-rc.492",
51
- "@adhdev/session-host-core": "0.9.82-rc.492",
50
+ "@adhdev/mesh-shared": "0.9.82-rc.494",
51
+ "@adhdev/session-host-core": "0.9.82-rc.494",
52
52
  "@agentclientprotocol/sdk": "^0.16.1",
53
53
  "ajv": "^8.20.0",
54
54
  "ajv-formats": "^3.0.1",
@@ -315,8 +315,9 @@ export interface RepoMeshPolicy {
315
315
  autoConvergeCodeChange?: boolean;
316
316
  /**
317
317
  * Whether sessions spawned by mesh/coordinator policy should auto-open as visible
318
- * dashboard tabs or start hidden. Defaults to 'visible' to preserve existing
319
- * watch-the-agents behavior; hidden sessions remain discoverable and manually openable.
318
+ * dashboard tabs or start hidden. Defaults to 'hidden' so the dashboard is not
319
+ * flooded with mesh noise tabs; users can still surface or unmute any specific
320
+ * session manually from the dashboard (that override is preserved per-device).
320
321
  */
321
322
  spawnedSessionVisibility?: RepoMeshSpawnedSessionVisibility;
322
323
  /**