@adhdev/daemon-core 0.9.82-rc.36 → 0.9.82-rc.361
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/boot/daemon-lifecycle.d.ts +8 -0
- package/dist/boot/process-hardening.d.ts +50 -0
- package/dist/build-info.d.ts +37 -0
- package/dist/chat/source-machine.d.ts +166 -0
- package/dist/chat/source-resolver.d.ts +104 -0
- package/dist/chat/subscription-updates.d.ts +1 -0
- package/dist/cli-adapter-types.d.ts +55 -2
- package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
- package/dist/cli-adapters/cli-state-engine.d.ts +198 -0
- package/dist/cli-adapters/provider-cli-adapter.d.ts +116 -64
- package/dist/cli-adapters/provider-cli-parse.d.ts +4 -0
- package/dist/cli-adapters/provider-cli-runtime.d.ts +34 -0
- package/dist/cli-adapters/provider-cli-shared.d.ts +53 -0
- package/dist/cli-adapters/raw-terminal-io.d.ts +37 -0
- package/dist/cli-adapters/resolve-executable.d.ts +14 -0
- package/dist/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +6 -3
- package/dist/cli-adapters/terminal-backends/types.d.ts +10 -2
- package/dist/cli-adapters/terminal-screen.d.ts +4 -11
- package/dist/commands/cli-manager.d.ts +15 -1
- package/dist/commands/handler.d.ts +125 -0
- package/dist/commands/low-family/index.d.ts +3 -0
- package/dist/commands/low-family/refine-config.d.ts +2 -0
- package/dist/commands/low-family/session-host.d.ts +2 -0
- package/dist/commands/low-family/spec-providerdev.d.ts +11 -0
- package/dist/commands/low-family/types.d.ts +16 -0
- package/dist/commands/mesh-coordinator.d.ts +85 -1
- package/dist/commands/router.d.ts +336 -2
- package/dist/commands/upgrade-helper.d.ts +41 -1
- package/dist/config/chat-history.d.ts +9 -0
- package/dist/config/config.d.ts +5 -0
- package/dist/config/mesh-config.d.ts +77 -1
- package/dist/detection/ide-detector.d.ts +13 -0
- package/dist/detection/win32-ide-version.d.ts +37 -0
- package/dist/git/change-impact-config.d.ts +159 -0
- package/dist/git/git-commands.d.ts +11 -1
- package/dist/git/git-diff.d.ts +6 -0
- package/dist/git/git-executor.d.ts +11 -0
- package/dist/git/git-status.d.ts +23 -0
- package/dist/git/git-types.d.ts +2 -50
- package/dist/git/index.d.ts +2 -0
- package/dist/index.d.ts +54 -13
- package/dist/index.js +41337 -14723
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44100 -17614
- package/dist/index.mjs.map +1 -1
- package/dist/installer.d.ts +1 -4
- package/dist/ipc/local-ipc-server.d.ts +91 -0
- package/dist/launch.d.ts +1 -1
- package/dist/logging/async-batch-writer.d.ts +10 -0
- package/dist/logging/log-redactor.d.ts +24 -0
- package/dist/logging/log-tail-reader.d.ts +46 -0
- package/dist/logging/logger.d.ts +1 -1
- package/dist/mesh/contracts.d.ts +164 -0
- package/dist/mesh/coordinator-prompt.d.ts +36 -0
- package/dist/mesh/coordinator-registry.d.ts +59 -0
- package/dist/mesh/mesh-active-work.d.ts +174 -0
- package/dist/mesh/mesh-delivery-policy.d.ts +131 -0
- package/dist/mesh/mesh-event-trace.d.ts +21 -0
- package/dist/mesh/mesh-events-coordinator.d.ts +170 -0
- package/dist/mesh/mesh-events-pending.d.ts +55 -0
- package/dist/mesh/mesh-events-stale.d.ts +40 -0
- package/dist/mesh/mesh-events-utils.d.ts +60 -0
- package/dist/mesh/mesh-events.d.ts +6 -49
- package/dist/mesh/mesh-fast-forward.d.ts +81 -0
- package/dist/mesh/mesh-host-ownership.d.ts +9 -0
- package/dist/mesh/mesh-init.d.ts +86 -0
- package/dist/mesh/mesh-ledger-reconciliation.d.ts +23 -3
- package/dist/mesh/mesh-ledger.d.ts +77 -1
- package/dist/mesh/mesh-missions.d.ts +164 -0
- package/dist/mesh/mesh-reconcile-loop.d.ts +7 -0
- package/dist/mesh/mesh-refine-batch.d.ts +68 -0
- package/dist/mesh/mesh-refine-status.d.ts +62 -0
- package/dist/mesh/mesh-review-inbox.d.ts +90 -0
- package/dist/mesh/mesh-routing.d.ts +70 -0
- package/dist/mesh/mesh-runtime-store.d.ts +429 -0
- package/dist/mesh/mesh-task-stats.d.ts +49 -0
- package/dist/mesh/mesh-unresolved-forward-outbox.d.ts +30 -0
- package/dist/mesh/mesh-work-queue.d.ts +246 -5
- package/dist/mesh/preview-freshness.d.ts +18 -0
- package/dist/mesh/refine-config.d.ts +216 -0
- package/dist/mesh/worktree-bootstrap-config.d.ts +135 -0
- package/dist/providers/acp-provider-instance.d.ts +5 -0
- package/dist/providers/approval-utils.d.ts +20 -0
- package/dist/providers/chat-message-normalization.d.ts +12 -0
- package/dist/providers/cli-provider-instance.d.ts +106 -3
- package/dist/providers/contracts.d.ts +139 -6
- package/dist/providers/external-sources.d.ts +71 -0
- package/dist/providers/manual-attendance.d.ts +63 -0
- package/dist/providers/native-history/antigravity-cli-transcript.d.ts +100 -0
- package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
- package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
- package/dist/providers/native-history/dispatcher.d.ts +27 -0
- package/dist/providers/native-history/hermes-cli-transcript.d.ts +30 -0
- package/dist/providers/native-history/index.d.ts +13 -0
- package/dist/providers/provider-instance-manager.d.ts +14 -0
- package/dist/providers/provider-instance.d.ts +23 -1
- package/dist/providers/provider-loader.d.ts +26 -4
- package/dist/providers/provider-trust.d.ts +31 -0
- package/dist/providers/read-chat-contract.d.ts +29 -0
- package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
- package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +86 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
- package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
- package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
- package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
- package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
- package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
- package/dist/providers/sdk/v1/index.d.ts +30 -0
- package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
- package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
- package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
- package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
- package/dist/providers/sdk/v1/types/common/index.d.ts +203 -0
- package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
- package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
- package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
- package/dist/providers/spec/adapter.d.ts +91 -0
- package/dist/providers/spec/cli-adapter.d.ts +223 -0
- package/dist/providers/spec/evaluator.d.ts +45 -0
- package/dist/providers/spec/fsm-driver.d.ts +368 -0
- package/dist/providers/spec/fsm-evaluator.d.ts +76 -0
- package/dist/providers/spec/fsm-loader.d.ts +14 -0
- package/dist/providers/spec/fsm-types.d.ts +174 -0
- package/dist/providers/spec/native-history-executor.d.ts +41 -0
- package/dist/providers/spec/pre-launch-trust.d.ts +16 -0
- package/dist/providers/spec/route.d.ts +4 -0
- package/dist/providers/spec/types.d.ts +222 -0
- package/dist/providers/status-monitor.d.ts +7 -7
- package/dist/providers/transcript-v2.d.ts +176 -0
- package/dist/providers/types/interactive-prompt.d.ts +84 -0
- package/dist/providers/working-dir.d.ts +17 -0
- package/dist/repo-mesh-types.d.ts +295 -13
- package/dist/sessions/registry.d.ts +6 -0
- package/dist/shared-types-extra.d.ts +2 -4
- package/dist/shared-types.d.ts +59 -2
- package/dist/status/normalize.d.ts +1 -1
- package/dist/status/normalize.js +1 -0
- package/dist/status/normalize.js.map +1 -1
- package/dist/status/normalize.mjs +1 -0
- package/dist/status/normalize.mjs.map +1 -1
- package/dist/status/reporter.d.ts +2 -0
- package/dist/status/snapshot.d.ts +26 -0
- package/dist/system/load-better-sqlite3.d.ts +21 -0
- package/dist/types.d.ts +5 -0
- package/package.json +7 -3
- package/src/agent-stream/poller.ts +2 -3
- package/src/agent-stream/provider-adapter.ts +1 -1
- package/src/boot/daemon-lifecycle.ts +55 -12
- package/src/boot/process-hardening.ts +89 -0
- package/src/build-info.ts +73 -0
- package/src/chat/source-machine.ts +534 -0
- package/src/chat/source-resolver.ts +0 -0
- package/src/chat/subscription-updates.ts +20 -1
- package/src/cli-adapter-types.d.ts +1 -0
- package/src/cli-adapter-types.ts +56 -2
- package/src/cli-adapters/cli-script-runner.ts +421 -0
- package/src/cli-adapters/cli-state-engine.ts +1215 -0
- package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +774 -1141
- package/src/cli-adapters/provider-cli-parse.d.ts +1 -0
- package/src/cli-adapters/provider-cli-parse.ts +13 -0
- package/src/cli-adapters/provider-cli-runtime.ts +56 -7
- package/src/cli-adapters/provider-cli-shared.d.ts +4 -0
- package/src/cli-adapters/provider-cli-shared.ts +100 -11
- package/src/cli-adapters/pty-transport.ts +2 -1
- package/src/cli-adapters/raw-terminal-io.ts +252 -0
- package/src/cli-adapters/resolve-executable.ts +90 -0
- package/src/cli-adapters/session-host-transport.ts +2 -1
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +53 -29
- package/src/cli-adapters/terminal-backends/types.ts +10 -3
- package/src/cli-adapters/terminal-screen.ts +16 -81
- package/src/commands/WINDOWS-UPGRADE-LOCK-FAILURE.md +198 -0
- package/src/commands/chat-commands.ts +1823 -62
- package/src/commands/cli-manager.ts +405 -23
- package/src/commands/handler.ts +841 -2
- package/src/commands/low-family/index.ts +23 -0
- package/src/commands/low-family/refine-config.ts +106 -0
- package/src/commands/low-family/session-host.ts +274 -0
- package/src/commands/low-family/spec-providerdev.ts +217 -0
- package/src/commands/low-family/types.ts +19 -0
- package/src/commands/mesh-coordinator.ts +332 -122
- package/src/commands/router.ts +7195 -1423
- package/src/commands/stream-commands.ts +8 -0
- package/src/commands/upgrade-helper.ts +310 -45
- package/src/config/chat-history.ts +483 -24
- package/src/config/config.ts +12 -0
- package/src/config/mesh-config.ts +388 -6
- package/src/config/recent-activity.ts +8 -2
- package/src/daemon/dev-auto-implement.ts +3 -2
- package/src/daemon/dev-cli-debug.ts +10 -1
- package/src/detection/cli-detector.ts +28 -9
- package/src/detection/ide-detector.ts +55 -16
- package/src/detection/win32-ide-version.ts +106 -0
- package/src/git/change-impact-config.ts +354 -0
- package/src/git/git-commands.ts +55 -14
- package/src/git/git-diff.ts +81 -11
- package/src/git/git-executor.ts +12 -0
- package/src/git/git-status.ts +574 -43
- package/src/git/git-types.ts +14 -62
- package/src/git/git-worktree.ts +8 -1
- package/src/git/index.ts +16 -0
- package/src/index.ts +156 -12
- package/src/installer.d.ts +1 -1
- package/src/installer.ts +8 -6
- package/src/ipc/local-ipc-server.ts +278 -0
- package/src/launch.d.ts +1 -1
- package/src/launch.ts +37 -28
- package/src/logging/async-batch-writer.ts +55 -0
- package/src/logging/command-log.ts +7 -5
- package/src/logging/log-redactor.ts +100 -0
- package/src/logging/log-tail-reader.ts +220 -0
- package/src/logging/logger.ts +14 -7
- package/src/mesh/contracts.ts +338 -0
- package/src/mesh/coordinator-prompt.ts +234 -31
- package/src/mesh/coordinator-registry.ts +121 -0
- package/src/mesh/mesh-active-work.ts +667 -0
- package/src/mesh/mesh-delivery-policy.ts +315 -0
- package/src/mesh/mesh-event-trace.ts +67 -0
- package/src/mesh/mesh-events-coordinator.ts +2572 -0
- package/src/mesh/mesh-events-pending.ts +599 -0
- package/src/mesh/mesh-events-stale.ts +309 -0
- package/src/mesh/mesh-events-utils.ts +361 -0
- package/src/mesh/mesh-events.ts +30 -1035
- package/src/mesh/mesh-fast-forward.ts +839 -0
- package/src/mesh/mesh-host-ownership.ts +73 -0
- package/src/mesh/mesh-init.ts +260 -0
- package/src/mesh/mesh-ledger-reconciliation.ts +12 -5
- package/src/mesh/mesh-ledger.ts +591 -102
- package/src/mesh/mesh-missions.ts +322 -0
- package/src/mesh/mesh-reconcile-loop.ts +1096 -0
- package/src/mesh/mesh-refine-batch.ts +197 -0
- package/src/mesh/mesh-refine-status.ts +231 -0
- package/src/mesh/mesh-review-inbox.ts +307 -0
- package/src/mesh/mesh-routing.ts +291 -0
- package/src/mesh/mesh-runtime-store.ts +1697 -0
- package/src/mesh/mesh-task-stats.ts +161 -0
- package/src/mesh/mesh-unresolved-forward-outbox.ts +185 -0
- package/src/mesh/mesh-work-queue.ts +997 -141
- package/src/mesh/preview-freshness.ts +118 -0
- package/src/mesh/refine-config.ts +423 -0
- package/src/mesh/worktree-bootstrap-config.ts +331 -0
- package/src/providers/acp-provider-instance.ts +43 -10
- package/src/providers/approval-utils.d.ts +5 -0
- package/src/providers/approval-utils.ts +57 -5
- package/src/providers/chat-message-normalization.ts +45 -5
- package/src/providers/cli-provider-instance.ts +1267 -101
- package/src/providers/contracts.d.ts +55 -0
- package/src/providers/contracts.ts +150 -6
- package/src/providers/extension-provider-instance.ts +12 -7
- package/src/providers/external-sources.ts +218 -0
- package/src/providers/ide-provider-instance.ts +35 -12
- package/src/providers/manual-attendance.ts +85 -0
- package/src/providers/native-history/antigravity-cli-transcript.ts +643 -0
- package/src/providers/native-history/claude-cli-transcript.ts +396 -0
- package/src/providers/native-history/codex-cli-transcript.ts +479 -0
- package/src/providers/native-history/dispatcher.ts +340 -0
- package/src/providers/native-history/hermes-cli-transcript.ts +230 -0
- package/src/providers/native-history/index.ts +30 -0
- package/src/providers/provider-instance-manager.ts +30 -0
- package/src/providers/provider-instance.ts +19 -1
- package/src/providers/provider-loader.ts +670 -50
- package/src/providers/provider-schema.ts +87 -14
- package/src/providers/provider-trust.ts +114 -0
- package/src/providers/read-chat-contract.ts +76 -16
- package/src/providers/sdk/README.md +49 -0
- package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
- package/src/providers/sdk/v1/builders/cli/detect-status.ts +313 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval.ts +250 -0
- package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
- package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
- package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
- package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
- package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
- package/src/providers/sdk/v1/index.ts +152 -0
- package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
- package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
- package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
- package/src/providers/sdk/v1/schemas/cli/provider.schema.json +504 -0
- package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
- package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
- package/src/providers/sdk/v1/types/cli/index.ts +365 -0
- package/src/providers/sdk/v1/types/common/index.ts +229 -0
- package/src/providers/sdk/v1/validators/index.ts +19 -0
- package/src/providers/sdk/v1/validators/manifest.ts +110 -0
- package/src/providers/sdk/v1/validators/taint.ts +309 -0
- package/src/providers/spec/adapter.ts +235 -0
- package/src/providers/spec/cli-adapter.ts +1051 -0
- package/src/providers/spec/evaluator.ts +407 -0
- package/src/providers/spec/fsm-driver.ts +1251 -0
- package/src/providers/spec/fsm-evaluator.ts +272 -0
- package/src/providers/spec/fsm-loader.ts +120 -0
- package/src/providers/spec/fsm-types.ts +273 -0
- package/src/providers/spec/native-history-executor.ts +1136 -0
- package/src/providers/spec/pre-launch-trust.ts +104 -0
- package/src/providers/spec/route.ts +51 -0
- package/src/providers/spec/types.ts +262 -0
- package/src/providers/status-monitor.d.ts +7 -7
- package/src/providers/status-monitor.ts +37 -22
- package/src/providers/transcript-v2.ts +567 -0
- package/src/providers/types/interactive-prompt.ts +536 -0
- package/src/providers/version-archive.ts +64 -24
- package/src/providers/working-dir.ts +23 -0
- package/src/repo-mesh-types.ts +378 -14
- package/src/sessions/registry.ts +6 -0
- package/src/shared-types-extra.ts +2 -4
- package/src/shared-types.d.ts +8 -0
- package/src/shared-types.ts +64 -1
- package/src/status/builders.ts +26 -6
- package/src/status/normalize.ts +2 -0
- package/src/status/reporter.ts +19 -1
- package/src/status/snapshot.ts +95 -26
- package/src/system/host-memory.ts +29 -12
- package/src/system/load-better-sqlite3.ts +68 -0
- package/src/types.ts +5 -0
- package/dist/cli-adapters/terminal-backends/xterm-backend.d.ts +0 -17
- package/dist/mesh/mesh-sync.d.ts +0 -53
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +0 -16
- package/src/cli-adapters/terminal-backends/xterm-backend.ts +0 -97
- package/src/mesh/mesh-sync.ts +0 -111
package/src/mesh/mesh-ledger.ts
CHANGED
|
@@ -13,11 +13,12 @@
|
|
|
13
13
|
* Safety: mode 0o600, atomic append via appendFileSync
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
-
import { existsSync, mkdirSync, readFileSync,
|
|
16
|
+
import { appendFileSync, existsSync, mkdirSync, readFileSync, statSync, renameSync, writeFileSync } from 'fs';
|
|
17
17
|
import { join } from 'path';
|
|
18
18
|
import { randomUUID } from 'crypto';
|
|
19
19
|
import { getConfigDir } from '../config/config.js';
|
|
20
20
|
import { EventEmitter } from 'events';
|
|
21
|
+
import { MeshRuntimeStore } from './mesh-runtime-store.js';
|
|
21
22
|
// ─── Types ──────────────────────────────────────
|
|
22
23
|
|
|
23
24
|
export type MeshLedgerKind =
|
|
@@ -26,16 +27,23 @@ export type MeshLedgerKind =
|
|
|
26
27
|
| 'task_failed'
|
|
27
28
|
| 'task_stalled'
|
|
28
29
|
| 'task_approval_needed'
|
|
30
|
+
| 'p2p_dispatch_failed'
|
|
29
31
|
| 'session_launched'
|
|
30
32
|
| 'session_auto_launch'
|
|
31
33
|
| 'session_stopped'
|
|
32
34
|
| 'checkpoint_created'
|
|
33
35
|
| 'node_cloned'
|
|
36
|
+
| 'node_joined'
|
|
34
37
|
| 'node_removed'
|
|
35
38
|
| 'coordinator_started'
|
|
36
39
|
| 'recovery_attempted'
|
|
37
40
|
| 'ledger_replicated'
|
|
38
41
|
| 'ledger_reconciled'
|
|
42
|
+
| 'direct_fast_forward'
|
|
43
|
+
| 'delivery_unroutable'
|
|
44
|
+
| 'direct_dispatch_pruned'
|
|
45
|
+
| 'event_held'
|
|
46
|
+
| 'task_reclaimed'
|
|
39
47
|
;
|
|
40
48
|
|
|
41
49
|
export interface MeshLedgerEntry {
|
|
@@ -61,6 +69,44 @@ export function isIntentionalCleanupStopEntry(entry: Pick<MeshLedgerEntry, 'kind
|
|
|
61
69
|
|| payload.source === 'mesh_remove_node');
|
|
62
70
|
}
|
|
63
71
|
|
|
72
|
+
export type MeshWorkerResultStatus = 'completed' | 'failed' | 'blocked' | 'partial' | 'unknown';
|
|
73
|
+
export type MeshProcessArtifactKind = 'process' | 'log' | 'port' | 'window' | 'session' | 'file' | 'url' | 'other';
|
|
74
|
+
|
|
75
|
+
export interface MeshValidationResultArtifact {
|
|
76
|
+
command?: string;
|
|
77
|
+
status: 'passed' | 'failed' | 'skipped' | 'unknown';
|
|
78
|
+
durationMs?: number;
|
|
79
|
+
outputPath?: string;
|
|
80
|
+
summary?: string;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface MeshProcessArtifact {
|
|
84
|
+
kind: MeshProcessArtifactKind;
|
|
85
|
+
id?: string;
|
|
86
|
+
label?: string;
|
|
87
|
+
locator?: string;
|
|
88
|
+
pid?: number;
|
|
89
|
+
port?: number;
|
|
90
|
+
url?: string;
|
|
91
|
+
path?: string;
|
|
92
|
+
sessionId?: string;
|
|
93
|
+
keepRunning?: boolean;
|
|
94
|
+
metadata?: Record<string, unknown>;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export interface MeshWorkerResultArtifact {
|
|
98
|
+
status: MeshWorkerResultStatus;
|
|
99
|
+
classification?: string;
|
|
100
|
+
changedFiles: string[];
|
|
101
|
+
validationResults: MeshValidationResultArtifact[];
|
|
102
|
+
gitStatus?: Record<string, unknown>;
|
|
103
|
+
processArtifacts: MeshProcessArtifact[];
|
|
104
|
+
errors: string[];
|
|
105
|
+
nextAction?: string;
|
|
106
|
+
requiresUserAction: boolean;
|
|
107
|
+
source: 'explicit_metadata' | 'final_summary_json' | 'default';
|
|
108
|
+
}
|
|
109
|
+
|
|
64
110
|
export interface MeshTaskCompletionEvidence {
|
|
65
111
|
source: 'agent_status_event';
|
|
66
112
|
event: 'agent:generating_completed' | 'agent:ready';
|
|
@@ -74,6 +120,7 @@ export interface MeshTaskCompletionEvidence {
|
|
|
74
120
|
providerSessionId?: string;
|
|
75
121
|
finalSummaryAvailable: boolean;
|
|
76
122
|
};
|
|
123
|
+
workerResult: MeshWorkerResultArtifact;
|
|
77
124
|
git: {
|
|
78
125
|
status: 'deferred';
|
|
79
126
|
reason: string;
|
|
@@ -96,6 +143,7 @@ export interface BuildTaskCompletionEvidenceOptions {
|
|
|
96
143
|
providerType?: string;
|
|
97
144
|
providerSessionId?: string;
|
|
98
145
|
finalSummary?: string;
|
|
146
|
+
workerResult?: Record<string, unknown>;
|
|
99
147
|
completedAt?: string;
|
|
100
148
|
}
|
|
101
149
|
|
|
@@ -160,8 +208,19 @@ export interface AppendRemoteLedgerResult {
|
|
|
160
208
|
// ─── Constants ──────────────────────────────────
|
|
161
209
|
|
|
162
210
|
const LEDGER_DIR_NAME = 'mesh-ledger';
|
|
163
|
-
const MAX_FILE_SIZE_BYTES = 10 * 1024 * 1024; // 10 MB
|
|
211
|
+
const MAX_FILE_SIZE_BYTES = 10 * 1024 * 1024; // 10 MB — full rotation threshold
|
|
212
|
+
const COMPACT_THRESHOLD_BYTES = 2 * 1024 * 1024; // 2 MB — compaction threshold
|
|
213
|
+
const ARCHIVE_TERMINAL_OLDER_THAN_MS = 7 * 24 * 60 * 60 * 1000; // 7 days
|
|
164
214
|
const RECENT_FAILURE_WINDOW_MS = 30 * 60 * 1000; // 30 minutes
|
|
215
|
+
|
|
216
|
+
// Kinds that accumulate indefinitely and are safe to archive after ARCHIVE_TERMINAL_OLDER_THAN_MS.
|
|
217
|
+
// Non-terminal kinds (dispatched, sessions, nodes, checkpoints) are always kept in the active file.
|
|
218
|
+
const ARCHIVABLE_KINDS: ReadonlySet<MeshLedgerKind> = new Set([
|
|
219
|
+
'task_completed',
|
|
220
|
+
'task_failed',
|
|
221
|
+
'task_stalled',
|
|
222
|
+
'recovery_attempted',
|
|
223
|
+
] as MeshLedgerKind[]);
|
|
165
224
|
const DEFAULT_LEDGER_SLICE_LIMIT = 100;
|
|
166
225
|
export const MAX_LEDGER_SLICE_LIMIT = 500;
|
|
167
226
|
|
|
@@ -186,8 +245,258 @@ function getRotatedPath(meshId: string, index: number): string {
|
|
|
186
245
|
return join(getLedgerDir(), `${safe}.${index}.jsonl`);
|
|
187
246
|
}
|
|
188
247
|
|
|
248
|
+
function getArchivePath(meshId: string): string {
|
|
249
|
+
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, '_');
|
|
250
|
+
return join(getLedgerDir(), `${safe}.archive.jsonl`);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
function getRotatedArchivePath(meshId: string, index: number): string {
|
|
254
|
+
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, '_');
|
|
255
|
+
return join(getLedgerDir(), `${safe}.archive.${index}.jsonl`);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
function getArchivedCountsPath(meshId: string): string {
|
|
259
|
+
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, '_');
|
|
260
|
+
return join(getLedgerDir(), `${safe}.archived-counts.json`);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
function rotateArchiveFile(meshId: string, archivePath: string): void {
|
|
264
|
+
let index = 1;
|
|
265
|
+
while (existsSync(getRotatedArchivePath(meshId, index))) {
|
|
266
|
+
index++;
|
|
267
|
+
if (index > 5) break;
|
|
268
|
+
}
|
|
269
|
+
if (index > 5) index = 5;
|
|
270
|
+
try {
|
|
271
|
+
renameSync(archivePath, getRotatedArchivePath(meshId, index));
|
|
272
|
+
} catch (e: any) {
|
|
273
|
+
process.stderr.write(`[adhdev-mesh] Archive rotation failed for mesh ${meshId}: ${e?.message || e}\n`);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
interface LedgerArchivedCounts {
|
|
278
|
+
taskCompleted: number;
|
|
279
|
+
taskFailed: number;
|
|
280
|
+
taskStalled: number;
|
|
281
|
+
recoveryAttempted: number;
|
|
282
|
+
totalArchived: number;
|
|
283
|
+
lastArchivedAt: string;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
function readArchivedCounts(meshId: string): LedgerArchivedCounts {
|
|
287
|
+
const path = getArchivedCountsPath(meshId);
|
|
288
|
+
if (!existsSync(path)) return { taskCompleted: 0, taskFailed: 0, taskStalled: 0, recoveryAttempted: 0, totalArchived: 0, lastArchivedAt: '' };
|
|
289
|
+
try { return JSON.parse(readFileSync(path, 'utf-8')) as LedgerArchivedCounts; } catch { return { taskCompleted: 0, taskFailed: 0, taskStalled: 0, recoveryAttempted: 0, totalArchived: 0, lastArchivedAt: '' }; }
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
function updateArchivedCounts(meshId: string, archived: MeshLedgerEntry[]): void {
|
|
293
|
+
const counts = readArchivedCounts(meshId);
|
|
294
|
+
for (const e of archived) {
|
|
295
|
+
if (e.kind === 'task_completed') counts.taskCompleted++;
|
|
296
|
+
else if (e.kind === 'task_failed') counts.taskFailed++;
|
|
297
|
+
else if (e.kind === 'task_stalled') counts.taskStalled++;
|
|
298
|
+
else if (e.kind === 'recovery_attempted') counts.recoveryAttempted++;
|
|
299
|
+
}
|
|
300
|
+
counts.totalArchived += archived.length;
|
|
301
|
+
counts.lastArchivedAt = new Date().toISOString();
|
|
302
|
+
try { writeFileSync(getArchivedCountsPath(meshId), JSON.stringify(counts), { encoding: 'utf-8', mode: 0o600 }); } catch { /* best-effort */ }
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// ─── Worker Result Footer ───────────────────────
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* Footer to append to worker task messages so workers output structured results
|
|
309
|
+
* that the daemon parses via extractJsonObjectFromSummary / normalizeMeshWorkerResult.
|
|
310
|
+
*
|
|
311
|
+
* Usage: append buildWorkerTaskFooter() to the task message in mesh_send_task /
|
|
312
|
+
* mesh_enqueue_task. The coordinator prompt rules instruct coordinators to do this.
|
|
313
|
+
*/
|
|
314
|
+
export function buildWorkerTaskFooter(): string {
|
|
315
|
+
return `
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
When your task is done, end your final response with a JSON code block in this exact format (omit fields that don't apply):
|
|
319
|
+
\`\`\`json
|
|
320
|
+
{
|
|
321
|
+
"status": "completed",
|
|
322
|
+
"changedFiles": ["src/foo.ts", "tests/foo.test.ts"],
|
|
323
|
+
"gitStatus": { "branch": "feat/your-branch", "committed": true, "pushed": false },
|
|
324
|
+
"validationResults": [{ "command": "npm test", "status": "passed" }],
|
|
325
|
+
"errors": [],
|
|
326
|
+
"nextAction": "optional guidance for the coordinator"
|
|
327
|
+
}
|
|
328
|
+
\`\`\`
|
|
329
|
+
Valid status values: \`completed\` | \`failed\` | \`blocked\` | \`partial\`.`;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// ─── Ledger Compaction ──────────────────────────
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Compact the active ledger file for a mesh by moving old terminal entries
|
|
336
|
+
* (task_completed, task_failed, task_stalled, recovery_attempted older than 7 days)
|
|
337
|
+
* to <meshId>.archive.jsonl, keeping the active file lean.
|
|
338
|
+
*
|
|
339
|
+
* Non-terminal entries (dispatch, sessions, node lifecycle) are always retained.
|
|
340
|
+
* Called automatically from appendLedgerEntry when the file exceeds COMPACT_THRESHOLD_BYTES.
|
|
341
|
+
*/
|
|
342
|
+
export function compactLedger(meshId: string): { archivedCount: number; retainedCount: number } {
|
|
343
|
+
const filePath = getLedgerPath(meshId);
|
|
344
|
+
if (!existsSync(filePath)) return { archivedCount: 0, retainedCount: 0 };
|
|
345
|
+
|
|
346
|
+
const cutoff = Date.now() - ARCHIVE_TERMINAL_OLDER_THAN_MS;
|
|
347
|
+
const entries = readLedgerEntries(meshId);
|
|
348
|
+
|
|
349
|
+
const keep: MeshLedgerEntry[] = [];
|
|
350
|
+
const archive: MeshLedgerEntry[] = [];
|
|
351
|
+
for (const entry of entries) {
|
|
352
|
+
if (ARCHIVABLE_KINDS.has(entry.kind) && new Date(entry.timestamp).getTime() < cutoff) {
|
|
353
|
+
archive.push(entry);
|
|
354
|
+
} else {
|
|
355
|
+
keep.push(entry);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
if (archive.length === 0) return { archivedCount: 0, retainedCount: keep.length };
|
|
360
|
+
|
|
361
|
+
// Append archived entries to the archive file, rotate if it exceeds 50MB
|
|
362
|
+
const archivePath = getArchivePath(meshId);
|
|
363
|
+
try {
|
|
364
|
+
if (existsSync(archivePath) && statSync(archivePath).size > 50 * 1024 * 1024) {
|
|
365
|
+
rotateArchiveFile(meshId, archivePath);
|
|
366
|
+
}
|
|
367
|
+
const archiveLines = archive.map(e => JSON.stringify(e)).join('\n') + '\n';
|
|
368
|
+
appendFileSync(archivePath, archiveLines, { encoding: 'utf-8', mode: 0o600 });
|
|
369
|
+
updateArchivedCounts(meshId, archive);
|
|
370
|
+
} catch (e: any) {
|
|
371
|
+
process.stderr.write(`[adhdev-mesh] Ledger archive write failed for mesh ${meshId}: ${e?.message || e}\n`);
|
|
372
|
+
return { archivedCount: 0, retainedCount: entries.length };
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// Rewrite active file with retained entries only
|
|
376
|
+
try {
|
|
377
|
+
const keepLines = keep.length ? keep.map(e => JSON.stringify(e)).join('\n') + '\n' : '';
|
|
378
|
+
writeFileSync(filePath, keepLines, { encoding: 'utf-8', mode: 0o600 });
|
|
379
|
+
invalidateLedgerCache(meshId);
|
|
380
|
+
} catch (e: any) {
|
|
381
|
+
process.stderr.write(`[adhdev-mesh] Ledger compaction rewrite failed for mesh ${meshId}: ${e?.message || e}\n`);
|
|
382
|
+
return { archivedCount: archive.length, retainedCount: keep.length };
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
// G2: mirror the compaction in SQLite so the runtime store matches the active
|
|
386
|
+
// ledger set. Archived entries live on in the JSONL archive files (export/debug).
|
|
387
|
+
try {
|
|
388
|
+
MeshRuntimeStore.getInstance().deleteLedgerEntries(meshId, archive.map(e => e.id));
|
|
389
|
+
invalidateLedgerCache(meshId);
|
|
390
|
+
} catch { /* best-effort; summary counts absorb the difference via archived counts */ }
|
|
391
|
+
|
|
392
|
+
return { archivedCount: archive.length, retainedCount: keep.length };
|
|
393
|
+
}
|
|
394
|
+
|
|
189
395
|
// ─── Core API ───────────────────────────────────
|
|
190
396
|
|
|
397
|
+
function readNonEmptyString(value: unknown): string | undefined {
|
|
398
|
+
return typeof value === 'string' && value.trim() ? value.trim() : undefined;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function readStringArray(value: unknown): string[] {
|
|
402
|
+
if (!Array.isArray(value)) return [];
|
|
403
|
+
return value.map(item => readNonEmptyString(item)).filter(Boolean) as string[];
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
function extractJsonObjectFromSummary(summary?: string): Record<string, unknown> | undefined {
|
|
407
|
+
const text = readNonEmptyString(summary);
|
|
408
|
+
if (!text) return undefined;
|
|
409
|
+
const fenced = text.match(/```(?:json)?\s*([\s\S]*?)```/i);
|
|
410
|
+
const candidates = [fenced?.[1], text].filter(Boolean) as string[];
|
|
411
|
+
for (const candidate of candidates) {
|
|
412
|
+
const trimmed = candidate.trim();
|
|
413
|
+
if (!trimmed.startsWith('{') || !trimmed.endsWith('}')) continue;
|
|
414
|
+
try {
|
|
415
|
+
const parsed = JSON.parse(trimmed);
|
|
416
|
+
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
|
|
417
|
+
// Require at least one mesh worker result field to avoid false positives
|
|
418
|
+
// (e.g. JSON from tool call outputs or log lines in the final summary).
|
|
419
|
+
const hasWorkerShape = 'status' in parsed && (
|
|
420
|
+
'changedFiles' in parsed || 'errors' in parsed
|
|
421
|
+
|| 'gitStatus' in parsed || 'nextAction' in parsed
|
|
422
|
+
|| 'validationResults' in parsed
|
|
423
|
+
);
|
|
424
|
+
if (hasWorkerShape) return parsed;
|
|
425
|
+
}
|
|
426
|
+
} catch { /* try next candidate */ }
|
|
427
|
+
}
|
|
428
|
+
return undefined;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
function normalizeValidationResults(value: unknown): MeshValidationResultArtifact[] {
|
|
432
|
+
if (!Array.isArray(value)) return [];
|
|
433
|
+
return value
|
|
434
|
+
.filter(item => item && typeof item === 'object' && !Array.isArray(item))
|
|
435
|
+
.map((item: any) => {
|
|
436
|
+
const status = ['passed', 'failed', 'skipped', 'unknown'].includes(item.status) ? item.status : 'unknown';
|
|
437
|
+
return {
|
|
438
|
+
...(readNonEmptyString(item.command) ? { command: readNonEmptyString(item.command) } : {}),
|
|
439
|
+
status,
|
|
440
|
+
...(Number.isFinite(Number(item.durationMs)) ? { durationMs: Number(item.durationMs) } : {}),
|
|
441
|
+
...(readNonEmptyString(item.outputPath) ? { outputPath: readNonEmptyString(item.outputPath) } : {}),
|
|
442
|
+
...(readNonEmptyString(item.summary) ? { summary: readNonEmptyString(item.summary) } : {}),
|
|
443
|
+
};
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
function normalizeProcessArtifacts(value: unknown): MeshProcessArtifact[] {
|
|
448
|
+
if (!Array.isArray(value)) return [];
|
|
449
|
+
const kinds = new Set(['process', 'log', 'port', 'window', 'session', 'file', 'url', 'other']);
|
|
450
|
+
return value
|
|
451
|
+
.filter(item => item && typeof item === 'object' && !Array.isArray(item))
|
|
452
|
+
.map((item: any) => ({
|
|
453
|
+
kind: kinds.has(item.kind) ? item.kind : 'other',
|
|
454
|
+
...(readNonEmptyString(item.id) ? { id: readNonEmptyString(item.id) } : {}),
|
|
455
|
+
...(readNonEmptyString(item.label) ? { label: readNonEmptyString(item.label) } : {}),
|
|
456
|
+
...(readNonEmptyString(item.locator) ? { locator: readNonEmptyString(item.locator) } : {}),
|
|
457
|
+
...(Number.isFinite(Number(item.pid)) ? { pid: Number(item.pid) } : {}),
|
|
458
|
+
...(Number.isFinite(Number(item.port)) ? { port: Number(item.port) } : {}),
|
|
459
|
+
...(readNonEmptyString(item.url) ? { url: readNonEmptyString(item.url) } : {}),
|
|
460
|
+
...(readNonEmptyString(item.path) ? { path: readNonEmptyString(item.path) } : {}),
|
|
461
|
+
...(readNonEmptyString(item.sessionId) ? { sessionId: readNonEmptyString(item.sessionId) } : {}),
|
|
462
|
+
...(typeof item.keepRunning === 'boolean' ? { keepRunning: item.keepRunning } : {}),
|
|
463
|
+
...(item.metadata && typeof item.metadata === 'object' && !Array.isArray(item.metadata) ? { metadata: item.metadata as Record<string, unknown> } : {}),
|
|
464
|
+
}));
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export function normalizeMeshWorkerResult(input?: Record<string, unknown>, source: MeshWorkerResultArtifact['source'] = 'explicit_metadata'): MeshWorkerResultArtifact {
|
|
468
|
+
const raw = input && typeof input === 'object' ? input : {};
|
|
469
|
+
const status = ['completed', 'failed', 'blocked', 'partial', 'unknown'].includes(String(raw.status))
|
|
470
|
+
? raw.status as MeshWorkerResultStatus
|
|
471
|
+
: 'unknown';
|
|
472
|
+
const gitStatus = raw.gitStatus && typeof raw.gitStatus === 'object' && !Array.isArray(raw.gitStatus)
|
|
473
|
+
? raw.gitStatus as Record<string, unknown>
|
|
474
|
+
: undefined;
|
|
475
|
+
return {
|
|
476
|
+
status,
|
|
477
|
+
...(readNonEmptyString(raw.classification) ? { classification: readNonEmptyString(raw.classification) } : {}),
|
|
478
|
+
changedFiles: readStringArray(raw.changedFiles),
|
|
479
|
+
validationResults: normalizeValidationResults(raw.validationResults),
|
|
480
|
+
...(gitStatus ? { gitStatus } : {}),
|
|
481
|
+
processArtifacts: normalizeProcessArtifacts(raw.processArtifacts),
|
|
482
|
+
errors: readStringArray(raw.errors),
|
|
483
|
+
...(readNonEmptyString(raw.nextAction) ? { nextAction: readNonEmptyString(raw.nextAction) } : {}),
|
|
484
|
+
requiresUserAction: raw.requiresUserAction === true,
|
|
485
|
+
source,
|
|
486
|
+
};
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
function resolveWorkerResult(opts: BuildTaskCompletionEvidenceOptions): MeshWorkerResultArtifact {
|
|
490
|
+
if (opts.workerResult && typeof opts.workerResult === 'object') {
|
|
491
|
+
return normalizeMeshWorkerResult(opts.workerResult, 'explicit_metadata');
|
|
492
|
+
}
|
|
493
|
+
const parsed = extractJsonObjectFromSummary(opts.finalSummary);
|
|
494
|
+
if (parsed) {
|
|
495
|
+
return normalizeMeshWorkerResult(parsed, 'final_summary_json');
|
|
496
|
+
}
|
|
497
|
+
return normalizeMeshWorkerResult(undefined, 'default');
|
|
498
|
+
}
|
|
499
|
+
|
|
191
500
|
export function buildTaskCompletionEvidence(opts: BuildTaskCompletionEvidenceOptions): MeshTaskCompletionEvidence {
|
|
192
501
|
const providerSessionId = opts.providerSessionId?.trim() || undefined;
|
|
193
502
|
const providerType = opts.providerType?.trim() || undefined;
|
|
@@ -204,6 +513,7 @@ export function buildTaskCompletionEvidence(opts: BuildTaskCompletionEvidenceOpt
|
|
|
204
513
|
providerSessionId,
|
|
205
514
|
finalSummaryAvailable: typeof opts.finalSummary === 'string' && opts.finalSummary.trim().length > 0,
|
|
206
515
|
},
|
|
516
|
+
workerResult: resolveWorkerResult(opts),
|
|
207
517
|
git: {
|
|
208
518
|
status: 'deferred',
|
|
209
519
|
reason: 'ordinary_completion_git_status_not_checked',
|
|
@@ -239,21 +549,44 @@ export function appendLedgerEntry(
|
|
|
239
549
|
|
|
240
550
|
const filePath = getLedgerPath(meshId);
|
|
241
551
|
|
|
242
|
-
//
|
|
552
|
+
// Compact or rotate based on file size
|
|
243
553
|
if (existsSync(filePath)) {
|
|
244
554
|
try {
|
|
245
555
|
const stat = statSync(filePath);
|
|
246
556
|
if (stat.size >= MAX_FILE_SIZE_BYTES) {
|
|
247
557
|
rotateLedgerFile(meshId, filePath);
|
|
558
|
+
} else if (stat.size >= COMPACT_THRESHOLD_BYTES) {
|
|
559
|
+
compactLedger(meshId);
|
|
248
560
|
}
|
|
249
561
|
} catch {
|
|
250
562
|
// stat failed — proceed with append anyway
|
|
251
563
|
}
|
|
252
564
|
}
|
|
253
565
|
|
|
566
|
+
// Write to SQLite (G2: primary runtime read/write path)
|
|
567
|
+
try {
|
|
568
|
+
MeshRuntimeStore.getInstance().appendLedgerEntry({
|
|
569
|
+
id: entry.id,
|
|
570
|
+
meshId: entry.meshId,
|
|
571
|
+
timestamp: entry.timestamp,
|
|
572
|
+
kind: entry.kind,
|
|
573
|
+
nodeId: entry.nodeId ?? null,
|
|
574
|
+
sessionId: entry.sessionId ?? null,
|
|
575
|
+
providerType: entry.providerType ?? null,
|
|
576
|
+
payload: entry.payload,
|
|
577
|
+
});
|
|
578
|
+
} catch {
|
|
579
|
+
// SQLite write failed but the JSONL append below still records the entry.
|
|
580
|
+
// Reset the one-time import flag so the next read re-imports from JSONL
|
|
581
|
+
// and the store self-heals instead of silently missing this entry.
|
|
582
|
+
ledgerImportDone.delete(meshId);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// Also write to JSONL (retained as export/import/debug/legacy artifact)
|
|
254
586
|
try {
|
|
255
587
|
const line = JSON.stringify(entry) + '\n';
|
|
256
588
|
appendFileSync(filePath, line, { encoding: 'utf-8', mode: 0o600 });
|
|
589
|
+
invalidateLedgerCache(meshId);
|
|
257
590
|
meshLedgerEvents.emit('append', meshId, entry);
|
|
258
591
|
return entry;
|
|
259
592
|
} catch (e: any) {
|
|
@@ -285,8 +618,9 @@ export function appendRemoteLedgerEntries(meshId: string, entries: MeshLedgerEnt
|
|
|
285
618
|
if (entries.length === 0) return { accepted: 0, skippedDuplicate: 0, rejectedInvalid: 0, entries: [] };
|
|
286
619
|
const ledgerPath = getLedgerPath(meshId);
|
|
287
620
|
|
|
288
|
-
//
|
|
289
|
-
|
|
621
|
+
// Dedup against recent entries only — P2P replication is incremental (cursor-based),
|
|
622
|
+
// so duplicates appear in the recent tail, not deep history.
|
|
623
|
+
const existing = new Set(readLedgerEntries(meshId, { tail: 1000 }).map(e => e.id));
|
|
290
624
|
const validEntries: MeshLedgerEntry[] = [];
|
|
291
625
|
let rejectedInvalid = 0;
|
|
292
626
|
let skippedDuplicate = 0;
|
|
@@ -307,9 +641,24 @@ export function appendRemoteLedgerEntries(meshId: string, entries: MeshLedgerEnt
|
|
|
307
641
|
return { accepted: 0, skippedDuplicate, rejectedInvalid, entries: [] };
|
|
308
642
|
}
|
|
309
643
|
|
|
644
|
+
// G2: write to SQLite (primary runtime store); INSERT OR IGNORE dedups by id.
|
|
645
|
+
try {
|
|
646
|
+
MeshRuntimeStore.getInstance().importLedgerEntries(validEntries.map(e => ({
|
|
647
|
+
id: e.id,
|
|
648
|
+
meshId: e.meshId,
|
|
649
|
+
timestamp: e.timestamp,
|
|
650
|
+
kind: e.kind,
|
|
651
|
+
nodeId: e.nodeId ?? null,
|
|
652
|
+
sessionId: e.sessionId ?? null,
|
|
653
|
+
providerType: e.providerType ?? null,
|
|
654
|
+
payload: e.payload ?? {},
|
|
655
|
+
})));
|
|
656
|
+
} catch { /* best-effort; JSONL append below still records the entries */ }
|
|
657
|
+
|
|
310
658
|
try {
|
|
311
659
|
const lines = validEntries.map(e => JSON.stringify(e)).join('\n') + '\n';
|
|
312
660
|
appendFileSync(ledgerPath, lines, { encoding: 'utf-8', mode: 0o600 });
|
|
661
|
+
invalidateLedgerCache(meshId);
|
|
313
662
|
for (const entry of validEntries) {
|
|
314
663
|
meshLedgerEvents.emit('append', meshId, entry);
|
|
315
664
|
}
|
|
@@ -319,103 +668,151 @@ export function appendRemoteLedgerEntries(meshId: string, entries: MeshLedgerEnt
|
|
|
319
668
|
}
|
|
320
669
|
}
|
|
321
670
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
671
|
+
// ─── Ledger Read Cache ─────────────────────────
|
|
672
|
+
// Absorbs repeated reads within a single event-processing burst (e.g. agent:stopped
|
|
673
|
+
// triggers shouldSuppressIntentionalCleanupStop, findRecentTerminalLedgerEvidence,
|
|
674
|
+
// hasDispatchAfterTerminal, and getSessionRecoveryContext — all reading the same store).
|
|
675
|
+
// TTL is 100ms: short enough to stay current, long enough to cover one event cycle.
|
|
676
|
+
// Cache is invalidated on every write (append, remote import, compaction).
|
|
677
|
+
|
|
678
|
+
const ledgerReadCache = new Map<string, { entries: MeshLedgerEntry[]; cachedAt: number }>();
|
|
679
|
+
const LEDGER_CACHE_TTL_MS = 100;
|
|
680
|
+
|
|
681
|
+
function readLedgerFile(meshId: string): MeshLedgerEntry[] {
|
|
326
682
|
const filePath = getLedgerPath(meshId);
|
|
327
683
|
if (!existsSync(filePath)) return [];
|
|
328
|
-
|
|
329
684
|
let content: string;
|
|
685
|
+
try { content = readFileSync(filePath, 'utf-8'); } catch { return []; }
|
|
686
|
+
const entries: MeshLedgerEntry[] = [];
|
|
687
|
+
for (const line of content.split('\n')) {
|
|
688
|
+
if (!line.trim()) continue;
|
|
689
|
+
try {
|
|
690
|
+
const entry = JSON.parse(line) as MeshLedgerEntry;
|
|
691
|
+
if (entry.id && entry.kind) entries.push(entry);
|
|
692
|
+
} catch { /* skip malformed lines */ }
|
|
693
|
+
}
|
|
694
|
+
return entries;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
// ─── G2: One-Time JSONL → SQLite Import ─────────
|
|
698
|
+
// On the first SQLite read for a mesh (per store instance), import any legacy
|
|
699
|
+
// JSONL entries into mesh_event_ledger. INSERT OR IGNORE makes this idempotent:
|
|
700
|
+
// dual-written entries are skipped, only pre-cutover legacy entries are added.
|
|
701
|
+
// Keyed by the store instance so MeshRuntimeStore.resetForTests() (fresh DB)
|
|
702
|
+
// naturally re-imports.
|
|
703
|
+
|
|
704
|
+
let ledgerImportStoreRef: MeshRuntimeStore | undefined;
|
|
705
|
+
const ledgerImportDone = new Set<string>();
|
|
706
|
+
|
|
707
|
+
function ensureLedgerImported(store: MeshRuntimeStore, meshId: string): void {
|
|
708
|
+
if (ledgerImportStoreRef !== store) {
|
|
709
|
+
ledgerImportDone.clear();
|
|
710
|
+
ledgerImportStoreRef = store;
|
|
711
|
+
}
|
|
712
|
+
if (ledgerImportDone.has(meshId)) return;
|
|
713
|
+
ledgerImportDone.add(meshId);
|
|
714
|
+
const fileEntries = readLedgerFile(meshId);
|
|
715
|
+
if (fileEntries.length === 0) return;
|
|
330
716
|
try {
|
|
331
|
-
|
|
717
|
+
store.importLedgerEntries(fileEntries.map(e => ({
|
|
718
|
+
id: e.id,
|
|
719
|
+
meshId: e.meshId,
|
|
720
|
+
timestamp: e.timestamp,
|
|
721
|
+
kind: e.kind,
|
|
722
|
+
nodeId: e.nodeId ?? null,
|
|
723
|
+
sessionId: e.sessionId ?? null,
|
|
724
|
+
providerType: e.providerType ?? null,
|
|
725
|
+
payload: e.payload ?? {},
|
|
726
|
+
})));
|
|
727
|
+
} catch { /* import is best-effort; reads fall back to JSONL on store failure */ }
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
function readLedgerFromStore(meshId: string): MeshLedgerEntry[] {
|
|
731
|
+
const store = MeshRuntimeStore.getInstance();
|
|
732
|
+
ensureLedgerImported(store, meshId);
|
|
733
|
+
return store.readLedgerEntriesOrdered(meshId).map(r => ({
|
|
734
|
+
id: r.id,
|
|
735
|
+
meshId: r.meshId,
|
|
736
|
+
timestamp: r.timestamp,
|
|
737
|
+
kind: r.kind as MeshLedgerKind,
|
|
738
|
+
...(r.nodeId ? { nodeId: r.nodeId } : {}),
|
|
739
|
+
...(r.sessionId ? { sessionId: r.sessionId } : {}),
|
|
740
|
+
...(r.providerType ? { providerType: r.providerType } : {}),
|
|
741
|
+
payload: (r.payload && typeof r.payload === 'object' ? r.payload : {}) as Record<string, unknown>,
|
|
742
|
+
}));
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
function getCachedRawEntries(meshId: string): MeshLedgerEntry[] {
|
|
746
|
+
const now = Date.now();
|
|
747
|
+
const cached = ledgerReadCache.get(meshId);
|
|
748
|
+
if (cached && now - cached.cachedAt < LEDGER_CACHE_TTL_MS) return cached.entries;
|
|
749
|
+
let entries: MeshLedgerEntry[];
|
|
750
|
+
try {
|
|
751
|
+
// G2: SQLite mesh_event_ledger is the primary runtime read path.
|
|
752
|
+
entries = readLedgerFromStore(meshId);
|
|
332
753
|
} catch {
|
|
333
|
-
|
|
754
|
+
// Store unavailable — fall back to the JSONL export artifact.
|
|
755
|
+
entries = readLedgerFile(meshId);
|
|
334
756
|
}
|
|
757
|
+
ledgerReadCache.set(meshId, { entries, cachedAt: now });
|
|
758
|
+
return entries;
|
|
759
|
+
}
|
|
335
760
|
|
|
336
|
-
|
|
337
|
-
|
|
761
|
+
function invalidateLedgerCache(meshId: string): void {
|
|
762
|
+
ledgerReadCache.delete(meshId);
|
|
763
|
+
}
|
|
338
764
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
765
|
+
/**
|
|
766
|
+
* Test helper: clear all runtime ledger state for a mesh — SQLite rows, read
|
|
767
|
+
* cache, and the one-time import flag. JSONL files are the caller's concern.
|
|
768
|
+
*/
|
|
769
|
+
export function __clearMeshLedgerForTests(meshId: string): void {
|
|
770
|
+
try {
|
|
771
|
+
MeshRuntimeStore.getInstance().clearLedgerForMesh(meshId);
|
|
772
|
+
} catch { /* store unavailable — nothing to clear */ }
|
|
773
|
+
ledgerReadCache.delete(meshId);
|
|
774
|
+
ledgerImportDone.delete(meshId);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
/**
|
|
778
|
+
* Read ledger entries with optional filtering.
|
|
779
|
+
* G2: SQLite (mesh_event_ledger) is the primary read path; legacy JSONL is
|
|
780
|
+
* imported once per store instance and otherwise retained as an
|
|
781
|
+
* export/import/debug artifact only.
|
|
782
|
+
*/
|
|
783
|
+
export function readLedgerEntries(meshId: string, opts?: ReadLedgerOptions): MeshLedgerEntry[] {
|
|
784
|
+
let entries = getCachedRawEntries(meshId);
|
|
348
785
|
|
|
349
|
-
// Apply filters
|
|
350
786
|
if (opts?.since) {
|
|
351
787
|
const sinceDate = new Date(opts.since).getTime();
|
|
352
|
-
if (!isNaN(sinceDate))
|
|
353
|
-
entries = entries.filter(e => new Date(e.timestamp).getTime() >= sinceDate);
|
|
354
|
-
}
|
|
788
|
+
if (!isNaN(sinceDate)) entries = entries.filter(e => new Date(e.timestamp).getTime() >= sinceDate);
|
|
355
789
|
}
|
|
356
|
-
|
|
357
790
|
if (opts?.kind?.length) {
|
|
358
791
|
const kindSet = new Set(opts.kind);
|
|
359
792
|
entries = entries.filter(e => kindSet.has(e.kind));
|
|
360
793
|
}
|
|
361
|
-
|
|
362
|
-
// Apply tail (return last N entries)
|
|
363
794
|
if (opts?.tail && opts.tail > 0 && entries.length > opts.tail) {
|
|
364
795
|
entries = entries.slice(-opts.tail);
|
|
365
796
|
}
|
|
366
|
-
|
|
367
797
|
return entries;
|
|
368
798
|
}
|
|
369
799
|
|
|
370
800
|
/**
|
|
371
|
-
*
|
|
372
|
-
*
|
|
373
|
-
* remote daemons on demand without Cloud/D1 becoming a ledger data-plane.
|
|
374
|
-
*/
|
|
375
|
-
export function readLedgerSlice(meshId: string, opts?: ReadLedgerSliceOptions): MeshLedgerSlice {
|
|
376
|
-
const limit = clampLedgerSliceLimit(opts?.limit);
|
|
377
|
-
let entries = readLedgerEntries(meshId, { since: opts?.since, kind: opts?.kind });
|
|
378
|
-
const afterId = typeof opts?.afterId === 'string' && opts.afterId.trim() ? opts.afterId.trim() : null;
|
|
379
|
-
if (afterId) {
|
|
380
|
-
const index = entries.findIndex(entry => entry.id === afterId);
|
|
381
|
-
entries = index >= 0 ? entries.slice(index + 1) : entries;
|
|
382
|
-
}
|
|
383
|
-
const bounded = entries.slice(0, limit);
|
|
384
|
-
return {
|
|
385
|
-
protocol: 'adhdev.mesh.ledger.slice.v1',
|
|
386
|
-
meshId,
|
|
387
|
-
entries: bounded,
|
|
388
|
-
cursor: {
|
|
389
|
-
afterId,
|
|
390
|
-
nextAfterId: bounded.length ? bounded[bounded.length - 1].id : afterId,
|
|
391
|
-
limit,
|
|
392
|
-
hasMore: entries.length > bounded.length,
|
|
393
|
-
},
|
|
394
|
-
summary: getLedgerSummary(meshId),
|
|
395
|
-
sourceOfTruth: {
|
|
396
|
-
kind: 'local_jsonl',
|
|
397
|
-
path: getLedgerPath(meshId),
|
|
398
|
-
bounded: true,
|
|
399
|
-
maxLimit: MAX_LEDGER_SLICE_LIMIT,
|
|
400
|
-
},
|
|
401
|
-
};
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
/**
|
|
405
|
-
* Get a summary of mesh activity from the ledger.
|
|
801
|
+
* Build a ledger summary from pre-loaded entries. Used by both getLedgerSummary
|
|
802
|
+
* and readLedgerSlice so they share a single getCachedRawEntries() call.
|
|
406
803
|
*/
|
|
407
|
-
|
|
408
|
-
const
|
|
804
|
+
function buildLedgerSummary(meshId: string, entries: MeshLedgerEntry[]): MeshLedgerSummary {
|
|
805
|
+
const archived = readArchivedCounts(meshId);
|
|
409
806
|
const now = Date.now();
|
|
410
807
|
const recentFailureCutoff = now - RECENT_FAILURE_WINDOW_MS;
|
|
411
808
|
|
|
412
809
|
const summary: MeshLedgerSummary = {
|
|
413
810
|
meshId,
|
|
414
|
-
totalEntries: entries.length,
|
|
811
|
+
totalEntries: entries.length + archived.totalArchived,
|
|
415
812
|
taskDispatched: 0,
|
|
416
|
-
taskCompleted:
|
|
417
|
-
taskFailed:
|
|
418
|
-
taskStalled:
|
|
813
|
+
taskCompleted: archived.taskCompleted,
|
|
814
|
+
taskFailed: archived.taskFailed,
|
|
815
|
+
taskStalled: archived.taskStalled,
|
|
419
816
|
sessionLaunched: 0,
|
|
420
817
|
checkpointCreated: 0,
|
|
421
818
|
lastActivityAt: null,
|
|
@@ -450,6 +847,79 @@ export function getLedgerSummary(meshId: string): MeshLedgerSummary {
|
|
|
450
847
|
return summary;
|
|
451
848
|
}
|
|
452
849
|
|
|
850
|
+
/**
|
|
851
|
+
* Read a bounded, cursor-addressable ledger slice for local-first/P2P replication.
|
|
852
|
+
* The result is intentionally small and self-describing so coordinators can query
|
|
853
|
+
* remote daemons on demand without Cloud/D1 becoming a ledger data-plane.
|
|
854
|
+
*/
|
|
855
|
+
export function readLedgerSlice(meshId: string, opts?: ReadLedgerSliceOptions): MeshLedgerSlice {
|
|
856
|
+
const limit = clampLedgerSliceLimit(opts?.limit);
|
|
857
|
+
// Load raw entries once and share between filtering, pagination, and summary.
|
|
858
|
+
const rawEntries = getCachedRawEntries(meshId);
|
|
859
|
+
|
|
860
|
+
let entries: MeshLedgerEntry[] = rawEntries;
|
|
861
|
+
if (opts?.since) {
|
|
862
|
+
const sinceDate = new Date(opts.since).getTime();
|
|
863
|
+
if (!isNaN(sinceDate)) entries = entries.filter(e => new Date(e.timestamp).getTime() >= sinceDate);
|
|
864
|
+
}
|
|
865
|
+
if (opts?.kind?.length) {
|
|
866
|
+
const kindSet = new Set(opts.kind);
|
|
867
|
+
entries = entries.filter(e => kindSet.has(e.kind));
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
const afterId = typeof opts?.afterId === 'string' && opts.afterId.trim() ? opts.afterId.trim() : null;
|
|
871
|
+
if (afterId) {
|
|
872
|
+
const index = entries.findIndex(entry => entry.id === afterId);
|
|
873
|
+
entries = index >= 0 ? entries.slice(index + 1) : entries;
|
|
874
|
+
}
|
|
875
|
+
const bounded = entries.slice(0, limit);
|
|
876
|
+
return {
|
|
877
|
+
protocol: 'adhdev.mesh.ledger.slice.v1',
|
|
878
|
+
meshId,
|
|
879
|
+
entries: bounded,
|
|
880
|
+
cursor: {
|
|
881
|
+
afterId,
|
|
882
|
+
nextAfterId: bounded.length ? bounded[bounded.length - 1].id : afterId,
|
|
883
|
+
limit,
|
|
884
|
+
hasMore: entries.length > bounded.length,
|
|
885
|
+
},
|
|
886
|
+
summary: buildLedgerSummary(meshId, rawEntries),
|
|
887
|
+
sourceOfTruth: {
|
|
888
|
+
kind: 'local_jsonl',
|
|
889
|
+
path: getLedgerPath(meshId),
|
|
890
|
+
bounded: true,
|
|
891
|
+
maxLimit: MAX_LEDGER_SLICE_LIMIT,
|
|
892
|
+
},
|
|
893
|
+
};
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* G4: Read a bounded ledger slice from the SQLite mesh_event_ledger table.
|
|
898
|
+
* This is the preferred P2P reconcile read path; JSONL files are retained as
|
|
899
|
+
* export/import/debug/legacy artifacts only.
|
|
900
|
+
*
|
|
901
|
+
* Returns a shape structurally compatible with MeshLedgerSlice (minus the
|
|
902
|
+
* JSONL-specific `summary` and `sourceOfTruth.path` fields) so callers can
|
|
903
|
+
* pass it to buildMeshLedgerReplicaEvidence without modification.
|
|
904
|
+
*/
|
|
905
|
+
export function readLedgerSliceFromStore(meshId: string, opts?: ReadLedgerSliceOptions): ReturnType<typeof MeshRuntimeStore.prototype.readLedgerSlice> {
|
|
906
|
+
return MeshRuntimeStore.getInstance().readLedgerSlice(meshId, {
|
|
907
|
+
afterId: opts?.afterId,
|
|
908
|
+
since: opts?.since,
|
|
909
|
+
// ReadLedgerSliceOptions allows kind as array; SQLite path takes a single kind string.
|
|
910
|
+
// Pass first kind value if provided; callers needing multi-kind filtering should use readLedgerSlice (JSONL).
|
|
911
|
+
kind: opts?.kind?.length ? opts.kind[0] : undefined,
|
|
912
|
+
limit: opts?.limit,
|
|
913
|
+
});
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* Get a summary of mesh activity from the ledger.
|
|
918
|
+
*/
|
|
919
|
+
export function getLedgerSummary(meshId: string): MeshLedgerSummary {
|
|
920
|
+
return buildLedgerSummary(meshId, getCachedRawEntries(meshId));
|
|
921
|
+
}
|
|
922
|
+
|
|
453
923
|
// ─── Recovery Context ───────────────────────────
|
|
454
924
|
|
|
455
925
|
export interface SessionRecoveryContext {
|
|
@@ -484,46 +954,64 @@ export function getSessionRecoveryContext(
|
|
|
484
954
|
},
|
|
485
955
|
): SessionRecoveryContext {
|
|
486
956
|
const maxRetries = opts.maxRetries ?? 1;
|
|
487
|
-
|
|
957
|
+
// tail:500 is sufficient — task_dispatched is never archived (only terminal kinds are),
|
|
958
|
+
// so dispatch history is always present. The 30-min failure window means we never need
|
|
959
|
+
// more than a few dozen recent entries for consecutiveNodeFailures. Bounding to 500
|
|
960
|
+
// avoids a full O(n) scan for meshes with many historical entries.
|
|
961
|
+
const entries = readLedgerEntries(meshId, { tail: 500 });
|
|
488
962
|
|
|
489
|
-
//
|
|
963
|
+
// Single backward pass: find last task_dispatched AND count consecutive recent failures.
|
|
964
|
+
const now = Date.now();
|
|
965
|
+
const recentWindow = now - RECENT_FAILURE_WINDOW_MS;
|
|
490
966
|
let lastDispatch: MeshLedgerEntry | null = null;
|
|
967
|
+
let consecutiveNodeFailures = 0;
|
|
968
|
+
let failureCountDone = false;
|
|
491
969
|
for (let i = entries.length - 1; i >= 0; i--) {
|
|
492
970
|
const e = entries[i];
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
971
|
+
const ts = new Date(e.timestamp).getTime();
|
|
972
|
+
|
|
973
|
+
// Failure counting: scan until we exit the recent window or hit a chain-breaker
|
|
974
|
+
if (!failureCountDone) {
|
|
975
|
+
if (ts < recentWindow) {
|
|
976
|
+
failureCountDone = true;
|
|
977
|
+
} else if (opts.nodeId && e.nodeId !== opts.nodeId) {
|
|
978
|
+
// Entry for a different node — skip for failure counting but continue scanning for dispatch
|
|
979
|
+
} else if (e.kind === 'task_failed') {
|
|
980
|
+
if (!isIntentionalCleanupStopEntry(e)) consecutiveNodeFailures++;
|
|
981
|
+
} else if (e.kind === 'task_completed' || e.kind === 'task_dispatched') {
|
|
982
|
+
// A completion or new dispatch breaks the consecutive failure chain
|
|
983
|
+
failureCountDone = true;
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
// Dispatch search: find the last dispatch matching this session or node
|
|
988
|
+
if (lastDispatch === null && e.kind === 'task_dispatched') {
|
|
989
|
+
if (opts.sessionId && e.sessionId === opts.sessionId) { lastDispatch = e; }
|
|
990
|
+
else if (!opts.sessionId && opts.nodeId && e.nodeId === opts.nodeId) { lastDispatch = e; }
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
// Stop once both tasks are done
|
|
994
|
+
if (lastDispatch !== null && failureCountDone) break;
|
|
496
995
|
}
|
|
497
996
|
|
|
498
997
|
const lastTaskMessage = typeof lastDispatch?.payload?.message === 'string'
|
|
499
998
|
? lastDispatch.payload.message
|
|
500
999
|
: null;
|
|
501
1000
|
|
|
502
|
-
// Count
|
|
503
|
-
|
|
504
|
-
const recentWindow = now - RECENT_FAILURE_WINDOW_MS;
|
|
505
|
-
let consecutiveNodeFailures = 0;
|
|
506
|
-
for (let i = entries.length - 1; i >= 0; i--) {
|
|
507
|
-
const e = entries[i];
|
|
508
|
-
if (new Date(e.timestamp).getTime() < recentWindow) break;
|
|
509
|
-
if (opts.nodeId && e.nodeId !== opts.nodeId) continue;
|
|
510
|
-
if (e.kind === 'task_failed') {
|
|
511
|
-
if (isIntentionalCleanupStopEntry(e)) continue;
|
|
512
|
-
consecutiveNodeFailures++;
|
|
513
|
-
} else if (e.kind === 'task_completed' || e.kind === 'task_dispatched') {
|
|
514
|
-
// A completion or new dispatch breaks the consecutive failure chain
|
|
515
|
-
break;
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
// Count how many times the same task was attempted (match by message prefix)
|
|
1001
|
+
// Count how many times the same task was attempted.
|
|
1002
|
+
// Prefer exact taskId match (payload.taskId) to avoid 200-char prefix collisions.
|
|
520
1003
|
let taskAttemptCount = 0;
|
|
521
|
-
if (
|
|
522
|
-
const
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
if (e.payload
|
|
526
|
-
|
|
1004
|
+
if (lastDispatch) {
|
|
1005
|
+
const taskId = typeof lastDispatch.payload?.taskId === 'string' ? lastDispatch.payload.taskId : null;
|
|
1006
|
+
if (taskId) {
|
|
1007
|
+
for (const e of entries) {
|
|
1008
|
+
if (e.kind === 'task_dispatched' && e.payload?.taskId === taskId) taskAttemptCount++;
|
|
1009
|
+
}
|
|
1010
|
+
} else if (lastTaskMessage) {
|
|
1011
|
+
const prefix = lastTaskMessage.slice(0, 200);
|
|
1012
|
+
for (const e of entries) {
|
|
1013
|
+
if (e.kind === 'task_dispatched' && typeof e.payload?.message === 'string') {
|
|
1014
|
+
if (e.payload.message.startsWith(prefix)) taskAttemptCount++;
|
|
527
1015
|
}
|
|
528
1016
|
}
|
|
529
1017
|
}
|
|
@@ -573,7 +1061,8 @@ function rotateLedgerFile(meshId: string, currentPath: string): void {
|
|
|
573
1061
|
|
|
574
1062
|
try {
|
|
575
1063
|
renameSync(currentPath, getRotatedPath(meshId, index));
|
|
576
|
-
} catch {
|
|
1064
|
+
} catch (e: any) {
|
|
577
1065
|
// Rotation failed — the next append will just grow the file
|
|
1066
|
+
process.stderr.write(`[adhdev-mesh] Ledger rotation failed for mesh ${meshId}: ${e?.message || e}. File will continue to grow.\n`);
|
|
578
1067
|
}
|
|
579
1068
|
}
|