@adhdev/daemon-core 0.9.82-rc.484 → 0.9.82-rc.486
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/cli-adapters/provider-cli-adapter.d.ts +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +311 -34
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +310 -34
- package/dist/index.mjs.map +1 -1
- package/dist/mesh/mesh-queue-assignment.d.ts +4 -0
- package/dist/mesh/mesh-work-queue.d.ts +9 -0
- package/dist/repo-mesh-types.d.ts +18 -2
- package/dist/shared-types.d.ts +8 -0
- package/dist/status/snapshot.d.ts +1 -0
- package/package.json +3 -3
- package/src/cli-adapters/provider-cli-adapter.ts +70 -1
- package/src/commands/handler.ts +21 -1
- package/src/commands/high-family/mesh-coordinator-launch.ts +17 -1
- package/src/commands/high-family/mesh-status.ts +8 -0
- package/src/commands/med-family/cli-agent.ts +29 -0
- package/src/index.ts +1 -1
- package/src/mesh/coordinator-prompt.ts +4 -1
- package/src/mesh/mesh-queue-assignment.ts +227 -40
- package/src/mesh/mesh-work-queue.ts +14 -0
- package/src/repo-mesh-types.ts +28 -3
- package/src/shared-types.ts +8 -0
- package/src/status/builders.ts +45 -2
- package/src/status/snapshot.ts +1 -1
|
@@ -57,6 +57,7 @@ export declare class ProviderCliAdapter implements CliAdapter {
|
|
|
57
57
|
private lastScreenSnapshot;
|
|
58
58
|
private lastScreenText;
|
|
59
59
|
private lastScreenSnapshotReadAt;
|
|
60
|
+
private staticIdlePollStreak;
|
|
60
61
|
private serverConn;
|
|
61
62
|
private logBuffer;
|
|
62
63
|
private pendingOutboundQueue;
|
|
@@ -106,6 +107,7 @@ export declare class ProviderCliAdapter implements CliAdapter {
|
|
|
106
107
|
private static readonly MAX_ACCUMULATED_BUFFER;
|
|
107
108
|
private parsedStatusCache;
|
|
108
109
|
private static readonly SCREEN_SNAPSHOT_MIN_INTERVAL_MS;
|
|
110
|
+
private static readonly STATIC_IDLE_POLL_CONFIRM_COUNT;
|
|
109
111
|
private readonly providerResolutionMeta;
|
|
110
112
|
private getBufferState;
|
|
111
113
|
private recordBoundedAppendDrop;
|
|
@@ -119,6 +121,7 @@ export declare class ProviderCliAdapter implements CliAdapter {
|
|
|
119
121
|
private shouldUseFullProviderTranscriptContext;
|
|
120
122
|
private getIdleFinishConfirmMs;
|
|
121
123
|
private getStatusActivityHoldMs;
|
|
124
|
+
private isAutonomousMeshSession;
|
|
122
125
|
private readonly timeouts;
|
|
123
126
|
private readonly approvalKeys;
|
|
124
127
|
private readonly sendDelayMs;
|
package/dist/index.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ export { maybeRunDaemonUpgradeHelperFromEnv, spawnDetachedDaemonUpgradeHelper, r
|
|
|
102
102
|
export type { DaemonUpgradeHelperPayload, CurrentGlobalInstallSurface, PinnedGlobalInstallCommand, NpmExecOptions, } from './commands/upgrade-helper.js';
|
|
103
103
|
export { DaemonStatusReporter } from './status/reporter.js';
|
|
104
104
|
export { buildSessionEntries, findCdpManager, hasCdpManager, isCdpConnected } from './status/builders.js';
|
|
105
|
-
export { buildStatusSnapshot, buildMachineInfo, getLastDisplayMessage } from './status/snapshot.js';
|
|
105
|
+
export { buildStatusSnapshot, buildMachineInfo, buildAvailableProviders, getLastDisplayMessage } from './status/snapshot.js';
|
|
106
106
|
export { getDaemonBuildInfo } from './build-info.js';
|
|
107
107
|
export type { DaemonBuildInfo } from './build-info.js';
|
|
108
108
|
export { normalizeManagedStatus, isManagedStatusWorking, isManagedStatusWaiting, normalizeActiveChatData } from './status/normalize.js';
|