@adhdev/daemon-core 0.9.82-rc.15 → 0.9.82-rc.152
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/process-hardening.d.ts +50 -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 +5 -1
- package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
- package/dist/cli-adapters/cli-state-engine.d.ts +178 -0
- package/dist/cli-adapters/provider-cli-adapter.d.ts +104 -63
- package/dist/cli-adapters/provider-cli-parse.d.ts +4 -0
- package/dist/cli-adapters/provider-cli-shared.d.ts +27 -0
- package/dist/commands/handler.d.ts +66 -0
- package/dist/commands/router.d.ts +22 -0
- package/dist/config/chat-history.d.ts +5 -0
- package/dist/config/config.d.ts +5 -0
- package/dist/config/mesh-config.d.ts +68 -1
- package/dist/git/git-commands.d.ts +5 -1
- package/dist/index.d.ts +20 -6
- package/dist/index.js +13153 -3031
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13099 -3023
- 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/mesh/beads-db.d.ts +72 -0
- package/dist/mesh/contracts.d.ts +164 -0
- package/dist/mesh/coordinator-registry.d.ts +25 -0
- package/dist/mesh/mesh-active-work.d.ts +90 -0
- package/dist/mesh/mesh-events.d.ts +77 -5
- package/dist/mesh/mesh-fast-forward.d.ts +39 -0
- package/dist/mesh/mesh-host-ownership.d.ts +9 -0
- package/dist/mesh/mesh-ledger.d.ts +58 -1
- package/dist/mesh/mesh-refine-status.d.ts +26 -0
- package/dist/mesh/mesh-work-queue.d.ts +44 -5
- package/dist/mesh/preview-freshness.d.ts +18 -0
- package/dist/mesh/refine-config.d.ts +193 -0
- package/dist/mesh/worktree-bootstrap-config.d.ts +113 -0
- package/dist/providers/approval-utils.d.ts +9 -0
- package/dist/providers/cli-provider-instance.d.ts +6 -1
- package/dist/providers/contracts.d.ts +50 -5
- 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/index.d.ts +11 -0
- package/dist/providers/provider-loader.d.ts +19 -1
- 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 +85 -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 +64 -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 +169 -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/transcript-v2.d.ts +176 -0
- package/dist/repo-mesh-types.d.ts +67 -0
- package/dist/shared-types.d.ts +12 -0
- package/dist/status/reporter.d.ts +2 -0
- package/dist/status/snapshot.d.ts +1 -0
- package/dist/types.d.ts +5 -0
- package/package.json +6 -2
- package/src/boot/daemon-lifecycle.ts +17 -10
- package/src/boot/process-hardening.ts +89 -0
- package/src/chat/source-machine.ts +534 -0
- package/src/chat/source-resolver.ts +0 -0
- package/src/chat/subscription-updates.ts +14 -1
- package/src/cli-adapter-types.d.ts +1 -0
- package/src/cli-adapter-types.ts +3 -1
- package/src/cli-adapters/cli-script-runner.ts +421 -0
- package/src/cli-adapters/cli-state-engine.ts +1086 -0
- package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +664 -1137
- 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 +3 -1
- package/src/cli-adapters/provider-cli-shared.d.ts +2 -0
- package/src/cli-adapters/provider-cli-shared.ts +57 -11
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +17 -1
- package/src/cli-adapters/terminal-backends/xterm-backend.ts +8 -1
- package/src/commands/chat-commands.ts +1451 -52
- package/src/commands/cli-manager.ts +184 -3
- package/src/commands/handler.ts +547 -2
- package/src/commands/mesh-coordinator.ts +13 -143
- package/src/commands/router.ts +3273 -428
- package/src/config/chat-history.ts +79 -24
- package/src/config/config.ts +12 -0
- package/src/config/mesh-config.ts +249 -2
- package/src/config/recent-activity.ts +8 -2
- package/src/daemon/dev-cli-debug.ts +10 -1
- package/src/detection/ide-detector.ts +26 -16
- package/src/git/git-commands.ts +17 -5
- package/src/git/git-worktree.ts +8 -1
- package/src/index.ts +72 -5
- 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/logger.ts +2 -1
- package/src/mesh/beads-db.ts +479 -0
- package/src/mesh/contracts.ts +329 -0
- package/src/mesh/coordinator-prompt.ts +40 -22
- package/src/mesh/coordinator-registry.ts +75 -0
- package/src/mesh/mesh-active-work.ts +437 -0
- package/src/mesh/mesh-events.ts +820 -61
- package/src/mesh/mesh-fast-forward.ts +430 -0
- package/src/mesh/mesh-host-ownership.ts +73 -0
- package/src/mesh/mesh-ledger.ts +457 -104
- package/src/mesh/mesh-refine-status.ts +144 -0
- package/src/mesh/mesh-work-queue.ts +216 -158
- package/src/mesh/preview-freshness.ts +118 -0
- package/src/mesh/refine-config.ts +366 -0
- package/src/mesh/worktree-bootstrap-config.ts +247 -0
- package/src/providers/approval-utils.ts +39 -5
- package/src/providers/chat-message-normalization.ts +4 -11
- package/src/providers/cli-provider-instance.ts +380 -44
- package/src/providers/contracts.ts +52 -5
- package/src/providers/ide-provider-instance.ts +17 -3
- 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 +419 -0
- package/src/providers/native-history/index.ts +23 -0
- package/src/providers/provider-loader.ts +294 -28
- package/src/providers/provider-schema.ts +31 -13
- 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 +262 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval.ts +245 -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 +444 -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 +119 -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 +210 -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/transcript-v2.ts +567 -0
- package/src/providers/version-archive.ts +38 -20
- package/src/repo-mesh-types.ts +77 -0
- package/src/shared-types.ts +9 -0
- package/src/status/builders.ts +23 -6
- package/src/status/reporter.ts +15 -0
- package/src/status/snapshot.ts +35 -11
- package/src/system/host-memory.ts +29 -12
- package/src/types.ts +5 -0
package/src/commands/router.ts
CHANGED
|
@@ -38,14 +38,37 @@ import { createInteractionId, getRecentDebugTrace, recordDebugTrace } from '../l
|
|
|
38
38
|
import { getSessionHostSurfaceKind, partitionSessionHostRecords } from '../session-host/runtime-surface.js';
|
|
39
39
|
import { createHermesManualMeshCoordinatorSetup, resolveMeshCoordinatorSetup } from './mesh-coordinator.js';
|
|
40
40
|
import { buildSessionEntries } from '../status/builders.js';
|
|
41
|
-
import {
|
|
41
|
+
import { registerMeshCoordinator } from '../mesh/coordinator-registry.js';
|
|
42
|
+
import { handleMeshForwardEvent, drainPendingMeshCoordinatorEvents, getPendingMeshCoordinatorEvents, queuePendingMeshCoordinatorEvent } from '../mesh/mesh-events.js';
|
|
43
|
+
import { buildMeshHostRequiredFailure, normalizeMeshDaemonRole, resolveMeshHostStatus } from '../mesh/mesh-host-ownership.js';
|
|
44
|
+
import { fastForwardMeshNode } from '../mesh/mesh-fast-forward.js';
|
|
45
|
+
import { buildPreviewFreshness } from '../mesh/preview-freshness.js';
|
|
46
|
+
import { buildMeshAsyncRefineJobs } from '../mesh/mesh-refine-status.js';
|
|
47
|
+
import {
|
|
48
|
+
MESH_REFINE_CONFIG_LOCATIONS,
|
|
49
|
+
MESH_REFINE_CONFIG_SCHEMA,
|
|
50
|
+
loadMeshRefineConfig,
|
|
51
|
+
resolveMeshRefineValidationPlan,
|
|
52
|
+
suggestMeshRefineConfig,
|
|
53
|
+
validateMeshRefineConfig,
|
|
54
|
+
type MeshRefineValidationCommandPlan,
|
|
55
|
+
} from '../mesh/refine-config.js';
|
|
56
|
+
import {
|
|
57
|
+
MESH_WORKTREE_BOOTSTRAP_CONFIG_LOCATIONS,
|
|
58
|
+
MESH_WORKTREE_BOOTSTRAP_CONFIG_SCHEMA,
|
|
59
|
+
loadMeshWorktreeBootstrapConfig,
|
|
60
|
+
runMeshWorktreeBootstrap,
|
|
61
|
+
type WorktreeBootstrapState,
|
|
62
|
+
} from '../mesh/worktree-bootstrap-config.js';
|
|
42
63
|
import { buildMachineInfo, buildStatusSnapshot } from '../status/snapshot.js';
|
|
43
64
|
import { getSessionCompletionMarker } from '../status/snapshot.js';
|
|
44
65
|
import { execNpmCommandSync, resolveCurrentGlobalInstallSurface, spawnDetachedDaemonUpgradeHelper } from './upgrade-helper.js';
|
|
66
|
+
import { getMeshQueueRevision } from '../mesh/mesh-work-queue.js';
|
|
45
67
|
import type { RepoMeshSessionCleanupMode } from '../repo-mesh-types.js';
|
|
46
|
-
import { homedir } from 'os';
|
|
47
|
-
import { join as pathJoin, resolve as pathResolve } from 'path';
|
|
68
|
+
import { homedir, hostname as osHostname } from 'os';
|
|
69
|
+
import { basename as pathBasename, join as pathJoin, resolve as pathResolve } from 'path';
|
|
48
70
|
import * as fs from 'fs';
|
|
71
|
+
import { execFileSync } from 'node:child_process';
|
|
49
72
|
|
|
50
73
|
type ReleaseChannel = 'stable' | 'preview';
|
|
51
74
|
const CHANNEL_NPM_TAG: Record<ReleaseChannel, 'latest' | 'next'> = { stable: 'latest', preview: 'next' };
|
|
@@ -114,14 +137,95 @@ function readBooleanValue(...values: unknown[]): boolean | undefined {
|
|
|
114
137
|
return undefined;
|
|
115
138
|
}
|
|
116
139
|
|
|
117
|
-
function
|
|
140
|
+
function summarizeRepoMeshDebugGit(git: unknown): Record<string, unknown> | null {
|
|
141
|
+
const record = readObjectRecord(git);
|
|
142
|
+
if (!Object.keys(record).length) return null;
|
|
143
|
+
const submodules = Array.isArray(record.submodules)
|
|
144
|
+
? record.submodules.map((entry: any) => ({
|
|
145
|
+
path: readStringValue(entry?.path) ?? null,
|
|
146
|
+
commit: readStringValue(entry?.commit)?.slice(0, 12) ?? null,
|
|
147
|
+
dirty: readBooleanValue(entry?.dirty) ?? false,
|
|
148
|
+
outOfSync: readBooleanValue(entry?.outOfSync, entry?.out_of_sync) ?? false,
|
|
149
|
+
}))
|
|
150
|
+
: [];
|
|
151
|
+
return {
|
|
152
|
+
isGitRepo: readBooleanValue(record.isGitRepo),
|
|
153
|
+
workspace: readStringValue(record.workspace) ?? null,
|
|
154
|
+
repoRoot: readStringValue(record.repoRoot, record.repo_root) ?? null,
|
|
155
|
+
branch: readStringValue(record.branch) ?? null,
|
|
156
|
+
upstream: readStringValue(record.upstream) ?? null,
|
|
157
|
+
upstreamStatus: readStringValue(record.upstreamStatus, record.upstream_status) ?? null,
|
|
158
|
+
headCommit: readStringValue(record.headCommit, record.head_commit)?.slice(0, 12) ?? null,
|
|
159
|
+
ahead: readNumberValue(record.ahead) ?? null,
|
|
160
|
+
behind: readNumberValue(record.behind) ?? null,
|
|
161
|
+
dirtyCounts: {
|
|
162
|
+
staged: readNumberValue(record.staged) ?? 0,
|
|
163
|
+
modified: readNumberValue(record.modified) ?? 0,
|
|
164
|
+
untracked: readNumberValue(record.untracked) ?? 0,
|
|
165
|
+
deleted: readNumberValue(record.deleted) ?? 0,
|
|
166
|
+
renamed: readNumberValue(record.renamed) ?? 0,
|
|
167
|
+
},
|
|
168
|
+
lastCheckedAt: readNumberValue(record.lastCheckedAt, record.last_checked_at) ?? null,
|
|
169
|
+
submoduleCount: submodules.length,
|
|
170
|
+
submodules,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function summarizeRepoMeshStatusDebug(status: any): Record<string, unknown> {
|
|
175
|
+
const nodes = Array.isArray(status?.nodes) ? status.nodes : [];
|
|
176
|
+
return {
|
|
177
|
+
success: status?.success,
|
|
178
|
+
meshId: readStringValue(status?.meshId, status?.mesh_id) ?? null,
|
|
179
|
+
refreshedAt: readStringValue(status?.refreshedAt, status?.refreshed_at) ?? null,
|
|
180
|
+
sourceOfTruth: status?.sourceOfTruth ?? null,
|
|
181
|
+
branchConvergenceSummary: status?.branchConvergenceSummary ?? status?.branch_convergence_summary ?? null,
|
|
182
|
+
nodeCount: nodes.length,
|
|
183
|
+
nodes: nodes.map((node: any) => ({
|
|
184
|
+
nodeId: readStringValue(node?.nodeId, node?.id) ?? null,
|
|
185
|
+
daemonId: readStringValue(node?.daemonId, node?.daemon_id) ?? null,
|
|
186
|
+
workspace: readStringValue(node?.workspace, node?.git?.workspace) ?? null,
|
|
187
|
+
health: readStringValue(node?.health) ?? null,
|
|
188
|
+
machineStatus: readStringValue(node?.machineStatus, node?.machine_status) ?? null,
|
|
189
|
+
connection: node?.connection && typeof node.connection === 'object' ? {
|
|
190
|
+
state: readStringValue(node.connection.state) ?? null,
|
|
191
|
+
transport: readStringValue(node.connection.transport) ?? null,
|
|
192
|
+
source: readStringValue(node.connection.source) ?? null,
|
|
193
|
+
reported: readBooleanValue(node.connection.reported) ?? null,
|
|
194
|
+
} : null,
|
|
195
|
+
gitProbePending: node?.gitProbePending === true,
|
|
196
|
+
launchReady: node?.launchReady === true,
|
|
197
|
+
git: summarizeRepoMeshDebugGit(node?.git),
|
|
198
|
+
branchConvergence: node?.branchConvergence ?? node?.branch_convergence ?? null,
|
|
199
|
+
})),
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function logRepoMeshStatusDebug(event: string, fields: Record<string, unknown>): void {
|
|
204
|
+
try {
|
|
205
|
+
LOG.info('MeshStatusDebug', `[RepoMeshStatusDebug] ${JSON.stringify({ event, ...fields })}`);
|
|
206
|
+
} catch {
|
|
207
|
+
LOG.info('MeshStatusDebug', `[RepoMeshStatusDebug] ${event}`);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
function joinRepoPath(root: string | undefined, relativePath: string | undefined): string | undefined {
|
|
212
|
+
const normalizedRoot = typeof root === 'string' ? root.trim().replace(/[\\/]+$/, '') : '';
|
|
213
|
+
const normalizedPath = typeof relativePath === 'string' ? relativePath.trim() : '';
|
|
214
|
+
if (!normalizedPath) return undefined;
|
|
215
|
+
if (/^(?:[A-Za-z]:[\\/]|\/)/.test(normalizedPath)) return normalizedPath;
|
|
216
|
+
if (!normalizedRoot) return undefined;
|
|
217
|
+
return `${normalizedRoot}/${normalizedPath.replace(/^[\\/]+/, '')}`;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
function readGitSubmodules(value: unknown, parentRepoRoot?: string): GitSubmoduleStatus[] | undefined {
|
|
118
221
|
if (!Array.isArray(value)) return undefined;
|
|
119
222
|
const submodules = value
|
|
120
223
|
.map(entry => {
|
|
121
224
|
const submodule = readObjectRecord(entry);
|
|
122
225
|
const path = readStringValue(submodule.path);
|
|
123
226
|
const commit = readStringValue(submodule.commit);
|
|
124
|
-
const repoPath = readStringValue(submodule.repoPath, submodule.repo_root)
|
|
227
|
+
const repoPath = readStringValue(submodule.repoPath, submodule.repo_root)
|
|
228
|
+
?? joinRepoPath(parentRepoRoot, path);
|
|
125
229
|
if (!path || !commit || !repoPath) return null;
|
|
126
230
|
return {
|
|
127
231
|
path,
|
|
@@ -137,60 +241,146 @@ function readGitSubmodules(value: unknown): GitSubmoduleStatus[] | undefined {
|
|
|
137
241
|
return submodules.length > 0 ? submodules : undefined;
|
|
138
242
|
}
|
|
139
243
|
|
|
140
|
-
function
|
|
141
|
-
const
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
244
|
+
function buildMeshNodeDisplayLabel(node: Record<string, unknown>, nodeId: string, providerPriority: string[]): string {
|
|
245
|
+
const explicit = readStringValue(node.machineLabel, node.machine_label, node.machineNickname, node.machine_nickname, node.alias);
|
|
246
|
+
if (explicit) return explicit;
|
|
247
|
+
const workspace = readStringValue(node.workspace, node.repoRoot, node.repo_root);
|
|
248
|
+
const workspaceName = workspace ? pathBasename(workspace) : undefined;
|
|
249
|
+
const host = readStringValue(node.machineName, node.machine_name, node.hostname, node.host, node.daemonId, node.daemon_id, node.machineId, node.machine_id);
|
|
250
|
+
const provider = providerPriority[0] || (Array.isArray(node.providers) ? readStringValue(...node.providers) : undefined);
|
|
251
|
+
const parts = [workspaceName, host, provider].filter(Boolean);
|
|
252
|
+
if (parts.length > 0) return parts.join(' · ');
|
|
253
|
+
return nodeId || 'unidentified mesh node';
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function normalizeMeshHostname(value: unknown): string | undefined {
|
|
257
|
+
const hostname = readStringValue(value);
|
|
258
|
+
if (!hostname) return undefined;
|
|
259
|
+
return hostname.toLowerCase().replace(/\.$/, '');
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function readMeshNodeMachineId(node: Record<string, unknown>): string | undefined {
|
|
263
|
+
return readStringValue(
|
|
264
|
+
node.machineId,
|
|
265
|
+
node.machine_id,
|
|
266
|
+
readObjectRecord(node.machine)?.id,
|
|
267
|
+
readObjectRecord(node.machine)?.machineId,
|
|
268
|
+
readObjectRecord(node.lastProbe)?.machineId,
|
|
269
|
+
readObjectRecord(node.last_probe)?.machine_id,
|
|
270
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.id,
|
|
271
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.machineId,
|
|
272
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.id,
|
|
273
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.machine_id,
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
function readMeshNodeDaemonId(node: Record<string, unknown>): string | undefined {
|
|
278
|
+
return readStringValue(
|
|
279
|
+
node.daemonId,
|
|
280
|
+
node.daemon_id,
|
|
281
|
+
readObjectRecord(node.machine)?.daemonId,
|
|
282
|
+
readObjectRecord(node.machine)?.daemon_id,
|
|
283
|
+
readObjectRecord(node.lastProbe)?.daemonId,
|
|
284
|
+
readObjectRecord(node.last_probe)?.daemon_id,
|
|
285
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.daemonId,
|
|
286
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.daemon_id,
|
|
287
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.daemonId,
|
|
288
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.daemon_id,
|
|
289
|
+
);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
function readMeshNodeHostname(node: Record<string, unknown>): string | undefined {
|
|
293
|
+
return readStringValue(
|
|
294
|
+
node.hostname,
|
|
295
|
+
node.host,
|
|
296
|
+
node.machineHostname,
|
|
297
|
+
node.machine_hostname,
|
|
298
|
+
readObjectRecord(node.machine)?.hostname,
|
|
299
|
+
readObjectRecord(node.machine)?.host,
|
|
300
|
+
readObjectRecord(node.lastProbe)?.hostname,
|
|
301
|
+
readObjectRecord(node.last_probe)?.hostname,
|
|
302
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.hostname,
|
|
303
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.hostname,
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
function readMeshNodeDisplayMachineName(node: Record<string, unknown>): string | undefined {
|
|
308
|
+
return readStringValue(
|
|
309
|
+
node.machineName,
|
|
310
|
+
node.machine_name,
|
|
311
|
+
node.machineLabel,
|
|
312
|
+
node.machine_label,
|
|
313
|
+
node.machineNickname,
|
|
314
|
+
node.machine_nickname,
|
|
315
|
+
node.alias,
|
|
316
|
+
readObjectRecord(node.machine)?.name,
|
|
317
|
+
readObjectRecord(node.machine)?.displayName,
|
|
318
|
+
readObjectRecord(node.machine)?.display_name,
|
|
319
|
+
readObjectRecord(node.lastProbe)?.machineName,
|
|
320
|
+
readObjectRecord(node.last_probe)?.machine_name,
|
|
321
|
+
readObjectRecord(readObjectRecord(node.lastProbe)?.machine)?.name,
|
|
322
|
+
readObjectRecord(readObjectRecord(node.last_probe)?.machine)?.name,
|
|
323
|
+
readMeshNodeHostname(node),
|
|
324
|
+
);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
function compactMeshIdentityEvidence(value: string | undefined): string | undefined {
|
|
328
|
+
if (!value) return undefined;
|
|
329
|
+
return value.length > 24 ? `${value.slice(0, 12)}…${value.slice(-8)}` : value;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
function buildMeshNodeMachineIdentity(node: Record<string, unknown>, opts: {
|
|
333
|
+
localMachineId?: string;
|
|
334
|
+
localDaemonId?: string;
|
|
335
|
+
coordinatorHostname?: string;
|
|
336
|
+
isSelfNode?: boolean;
|
|
337
|
+
}): Record<string, unknown> {
|
|
338
|
+
const machineId = readMeshNodeMachineId(node);
|
|
339
|
+
const daemonId = readMeshNodeDaemonId(node);
|
|
340
|
+
const hostname = readMeshNodeHostname(node);
|
|
341
|
+
const machineName = readMeshNodeDisplayMachineName(node);
|
|
342
|
+
const coordinatorHostname = readStringValue(opts.coordinatorHostname);
|
|
343
|
+
const machineIdMatches = Boolean(opts.localMachineId && machineId && opts.localMachineId === machineId);
|
|
344
|
+
const daemonIdMatches = Boolean(opts.localDaemonId && daemonId && opts.localDaemonId === daemonId);
|
|
345
|
+
const hostnameMatches = Boolean(
|
|
346
|
+
normalizeMeshHostname(hostname)
|
|
347
|
+
&& normalizeMeshHostname(coordinatorHostname)
|
|
348
|
+
&& normalizeMeshHostname(hostname) === normalizeMeshHostname(coordinatorHostname),
|
|
349
|
+
);
|
|
350
|
+
const sameMachine = opts.isSelfNode === true || machineIdMatches || daemonIdMatches || hostnameMatches;
|
|
351
|
+
const evidence: string[] = [];
|
|
352
|
+
for (const [label, value] of [['machineName', machineName], ['hostname', hostname], ['machineId', machineId], ['daemonId', daemonId]] as const) {
|
|
353
|
+
const compact = compactMeshIdentityEvidence(value);
|
|
354
|
+
if (compact) evidence.push(`${label}:${compact}`);
|
|
174
355
|
}
|
|
356
|
+
const locality = sameMachine ? 'same_machine' : (evidence.length > 0 ? 'remote_known' : 'remote_or_unknown');
|
|
357
|
+
const localityReason = sameMachine
|
|
358
|
+
? (machineIdMatches ? 'matched coordinator machine id'
|
|
359
|
+
: daemonIdMatches ? 'matched coordinator daemon id'
|
|
360
|
+
: hostnameMatches ? 'matched coordinator hostname'
|
|
361
|
+
: 'selected coordinator node')
|
|
362
|
+
: evidence.length > 0
|
|
363
|
+
? `known remote/other machine identity; no local coordinator match (${evidence.join(', ')})`
|
|
364
|
+
: 'no useful machine identity evidence available';
|
|
365
|
+
return {
|
|
366
|
+
daemonId,
|
|
367
|
+
machineId,
|
|
368
|
+
hostname,
|
|
369
|
+
machineName,
|
|
370
|
+
displayName: machineName || hostname || daemonId || machineId,
|
|
371
|
+
coordinatorHostname,
|
|
372
|
+
sameMachine,
|
|
373
|
+
locality,
|
|
374
|
+
localityReason,
|
|
375
|
+
identityEvidence: evidence,
|
|
376
|
+
};
|
|
377
|
+
}
|
|
175
378
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
const probeGit = readObjectRecord(rawProbe.git);
|
|
182
|
-
const probeGitResult = readObjectRecord(probeGit.result);
|
|
183
|
-
const probeDirectStatus = readObjectRecord(probeGit.status);
|
|
184
|
-
const probeNestedStatus = readObjectRecord(probeGitResult.status);
|
|
185
|
-
const status = Object.keys(directStatus).length
|
|
186
|
-
? directStatus
|
|
187
|
-
: Object.keys(nestedStatus).length
|
|
188
|
-
? nestedStatus
|
|
189
|
-
: Object.keys(probeDirectStatus).length
|
|
190
|
-
? probeDirectStatus
|
|
191
|
-
: Object.keys(probeNestedStatus).length
|
|
192
|
-
? probeNestedStatus
|
|
193
|
-
: {};
|
|
379
|
+
function normalizeInlineMeshGitStatus(
|
|
380
|
+
status: Record<string, unknown>,
|
|
381
|
+
node: any,
|
|
382
|
+
options?: { lastCheckedAt?: number },
|
|
383
|
+
): Record<string, unknown> | undefined {
|
|
194
384
|
const isGitRepo = readBooleanValue(status.isGitRepo);
|
|
195
385
|
if (!Object.keys(status).length || isGitRepo === undefined) return undefined;
|
|
196
386
|
const conflictFiles = Array.isArray(status.conflictFiles)
|
|
@@ -198,15 +388,20 @@ function buildCachedInlineMeshGitStatus(node: any): Record<string, unknown> | un
|
|
|
198
388
|
: [];
|
|
199
389
|
const conflictCount = readNumberValue(status.conflicts) ?? conflictFiles.length;
|
|
200
390
|
const hasConflicts = readBooleanValue(status.hasConflicts) ?? conflictCount > 0;
|
|
201
|
-
const
|
|
391
|
+
const repoRoot = readStringValue(status.repoRoot, status.repo_root, node?.repoRoot, node?.repo_root, status.workspace, node?.workspace) || undefined;
|
|
392
|
+
const submodules = readGitSubmodules(status.submodules, repoRoot);
|
|
202
393
|
return {
|
|
203
394
|
workspace: readStringValue(status.workspace, node?.workspace) || '',
|
|
204
|
-
repoRoot:
|
|
395
|
+
repoRoot: repoRoot ?? null,
|
|
205
396
|
isGitRepo,
|
|
206
397
|
branch: readStringValue(status.branch) ?? null,
|
|
207
398
|
headCommit: readStringValue(status.headCommit) ?? null,
|
|
208
399
|
headMessage: readStringValue(status.headMessage) ?? null,
|
|
209
400
|
upstream: readStringValue(status.upstream) ?? null,
|
|
401
|
+
upstreamStatus: readStringValue(status.upstreamStatus, status.upstream_status)
|
|
402
|
+
?? (readStringValue(status.upstream) ? 'unchecked' : 'no_upstream'),
|
|
403
|
+
upstreamFetchedAt: readNumberValue(status.upstreamFetchedAt, status.upstream_fetched_at),
|
|
404
|
+
upstreamFetchError: readStringValue(status.upstreamFetchError, status.upstream_fetch_error),
|
|
210
405
|
ahead: readNumberValue(status.ahead) ?? 0,
|
|
211
406
|
behind: readNumberValue(status.behind) ?? 0,
|
|
212
407
|
staged: readNumberValue(status.staged) ?? 0,
|
|
@@ -217,14 +412,247 @@ function buildCachedInlineMeshGitStatus(node: any): Record<string, unknown> | un
|
|
|
217
412
|
hasConflicts,
|
|
218
413
|
conflictFiles,
|
|
219
414
|
stashCount: readNumberValue(status.stashCount) ?? 0,
|
|
220
|
-
lastCheckedAt: Date.now(),
|
|
415
|
+
lastCheckedAt: options?.lastCheckedAt ?? readNumberValue(status.lastCheckedAt) ?? Date.now(),
|
|
221
416
|
...(submodules ? { submodules } : {}),
|
|
222
417
|
};
|
|
223
418
|
}
|
|
224
419
|
|
|
420
|
+
function scoreInlineMeshGitStatus(git: Record<string, unknown> | undefined): number {
|
|
421
|
+
if (!git) return Number.NEGATIVE_INFINITY;
|
|
422
|
+
let score = 0;
|
|
423
|
+
if (readBooleanValue(git.isGitRepo) === true) score += 50;
|
|
424
|
+
if (readBooleanValue(git.isGitRepo) === false) score -= 10;
|
|
425
|
+
if (readStringValue(git.branch)) score += 20;
|
|
426
|
+
if (readStringValue(git.headCommit)) score += 20;
|
|
427
|
+
if (readStringValue(git.upstream)) score += 10;
|
|
428
|
+
if (readStringValue(git.upstreamStatus)) score += 5;
|
|
429
|
+
if (readNumberValue(git.ahead) !== undefined) score += 2;
|
|
430
|
+
if (readNumberValue(git.behind) !== undefined) score += 2;
|
|
431
|
+
if (Array.isArray(git.submodules) && git.submodules.length > 0) score += 4 + git.submodules.length;
|
|
432
|
+
if (readStringValue(git.error)) score -= 20;
|
|
433
|
+
return score;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
function buildInlineMeshTransitGitStatus(node: any): Record<string, unknown> | undefined {
|
|
437
|
+
const rawGit = readObjectRecord(node?.lastGit ?? node?.last_git);
|
|
438
|
+
const gitResult = readObjectRecord(rawGit.result);
|
|
439
|
+
const directStatus = readObjectRecord(rawGit.status);
|
|
440
|
+
const nestedStatus = readObjectRecord(gitResult.status);
|
|
441
|
+
const rawProbe = readObjectRecord(node?.lastProbe ?? node?.last_probe);
|
|
442
|
+
const probeGit = readObjectRecord(rawProbe.git);
|
|
443
|
+
const probeGitResult = readObjectRecord(probeGit.result);
|
|
444
|
+
const probeDirectStatus = readObjectRecord(probeGit.status);
|
|
445
|
+
const probeNestedStatus = readObjectRecord(probeGitResult.status);
|
|
446
|
+
const candidates = [directStatus, nestedStatus, probeDirectStatus, probeNestedStatus];
|
|
447
|
+
let best: { git: Record<string, unknown>; score: number } | null = null;
|
|
448
|
+
for (const status of candidates) {
|
|
449
|
+
const normalized = normalizeInlineMeshGitStatus(status, node, { lastCheckedAt: Date.now() });
|
|
450
|
+
if (!normalized) continue;
|
|
451
|
+
const score = scoreInlineMeshGitStatus(normalized);
|
|
452
|
+
if (!best || score > best.score) best = { git: normalized, score };
|
|
453
|
+
}
|
|
454
|
+
return best?.git;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
function shouldRefreshStalePendingAggregate(snapshot: any, options?: { requireDirectPeerTruth?: boolean }): boolean {
|
|
458
|
+
if (options?.requireDirectPeerTruth !== true || !Array.isArray(snapshot?.nodes)) return false;
|
|
459
|
+
return snapshot.nodes.some((node: any) => {
|
|
460
|
+
if (node?.gitProbePending !== true) return false;
|
|
461
|
+
const git = readObjectRecord(node?.git);
|
|
462
|
+
return !readBooleanValue(git.isGitRepo) && !readStringValue(git.branch, git.headCommit, git.upstream);
|
|
463
|
+
});
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
function buildLivePeerGitConnection(connection: Record<string, unknown>, timestamp = new Date().toISOString()): Record<string, unknown> {
|
|
467
|
+
const source = readStringValue(connection.source);
|
|
468
|
+
const transport = readStringValue(connection.transport);
|
|
469
|
+
return {
|
|
470
|
+
...connection,
|
|
471
|
+
perspective: readStringValue(connection.perspective) ?? 'selected_coordinator',
|
|
472
|
+
source: source && source !== 'not_reported' ? source : 'mesh_peer_status',
|
|
473
|
+
state: 'connected',
|
|
474
|
+
transport: transport && transport !== 'unknown' ? transport : 'direct',
|
|
475
|
+
reported: true,
|
|
476
|
+
reason: 'Live peer git snapshot reported by the selected coordinator.',
|
|
477
|
+
lastStateChangeAt: readStringValue(connection.lastStateChangeAt) ?? timestamp,
|
|
478
|
+
};
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
function recordInlineMeshDirectGitTruth(
|
|
482
|
+
node: any,
|
|
483
|
+
git: Record<string, unknown>,
|
|
484
|
+
source: 'selected_coordinator_local_git' | 'selected_coordinator_mesh_p2p_git',
|
|
485
|
+
): void {
|
|
486
|
+
if (!node || typeof node !== 'object' || Array.isArray(node)) return;
|
|
487
|
+
const checkedAt = readNumberValue(git.lastCheckedAt) ?? Date.now();
|
|
488
|
+
const updatedAt = new Date(checkedAt).toISOString();
|
|
489
|
+
const nextGit: Record<string, unknown> = {
|
|
490
|
+
...git,
|
|
491
|
+
lastCheckedAt: checkedAt,
|
|
492
|
+
};
|
|
493
|
+
node.lastGit = {
|
|
494
|
+
source,
|
|
495
|
+
checkedAt,
|
|
496
|
+
status: nextGit,
|
|
497
|
+
};
|
|
498
|
+
node.last_git = node.lastGit;
|
|
499
|
+
node.machineStatus = 'online';
|
|
500
|
+
node.updatedAt = updatedAt;
|
|
501
|
+
node.lastSeenAt = updatedAt;
|
|
502
|
+
const repoRoot = readStringValue(nextGit.repoRoot);
|
|
503
|
+
if (repoRoot && !readStringValue(node.repoRoot)) node.repoRoot = repoRoot;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
function buildCachedInlineMeshGitStatus(node: any): Record<string, unknown> | undefined {
|
|
507
|
+
const liveGit = buildInlineMeshTransitGitStatus(node);
|
|
508
|
+
if (liveGit) return liveGit;
|
|
509
|
+
|
|
510
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
511
|
+
const cachedGit = readObjectRecord(cachedStatus.git);
|
|
512
|
+
if (!Object.keys(cachedGit).length) return undefined;
|
|
513
|
+
return normalizeInlineMeshGitStatus(cachedGit, node);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
function shouldDiscardCachedInlineMeshStatus(node: any): boolean {
|
|
517
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
518
|
+
if (!Object.keys(cachedStatus).length) return false;
|
|
519
|
+
const cachedGit = readObjectRecord(cachedStatus.git);
|
|
520
|
+
const workspaceError = readStringValue(cachedStatus.error, node?.error);
|
|
521
|
+
if (workspaceError && /workspace must be an existing directory/i.test(workspaceError)) return true;
|
|
522
|
+
const isGitRepo = readBooleanValue(cachedGit.isGitRepo);
|
|
523
|
+
const branch = readStringValue(cachedGit.branch);
|
|
524
|
+
const headCommit = readStringValue(cachedGit.headCommit);
|
|
525
|
+
return isGitRepo === false && !branch && !headCommit;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
function stripInlineMeshTransientNodeState(node: any): any {
|
|
529
|
+
if (!node || typeof node !== 'object' || Array.isArray(node)) return node;
|
|
530
|
+
const {
|
|
531
|
+
cachedStatus,
|
|
532
|
+
lastGit: _lastGit,
|
|
533
|
+
last_git: _lastGitLegacy,
|
|
534
|
+
lastProbe: _lastProbe,
|
|
535
|
+
last_probe: _lastProbeLegacy,
|
|
536
|
+
error: _error,
|
|
537
|
+
health: _health,
|
|
538
|
+
machineStatus: _machineStatus,
|
|
539
|
+
lastSeenAt: _lastSeenAt,
|
|
540
|
+
last_seen_at: _lastSeenAtLegacy,
|
|
541
|
+
updatedAt: _updatedAt,
|
|
542
|
+
updated_at: _updatedAtLegacy,
|
|
543
|
+
activeSession: _activeSession,
|
|
544
|
+
active_session: _activeSessionLegacy,
|
|
545
|
+
activeSessionId: _activeSessionId,
|
|
546
|
+
active_session_id: _activeSessionIdLegacy,
|
|
547
|
+
sessionId: _sessionId,
|
|
548
|
+
session_id: _sessionIdLegacy,
|
|
549
|
+
providerType: _providerType,
|
|
550
|
+
provider_type: _providerTypeLegacy,
|
|
551
|
+
...rest
|
|
552
|
+
} = node as Record<string, unknown>;
|
|
553
|
+
if (cachedStatus && !shouldDiscardCachedInlineMeshStatus(node)) {
|
|
554
|
+
return { ...rest, cachedStatus };
|
|
555
|
+
}
|
|
556
|
+
return rest;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
function hasInlineMeshTransientNodeState(node: any): boolean {
|
|
560
|
+
if (!node || typeof node !== 'object' || Array.isArray(node)) return false;
|
|
561
|
+
return 'cachedStatus' in node
|
|
562
|
+
|| 'lastGit' in node
|
|
563
|
+
|| 'last_git' in node
|
|
564
|
+
|| 'lastProbe' in node
|
|
565
|
+
|| 'last_probe' in node
|
|
566
|
+
|| 'error' in node
|
|
567
|
+
|| 'health' in node
|
|
568
|
+
|| 'machineStatus' in node
|
|
569
|
+
|| 'lastSeenAt' in node
|
|
570
|
+
|| 'last_seen_at' in node
|
|
571
|
+
|| 'updatedAt' in node
|
|
572
|
+
|| 'updated_at' in node
|
|
573
|
+
|| 'activeSession' in node
|
|
574
|
+
|| 'active_session' in node
|
|
575
|
+
|| 'activeSessionId' in node
|
|
576
|
+
|| 'active_session_id' in node
|
|
577
|
+
|| 'sessionId' in node
|
|
578
|
+
|| 'session_id' in node
|
|
579
|
+
|| 'providerType' in node
|
|
580
|
+
|| 'provider_type' in node;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
function inlineMeshCarriesTransientNodeTruth(inlineMesh: any): boolean {
|
|
584
|
+
if (!inlineMesh || typeof inlineMesh !== 'object' || Array.isArray(inlineMesh)) return false;
|
|
585
|
+
if (!Array.isArray(inlineMesh.nodes) || inlineMesh.nodes.length === 0) return false;
|
|
586
|
+
return inlineMesh.nodes.some((node: any) => hasInlineMeshTransientNodeState(node));
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
function readInlineMeshNodeId(node: any): string {
|
|
590
|
+
return readStringValue(node?.id, node?.nodeId) || '';
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
function sanitizeInlineMesh(inlineMesh: any): any {
|
|
594
|
+
if (!inlineMesh || typeof inlineMesh !== 'object' || Array.isArray(inlineMesh)) return inlineMesh;
|
|
595
|
+
if (!Array.isArray(inlineMesh.nodes)) return inlineMesh;
|
|
596
|
+
let changed = false;
|
|
597
|
+
const nodes = inlineMesh.nodes.map((node: any) => {
|
|
598
|
+
if (!hasInlineMeshTransientNodeState(node)) return node;
|
|
599
|
+
changed = true;
|
|
600
|
+
return stripInlineMeshTransientNodeState(node);
|
|
601
|
+
});
|
|
602
|
+
if (!changed) return inlineMesh;
|
|
603
|
+
return {
|
|
604
|
+
...inlineMesh,
|
|
605
|
+
nodes,
|
|
606
|
+
};
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
function reconcileInlineMeshCache(cached: any, incoming: any): any {
|
|
610
|
+
if (!cached || typeof cached !== 'object' || Array.isArray(cached)) return incoming;
|
|
611
|
+
if (!incoming || typeof incoming !== 'object' || Array.isArray(incoming)) return cached;
|
|
612
|
+
const cachedNodes = Array.isArray(cached.nodes) ? cached.nodes : [];
|
|
613
|
+
const incomingNodes = Array.isArray(incoming.nodes) ? incoming.nodes : [];
|
|
614
|
+
if (!cachedNodes.length || !incomingNodes.length) return { ...cached, ...incoming };
|
|
615
|
+
|
|
616
|
+
const cachedUpdatedAt = Date.parse(readStringValue(cached.updatedAt, cached.updated_at) || '');
|
|
617
|
+
const incomingUpdatedAt = Date.parse(readStringValue(incoming.updatedAt, incoming.updated_at) || '');
|
|
618
|
+
const preserveCachedMembership = Number.isFinite(cachedUpdatedAt)
|
|
619
|
+
&& (!Number.isFinite(incomingUpdatedAt) || cachedUpdatedAt > incomingUpdatedAt);
|
|
620
|
+
|
|
621
|
+
const cachedById = new Map<string, any>();
|
|
622
|
+
for (const node of cachedNodes) {
|
|
623
|
+
const nodeId = readInlineMeshNodeId(node);
|
|
624
|
+
if (nodeId) cachedById.set(nodeId, node);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
const nodes = incomingNodes.map((incomingNode: any) => {
|
|
628
|
+
const nodeId = readInlineMeshNodeId(incomingNode);
|
|
629
|
+
const cachedNode = nodeId ? cachedById.get(nodeId) : undefined;
|
|
630
|
+
if (!cachedNode && preserveCachedMembership) return null;
|
|
631
|
+
if (!cachedNode) return incomingNode;
|
|
632
|
+
if (hasInlineMeshTransientNodeState(incomingNode)) {
|
|
633
|
+
return { ...cachedNode, ...incomingNode };
|
|
634
|
+
}
|
|
635
|
+
return { ...stripInlineMeshTransientNodeState(cachedNode), ...incomingNode };
|
|
636
|
+
}).filter(Boolean);
|
|
637
|
+
|
|
638
|
+
return {
|
|
639
|
+
...cached,
|
|
640
|
+
...incoming,
|
|
641
|
+
nodes,
|
|
642
|
+
};
|
|
643
|
+
}
|
|
644
|
+
|
|
225
645
|
function hasGitWorktreeChanges(git: Record<string, unknown> | null | undefined): boolean {
|
|
226
|
-
|
|
227
|
-
|
|
646
|
+
return countGitWorktreeChanges(git) > 0;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
function countGitWorktreeChanges(git: Record<string, unknown> | null | undefined): number {
|
|
650
|
+
if (!git) return 0;
|
|
651
|
+
return Number(git.staged || 0)
|
|
652
|
+
+ Number(git.modified || 0)
|
|
653
|
+
+ Number(git.untracked || 0)
|
|
654
|
+
+ Number(git.deleted || 0)
|
|
655
|
+
+ Number(git.renamed || 0);
|
|
228
656
|
}
|
|
229
657
|
|
|
230
658
|
function getGitSubmoduleDriftState(git: Record<string, unknown> | null | undefined): { dirty: boolean; outOfSync: boolean } {
|
|
@@ -249,6 +677,167 @@ function deriveMeshNodeHealthFromGit(git: Record<string, unknown> | null | undef
|
|
|
249
677
|
return 'online';
|
|
250
678
|
}
|
|
251
679
|
|
|
680
|
+
function readMeshNodeLabel(status: Record<string, unknown>, node: any): string {
|
|
681
|
+
return readStringValue(status.nodeId, node?.id, node?.nodeId) ?? 'unknown';
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
function buildInlineMeshBranchConvergence(args: {
|
|
685
|
+
mesh: any;
|
|
686
|
+
node: any;
|
|
687
|
+
status: Record<string, unknown>;
|
|
688
|
+
}): Record<string, unknown> {
|
|
689
|
+
const git = readObjectRecord(args.status.git);
|
|
690
|
+
const nodeLabel = readMeshNodeLabel(args.status, args.node);
|
|
691
|
+
const defaultBranch = readStringValue(args.mesh?.defaultBranch) ?? 'main';
|
|
692
|
+
const branch = readStringValue(git.branch, args.node?.worktreeBranch) ?? null;
|
|
693
|
+
const upstream = readStringValue(git.upstream) ?? null;
|
|
694
|
+
const upstreamStatus = readStringValue(git.upstreamStatus, git.upstream_status)
|
|
695
|
+
?? (upstream ? 'unchecked' : 'no_upstream');
|
|
696
|
+
const ahead = readNumberValue(git.ahead) ?? 0;
|
|
697
|
+
const behind = readNumberValue(git.behind) ?? 0;
|
|
698
|
+
const uncommittedChanges = countGitWorktreeChanges(git);
|
|
699
|
+
const hasConflicts = readBooleanValue(git.hasConflicts)
|
|
700
|
+
?? (Array.isArray(git.conflictFiles) && git.conflictFiles.length > 0);
|
|
701
|
+
const base = {
|
|
702
|
+
defaultBranch,
|
|
703
|
+
branch,
|
|
704
|
+
upstream,
|
|
705
|
+
upstreamStatus,
|
|
706
|
+
ahead,
|
|
707
|
+
behind,
|
|
708
|
+
isWorktree: args.node?.isLocalWorktree === true || args.status.isLocalWorktree === true,
|
|
709
|
+
isDefaultBranch: branch === defaultBranch,
|
|
710
|
+
};
|
|
711
|
+
|
|
712
|
+
if (readBooleanValue(git.isGitRepo) !== true) {
|
|
713
|
+
return {
|
|
714
|
+
...base,
|
|
715
|
+
status: 'blocked_review',
|
|
716
|
+
needsConvergence: true,
|
|
717
|
+
reason: 'git_status_unavailable',
|
|
718
|
+
nextStep: `Resolve git status for node '${nodeLabel}' before marking the task complete.`,
|
|
719
|
+
};
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
if (!branch) {
|
|
723
|
+
return {
|
|
724
|
+
...base,
|
|
725
|
+
status: 'blocked_review',
|
|
726
|
+
needsConvergence: true,
|
|
727
|
+
reason: 'branch_unknown',
|
|
728
|
+
nextStep: `Inspect node '${nodeLabel}' git branch before deciding whether it is merged to ${defaultBranch}.`,
|
|
729
|
+
};
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
if (hasConflicts || uncommittedChanges > 0) {
|
|
733
|
+
return {
|
|
734
|
+
...base,
|
|
735
|
+
status: 'not_mergeable',
|
|
736
|
+
needsConvergence: true,
|
|
737
|
+
reason: hasConflicts ? 'conflicts_present' : 'dirty_workspace',
|
|
738
|
+
nextStep: `Commit, checkpoint, or resolve node '${nodeLabel}' before any main convergence step.`,
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
if (branch === defaultBranch) {
|
|
743
|
+
if (upstream && upstreamStatus !== 'fresh') {
|
|
744
|
+
return {
|
|
745
|
+
...base,
|
|
746
|
+
status: 'blocked_review',
|
|
747
|
+
needsConvergence: true,
|
|
748
|
+
reason: 'default_branch_upstream_unverified',
|
|
749
|
+
nextStep: `Refresh ${defaultBranch}'s upstream refs or resolve the fetch failure before declaring convergence complete for node '${nodeLabel}'.`,
|
|
750
|
+
};
|
|
751
|
+
}
|
|
752
|
+
if (ahead > 0 || behind > 0) {
|
|
753
|
+
return {
|
|
754
|
+
...base,
|
|
755
|
+
status: 'blocked_review',
|
|
756
|
+
needsConvergence: true,
|
|
757
|
+
reason: 'default_branch_not_even_with_upstream',
|
|
758
|
+
nextStep: `Bring ${defaultBranch} even with its upstream before declaring convergence complete.`,
|
|
759
|
+
};
|
|
760
|
+
}
|
|
761
|
+
return {
|
|
762
|
+
...base,
|
|
763
|
+
status: 'merged_to_main',
|
|
764
|
+
needsConvergence: false,
|
|
765
|
+
reason: 'clean_default_branch',
|
|
766
|
+
nextStep: null,
|
|
767
|
+
};
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
if (args.node?.isLocalWorktree === true || args.status.isLocalWorktree === true) {
|
|
771
|
+
return {
|
|
772
|
+
...base,
|
|
773
|
+
status: 'cleanup_candidate',
|
|
774
|
+
needsConvergence: true,
|
|
775
|
+
reason: 'clean_non_default_worktree_branch',
|
|
776
|
+
nextStep: `Run mesh_refine_node(node_id: "${nodeLabel}") or explicitly classify this worktree as blocked_review/not_mergeable before ending the task.`,
|
|
777
|
+
};
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
if (upstream && upstreamStatus !== 'fresh') {
|
|
781
|
+
return {
|
|
782
|
+
...base,
|
|
783
|
+
status: 'blocked_review',
|
|
784
|
+
needsConvergence: true,
|
|
785
|
+
reason: 'feature_branch_upstream_unverified',
|
|
786
|
+
nextStep: `Refresh branch '${branch}' upstream refs or resolve the fetch failure before deciding whether it is ready to merge into ${defaultBranch}.`,
|
|
787
|
+
};
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
if (!upstream || ahead > 0 || behind > 0) {
|
|
791
|
+
return {
|
|
792
|
+
...base,
|
|
793
|
+
status: 'blocked_review',
|
|
794
|
+
needsConvergence: true,
|
|
795
|
+
reason: !upstream ? 'feature_branch_missing_upstream' : 'feature_branch_not_even_with_upstream',
|
|
796
|
+
nextStep: `Push or reconcile branch '${branch}', then merge it into ${defaultBranch} or mark it not_mergeable with a reason.`,
|
|
797
|
+
};
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
return {
|
|
801
|
+
...base,
|
|
802
|
+
status: 'pushed_feature_branch_needs_merge',
|
|
803
|
+
needsConvergence: true,
|
|
804
|
+
reason: 'clean_non_default_branch',
|
|
805
|
+
nextStep: `Review and merge branch '${branch}' into ${defaultBranch}; do not report the task as fully complete while it remains off main.`,
|
|
806
|
+
};
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
function applyInlineMeshBranchConvergence(mesh: any, node: any, status: Record<string, unknown>): void {
|
|
810
|
+
const git = readObjectRecord(status.git);
|
|
811
|
+
if (Object.keys(git).length === 0 && !status.gitProbePending) return;
|
|
812
|
+
const uncommittedChanges = countGitWorktreeChanges(git);
|
|
813
|
+
status.isDirty = uncommittedChanges > 0;
|
|
814
|
+
status.uncommittedChanges = uncommittedChanges;
|
|
815
|
+
status.branchConvergence = buildInlineMeshBranchConvergence({ mesh, node, status });
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
function summarizeInlineMeshBranchConvergence(nodes: Array<Record<string, unknown>>): Record<string, unknown> {
|
|
819
|
+
const followUps = nodes
|
|
820
|
+
.filter(node => readObjectRecord(node.branchConvergence).needsConvergence === true)
|
|
821
|
+
.map(node => {
|
|
822
|
+
const convergence = readObjectRecord(node.branchConvergence);
|
|
823
|
+
return {
|
|
824
|
+
nodeId: node.nodeId,
|
|
825
|
+
workspace: node.workspace,
|
|
826
|
+
branch: convergence.branch,
|
|
827
|
+
status: convergence.status,
|
|
828
|
+
reason: convergence.reason,
|
|
829
|
+
nextStep: convergence.nextStep,
|
|
830
|
+
};
|
|
831
|
+
});
|
|
832
|
+
|
|
833
|
+
return {
|
|
834
|
+
needsFollowUp: followUps.length > 0,
|
|
835
|
+
unresolvedCount: followUps.length,
|
|
836
|
+
requiredFinalStates: ['merged_to_main', 'pushed_feature_branch_needs_merge', 'blocked_review', 'cleanup_candidate', 'not_mergeable'],
|
|
837
|
+
followUps,
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
|
|
252
841
|
function readCachedInlineMeshActiveSessions(node: any): string[] {
|
|
253
842
|
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
254
843
|
const activeSession = readObjectRecord(cachedStatus.activeSession);
|
|
@@ -313,6 +902,169 @@ function toIsoTimestamp(value: unknown): string | null {
|
|
|
313
902
|
return stringValue || null;
|
|
314
903
|
}
|
|
315
904
|
|
|
905
|
+
function synthesizeMeshNodeFreshnessFromConnection(status: Record<string, unknown>): void {
|
|
906
|
+
const connection = readObjectRecord(status.connection);
|
|
907
|
+
const connectionFreshAt = toIsoTimestamp(connection.lastCommandAt ?? connection.lastConnectedAt ?? connection.lastStateChangeAt);
|
|
908
|
+
const git = readObjectRecord(status.git);
|
|
909
|
+
const gitCheckedAt = toIsoTimestamp(git.lastCheckedAt);
|
|
910
|
+
if (!status.lastSeenAt && connectionFreshAt) status.lastSeenAt = connectionFreshAt;
|
|
911
|
+
if (!status.updatedAt && (gitCheckedAt || connectionFreshAt)) {
|
|
912
|
+
status.updatedAt = gitCheckedAt ?? connectionFreshAt;
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
function finalizeMeshNodeStatus(args: {
|
|
917
|
+
status: Record<string, unknown>;
|
|
918
|
+
node: any;
|
|
919
|
+
daemonId?: string;
|
|
920
|
+
isSelfNode: boolean;
|
|
921
|
+
}): void {
|
|
922
|
+
const { status, node, daemonId, isSelfNode } = args;
|
|
923
|
+
if (!readStringValue(status.machineStatus)) {
|
|
924
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
925
|
+
const machineStatus = readStringValue(cachedStatus.machineStatus, cachedStatus.machine_status, node?.machineStatus);
|
|
926
|
+
if (machineStatus) status.machineStatus = machineStatus;
|
|
927
|
+
}
|
|
928
|
+
synthesizeMeshNodeFreshnessFromConnection(status);
|
|
929
|
+
const bootstrap = readObjectRecord(node?.worktreeBootstrap);
|
|
930
|
+
if (node?.isLocalWorktree && readStringValue(bootstrap.status)) {
|
|
931
|
+
status.worktreeBootstrap = bootstrap;
|
|
932
|
+
if (bootstrap.status === 'failed' && bootstrap.required !== false) {
|
|
933
|
+
status.launchReady = false;
|
|
934
|
+
status.launchBlockedReason = 'worktree_bootstrap_failed';
|
|
935
|
+
status.launchBlockedMessage = readStringValue(bootstrap.error)
|
|
936
|
+
|| 'Required worktree bootstrap failed; resolve it before launching an agent into this node.';
|
|
937
|
+
return;
|
|
938
|
+
}
|
|
939
|
+
if (bootstrap.status === 'running' && bootstrap.required !== false) {
|
|
940
|
+
status.launchReady = false;
|
|
941
|
+
status.launchBlockedReason = 'worktree_bootstrap_running';
|
|
942
|
+
status.launchBlockedMessage = 'Required worktree bootstrap is still running; wait for it to finish before launching an agent into this node.';
|
|
943
|
+
return;
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
const connectionState = readStringValue(readObjectRecord(status.connection).state);
|
|
947
|
+
status.launchReady = !!daemonId && (
|
|
948
|
+
readStringValue(status.machineStatus) === 'online'
|
|
949
|
+
|| connectionState === 'connected'
|
|
950
|
+
|| isSelfNode
|
|
951
|
+
);
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
async function probeRemoteMeshGitStatus(args: {
|
|
955
|
+
dispatchMeshCommand?: (daemonId: string, cmd: string, args: Record<string, unknown>) => Promise<unknown>;
|
|
956
|
+
daemonId: string;
|
|
957
|
+
workspace: string;
|
|
958
|
+
timeoutMs: number;
|
|
959
|
+
}): Promise<Record<string, unknown> | null> {
|
|
960
|
+
if (!args.dispatchMeshCommand) return null;
|
|
961
|
+
const remoteResult = await Promise.race([
|
|
962
|
+
args.dispatchMeshCommand(args.daemonId, 'git_status', { workspace: args.workspace, refreshUpstream: true }),
|
|
963
|
+
new Promise<never>((_, reject) => setTimeout(() => reject(new Error('timeout')), args.timeoutMs)),
|
|
964
|
+
]) as any;
|
|
965
|
+
const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
|
|
966
|
+
return remoteGit && typeof remoteGit === 'object' && typeof remoteGit.isGitRepo === 'boolean'
|
|
967
|
+
? remoteGit as Record<string, unknown>
|
|
968
|
+
: null;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
async function hydrateInlineMeshDirectTruth(args: {
|
|
972
|
+
mesh: any;
|
|
973
|
+
meshSource: 'inline_cache' | 'inline_bootstrap' | 'local_config';
|
|
974
|
+
dispatchMeshCommand?: (daemonId: string, cmd: string, args: Record<string, unknown>) => Promise<unknown>;
|
|
975
|
+
statusInstanceId?: string;
|
|
976
|
+
localMachineId?: string;
|
|
977
|
+
}): Promise<{
|
|
978
|
+
directEvidenceCount: number;
|
|
979
|
+
localConfirmedCount: number;
|
|
980
|
+
peerAttemptedCount: number;
|
|
981
|
+
peerConfirmedCount: number;
|
|
982
|
+
unavailableNodeIds: string[];
|
|
983
|
+
}> {
|
|
984
|
+
const nodes = Array.isArray(args.mesh?.nodes) ? args.mesh.nodes : [];
|
|
985
|
+
if (!nodes.length) {
|
|
986
|
+
return {
|
|
987
|
+
directEvidenceCount: 0,
|
|
988
|
+
localConfirmedCount: 0,
|
|
989
|
+
peerAttemptedCount: 0,
|
|
990
|
+
peerConfirmedCount: 0,
|
|
991
|
+
unavailableNodeIds: [],
|
|
992
|
+
};
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
const selectedCoordinatorNodeId = readStringValue(
|
|
996
|
+
args.mesh?.coordinator?.preferredNodeId,
|
|
997
|
+
nodes[0]?.id,
|
|
998
|
+
nodes[0]?.nodeId,
|
|
999
|
+
);
|
|
1000
|
+
|
|
1001
|
+
let localConfirmedCount = 0;
|
|
1002
|
+
let peerAttemptedCount = 0;
|
|
1003
|
+
let peerConfirmedCount = 0;
|
|
1004
|
+
const unavailableNodeIds: string[] = [];
|
|
1005
|
+
|
|
1006
|
+
for (const [nodeIndex, node] of nodes.entries()) {
|
|
1007
|
+
const nodeId = readStringValue(node?.id, node?.nodeId) || `node_${nodeIndex}`;
|
|
1008
|
+
const workspace = readStringValue(node?.workspace);
|
|
1009
|
+
const daemonId = readStringValue(node?.daemonId);
|
|
1010
|
+
const isSelfNode = Boolean(
|
|
1011
|
+
nodeId && selectedCoordinatorNodeId && nodeId === selectedCoordinatorNodeId,
|
|
1012
|
+
) || Boolean(
|
|
1013
|
+
daemonId && (daemonId === args.localMachineId || daemonId === args.statusInstanceId),
|
|
1014
|
+
) || Boolean(args.meshSource !== 'local_config' && nodeIndex === 0);
|
|
1015
|
+
|
|
1016
|
+
if (!workspace) {
|
|
1017
|
+
if (!isSelfNode && daemonId) unavailableNodeIds.push(nodeId);
|
|
1018
|
+
continue;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
if (fs.existsSync(workspace)) {
|
|
1022
|
+
try {
|
|
1023
|
+
const localGit = await getGitRepoStatus(workspace, { timeoutMs: 10_000, refreshUpstream: true });
|
|
1024
|
+
if (localGit?.isGitRepo) {
|
|
1025
|
+
recordInlineMeshDirectGitTruth(node, localGit as unknown as Record<string, unknown>, 'selected_coordinator_local_git');
|
|
1026
|
+
localConfirmedCount += 1;
|
|
1027
|
+
continue;
|
|
1028
|
+
}
|
|
1029
|
+
} catch {
|
|
1030
|
+
// Fall through to remote classification.
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
if (!daemonId || !args.dispatchMeshCommand) {
|
|
1035
|
+
if (!isSelfNode) unavailableNodeIds.push(nodeId);
|
|
1036
|
+
continue;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
peerAttemptedCount += 1;
|
|
1040
|
+
try {
|
|
1041
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
1042
|
+
dispatchMeshCommand: args.dispatchMeshCommand,
|
|
1043
|
+
daemonId,
|
|
1044
|
+
workspace,
|
|
1045
|
+
timeoutMs: 8_000,
|
|
1046
|
+
});
|
|
1047
|
+
if (remoteGit) {
|
|
1048
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, 'selected_coordinator_mesh_p2p_git');
|
|
1049
|
+
peerConfirmedCount += 1;
|
|
1050
|
+
continue;
|
|
1051
|
+
}
|
|
1052
|
+
} catch {
|
|
1053
|
+
// Strict direct-only path: do not fall back to persisted cloud truth here.
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
unavailableNodeIds.push(nodeId);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
return {
|
|
1060
|
+
directEvidenceCount: localConfirmedCount + peerConfirmedCount,
|
|
1061
|
+
localConfirmedCount,
|
|
1062
|
+
peerAttemptedCount,
|
|
1063
|
+
peerConfirmedCount,
|
|
1064
|
+
unavailableNodeIds,
|
|
1065
|
+
};
|
|
1066
|
+
}
|
|
1067
|
+
|
|
316
1068
|
function summarizeMeshSessionRecord(record: any): Record<string, unknown> {
|
|
317
1069
|
return {
|
|
318
1070
|
sessionId: readStringValue(record?.sessionId) || 'unknown',
|
|
@@ -328,11 +1080,140 @@ function summarizeMeshSessionRecord(record: any): Record<string, unknown> {
|
|
|
328
1080
|
};
|
|
329
1081
|
}
|
|
330
1082
|
|
|
331
|
-
function
|
|
1083
|
+
function liveSessionRecordMatchesMeshNode(record: any, meshId: string, nodeId: string, nodeWorkspace = '', nodeIsMissingLocalWorktree = false): boolean {
|
|
1084
|
+
const recordNodeId = readStringValue(record?.meta?.meshNodeId);
|
|
1085
|
+
if (!recordNodeId || recordNodeId !== nodeId) return false;
|
|
1086
|
+
if (nodeIsMissingLocalWorktree) return false;
|
|
1087
|
+
const recordWorkspace = readStringValue(record?.workspace);
|
|
1088
|
+
if (nodeWorkspace && recordWorkspace && recordWorkspace !== nodeWorkspace) return false;
|
|
1089
|
+
const recordMeshId = readStringValue(record?.meta?.meshNodeFor);
|
|
1090
|
+
return !recordMeshId || recordMeshId === meshId;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
function liveSessionRecordMatchesMeshWorkspace(record: any, meshId: string, workspace: string): boolean {
|
|
1094
|
+
const recordWorkspace = readStringValue(record?.workspace);
|
|
1095
|
+
if (!recordWorkspace || !workspace || recordWorkspace !== workspace) return false;
|
|
1096
|
+
|
|
1097
|
+
const recordMeshId = readStringValue(record?.meta?.meshNodeFor);
|
|
1098
|
+
if (recordMeshId) return recordMeshId === meshId;
|
|
1099
|
+
|
|
1100
|
+
return record?.meta?.launchedByCoordinator === true || !!readStringValue(record?.meta?.meshNodeId);
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
function readLiveMeshNodeWorkspace(args: {
|
|
1104
|
+
meshId: string;
|
|
1105
|
+
nodeId: string;
|
|
1106
|
+
liveSessionRecords: any[];
|
|
1107
|
+
allowCoordinatorSession?: boolean;
|
|
1108
|
+
}): string {
|
|
1109
|
+
const directNodeWorkspace = args.liveSessionRecords.find((record) => (
|
|
1110
|
+
liveSessionRecordMatchesMeshNode(record, args.meshId, args.nodeId)
|
|
1111
|
+
&& readStringValue(record?.workspace)
|
|
1112
|
+
));
|
|
1113
|
+
if (directNodeWorkspace) {
|
|
1114
|
+
return readStringValue(directNodeWorkspace.workspace) || '';
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
if (args.allowCoordinatorSession) {
|
|
1118
|
+
const coordinatorWorkspace = args.liveSessionRecords.find((record) => (
|
|
1119
|
+
readStringValue(record?.meta?.meshCoordinatorFor) === args.meshId
|
|
1120
|
+
&& readStringValue(record?.workspace)
|
|
1121
|
+
));
|
|
1122
|
+
if (coordinatorWorkspace) {
|
|
1123
|
+
return readStringValue(coordinatorWorkspace.workspace) || '';
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
return '';
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
function collectLiveMeshSessionRecords(args: {
|
|
1131
|
+
meshId: string;
|
|
1132
|
+
node: any;
|
|
1133
|
+
nodeId: string;
|
|
1134
|
+
liveSessionRecords: any[];
|
|
1135
|
+
allowCoordinatorSession?: boolean;
|
|
1136
|
+
}): any[] {
|
|
1137
|
+
const nodeWorkspace = readStringValue(args.node?.workspace);
|
|
1138
|
+
const nodeIsMissingLocalWorktree = args.node?.isLocalWorktree === true
|
|
1139
|
+
&& !!nodeWorkspace
|
|
1140
|
+
&& !fs.existsSync(nodeWorkspace);
|
|
1141
|
+
const matches = args.liveSessionRecords.filter((record) => {
|
|
1142
|
+
const recordNodeId = readStringValue(record?.meta?.meshNodeId);
|
|
1143
|
+
if (recordNodeId && recordNodeId !== args.nodeId) return false;
|
|
1144
|
+
if (liveSessionRecordMatchesMeshNode(record, args.meshId, args.nodeId, nodeWorkspace || '', nodeIsMissingLocalWorktree)) return true;
|
|
1145
|
+
if (nodeIsMissingLocalWorktree) return false;
|
|
1146
|
+
return !!nodeWorkspace && liveSessionRecordMatchesMeshWorkspace(record, args.meshId, nodeWorkspace);
|
|
1147
|
+
});
|
|
1148
|
+
|
|
1149
|
+
if (args.allowCoordinatorSession) {
|
|
1150
|
+
for (const record of args.liveSessionRecords) {
|
|
1151
|
+
if (readStringValue(record?.meta?.meshCoordinatorFor) !== args.meshId) continue;
|
|
1152
|
+
const sessionId = readStringValue(record?.sessionId);
|
|
1153
|
+
if (sessionId && matches.some((entry) => readStringValue(entry?.sessionId) === sessionId)) continue;
|
|
1154
|
+
matches.push(record);
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
return matches;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
function buildHistoricalMeshSessions(args: {
|
|
1162
|
+
meshId: string;
|
|
1163
|
+
nodes: any[];
|
|
1164
|
+
liveSessionRecords: any[];
|
|
1165
|
+
}): { count: number; sessions: Record<string, unknown>[]; instruction: string } | undefined {
|
|
1166
|
+
const liveNodeIds = new Set<string>();
|
|
1167
|
+
const liveWorkspaces = new Set<string>();
|
|
1168
|
+
const missingLocalWorktreeNodeIds = new Set<string>();
|
|
1169
|
+
for (const node of args.nodes || []) {
|
|
1170
|
+
const nodeId = readStringValue(node?.id, node?.nodeId);
|
|
1171
|
+
const workspace = readStringValue(node?.workspace);
|
|
1172
|
+
if (nodeId) liveNodeIds.add(nodeId);
|
|
1173
|
+
if (workspace) liveWorkspaces.add(workspace);
|
|
1174
|
+
if (nodeId && node?.isLocalWorktree === true && workspace && !fs.existsSync(workspace)) {
|
|
1175
|
+
missingLocalWorktreeNodeIds.add(nodeId);
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
const sessions: Record<string, unknown>[] = [];
|
|
1180
|
+
for (const record of args.liveSessionRecords || []) {
|
|
1181
|
+
const meta = readObjectRecord(record?.meta);
|
|
1182
|
+
const recordMeshId = readStringValue(meta.meshNodeFor, meta.meshCoordinatorFor);
|
|
1183
|
+
if (recordMeshId !== args.meshId) continue;
|
|
1184
|
+
const recordNodeId = readStringValue(meta.meshNodeId);
|
|
1185
|
+
const workspace = readStringValue(record?.workspace);
|
|
1186
|
+
const removedNode = !!recordNodeId && (!liveNodeIds.has(recordNodeId) || missingLocalWorktreeNodeIds.has(recordNodeId));
|
|
1187
|
+
const orphanedWorkspace = !!workspace && !liveWorkspaces.has(workspace) && meta.meshCoordinatorFor !== args.meshId;
|
|
1188
|
+
if (!removedNode && !orphanedWorkspace) continue;
|
|
1189
|
+
sessions.push({
|
|
1190
|
+
...summarizeMeshSessionRecord(record),
|
|
1191
|
+
classification: removedNode ? 'removedNode' : 'orphanedSession',
|
|
1192
|
+
historical: true,
|
|
1193
|
+
meshNodeId: recordNodeId || null,
|
|
1194
|
+
reason: removedNode
|
|
1195
|
+
? 'Session is tagged to a mesh node that is no longer in live membership.'
|
|
1196
|
+
: 'Session workspace is no longer attached to a live mesh node.',
|
|
1197
|
+
});
|
|
1198
|
+
}
|
|
1199
|
+
if (sessions.length === 0) return undefined;
|
|
1200
|
+
return {
|
|
1201
|
+
count: sessions.length,
|
|
1202
|
+
sessions: sessions.slice(0, 5),
|
|
1203
|
+
instruction: 'These sessions are separated from normal node activeSessions because their mesh node/workspace is no longer live. Use mesh_cleanup_sessions only if cleanup is intended.',
|
|
1204
|
+
};
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
function applyCachedInlineMeshNodeStatus(
|
|
1208
|
+
status: Record<string, unknown>,
|
|
1209
|
+
node: any,
|
|
1210
|
+
options?: { skipGit?: boolean; skipError?: boolean; skipHealth?: boolean },
|
|
1211
|
+
): boolean {
|
|
332
1212
|
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
333
|
-
const
|
|
334
|
-
const
|
|
335
|
-
const
|
|
1213
|
+
const liveGit = buildInlineMeshTransitGitStatus(node);
|
|
1214
|
+
const git = options?.skipGit ? undefined : (liveGit ?? buildCachedInlineMeshGitStatus(node));
|
|
1215
|
+
const error = options?.skipError ? undefined : (liveGit ? undefined : readStringValue(cachedStatus.error, node?.error));
|
|
1216
|
+
const health = options?.skipHealth ? undefined : (liveGit ? undefined : readStringValue(cachedStatus.health, node?.health));
|
|
336
1217
|
const machineStatus = readStringValue(cachedStatus.machineStatus, node?.machineStatus);
|
|
337
1218
|
const lastSeenAt = toIsoTimestamp(cachedStatus.lastSeenAt ?? cachedStatus.last_seen_at ?? node?.lastSeenAt ?? node?.last_seen_at);
|
|
338
1219
|
const updatedAt = toIsoTimestamp(cachedStatus.updatedAt ?? cachedStatus.updated_at ?? node?.updatedAt ?? node?.updated_at);
|
|
@@ -389,29 +1270,140 @@ async function resolveProviderTypeFromPriority(args: {
|
|
|
389
1270
|
}
|
|
390
1271
|
type MeshCoordinatorConfigFormat = 'claude_mcp_json' | 'hermes_config_yaml';
|
|
391
1272
|
type MeshRefineValidationStatus = 'passed' | 'failed' | 'skipped';
|
|
392
|
-
type MeshRefineValidationCommand =
|
|
393
|
-
command: string;
|
|
394
|
-
args: string[];
|
|
395
|
-
displayCommand: string;
|
|
396
|
-
category: string;
|
|
397
|
-
source: string;
|
|
398
|
-
};
|
|
1273
|
+
type MeshRefineValidationCommand = MeshRefineValidationCommandPlan;
|
|
399
1274
|
|
|
400
1275
|
type MeshRefineValidationSummary = {
|
|
401
1276
|
status: MeshRefineValidationStatus;
|
|
402
1277
|
required: true;
|
|
403
1278
|
commandsRun: Array<Record<string, unknown>>;
|
|
1279
|
+
bootstrapCommandsRun: Array<Record<string, unknown>>;
|
|
404
1280
|
rejectedCommands: Array<Record<string, unknown>>;
|
|
405
1281
|
skippedReason?: string;
|
|
1282
|
+
failureKind?: string;
|
|
1283
|
+
failureCode?: string;
|
|
406
1284
|
timeoutMs: number;
|
|
407
1285
|
outputLimitBytes: number;
|
|
1286
|
+
configSource?: string;
|
|
1287
|
+
configSourceType?: string;
|
|
1288
|
+
suggestions?: unknown[];
|
|
1289
|
+
suggestedConfig?: unknown;
|
|
1290
|
+
};
|
|
1291
|
+
|
|
1292
|
+
type MeshRefineStageStatus = 'passed' | 'failed' | 'skipped';
|
|
1293
|
+
|
|
1294
|
+
type MeshRefinePatchEquivalenceSummary = {
|
|
1295
|
+
status: MeshRefineStageStatus;
|
|
1296
|
+
equivalent: boolean;
|
|
1297
|
+
baseHead: string;
|
|
1298
|
+
branchHead: string;
|
|
1299
|
+
mergeBase?: string;
|
|
1300
|
+
mergedTree?: string;
|
|
1301
|
+
expectedPatchId?: string;
|
|
1302
|
+
actualPatchId?: string;
|
|
1303
|
+
durationMs: number;
|
|
1304
|
+
error?: string;
|
|
1305
|
+
stdout?: string;
|
|
1306
|
+
stderr?: string;
|
|
1307
|
+
actionableHint?: MeshRefineSubmoduleConflictHint;
|
|
1308
|
+
};
|
|
1309
|
+
|
|
1310
|
+
type MeshRefineSubmoduleConflictHint = {
|
|
1311
|
+
kind: 'submodule_conflict';
|
|
1312
|
+
message: string;
|
|
1313
|
+
conflicts: Array<{
|
|
1314
|
+
path: string;
|
|
1315
|
+
baseCommit?: string;
|
|
1316
|
+
branchCommit?: string;
|
|
1317
|
+
}>;
|
|
1318
|
+
nextSteps: string[];
|
|
1319
|
+
};
|
|
1320
|
+
|
|
1321
|
+
type MeshRefineSubmoduleAlignmentSummary = {
|
|
1322
|
+
status: 'passed' | 'failed' | 'skipped';
|
|
1323
|
+
changedGitlinkPaths: string[];
|
|
1324
|
+
outOfSyncPaths: string[];
|
|
1325
|
+
updatedPaths: string[];
|
|
1326
|
+
verifiedPaths: string[];
|
|
1327
|
+
durationMs: number;
|
|
1328
|
+
reason?: string;
|
|
1329
|
+
command?: string;
|
|
1330
|
+
error?: string;
|
|
1331
|
+
stdout?: string;
|
|
1332
|
+
stderr?: string;
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
type MeshRefineSubmoduleReachabilityEntry = {
|
|
1336
|
+
path: string;
|
|
1337
|
+
commit: string;
|
|
1338
|
+
reachable: boolean;
|
|
1339
|
+
publishRequired?: boolean;
|
|
1340
|
+
autoPublishAllowed?: boolean;
|
|
1341
|
+
autoPublishAttempted?: boolean;
|
|
1342
|
+
autoPublishSucceeded?: boolean;
|
|
1343
|
+
autoPublishVerified?: boolean;
|
|
1344
|
+
autoPublishRefspec?: string;
|
|
1345
|
+
autoPublishSkippedReason?: string;
|
|
1346
|
+
importedFromWorktree?: boolean;
|
|
1347
|
+
checkedLocal?: boolean;
|
|
1348
|
+
localReachable?: boolean;
|
|
1349
|
+
remote?: string;
|
|
1350
|
+
remoteUrl?: string;
|
|
1351
|
+
remoteReachable?: boolean;
|
|
1352
|
+
remoteMainBranch?: string;
|
|
1353
|
+
remoteMainReachable?: boolean;
|
|
1354
|
+
fetchedFromOrigin?: boolean;
|
|
1355
|
+
error?: string;
|
|
1356
|
+
publishStdout?: string;
|
|
1357
|
+
publishStderr?: string;
|
|
408
1358
|
};
|
|
409
1359
|
|
|
1360
|
+
type MeshRefineSubmoduleReachabilitySummary = {
|
|
1361
|
+
status: MeshRefineStageStatus;
|
|
1362
|
+
checked: number;
|
|
1363
|
+
unreachable: MeshRefineSubmoduleReachabilityEntry[];
|
|
1364
|
+
entries: MeshRefineSubmoduleReachabilityEntry[];
|
|
1365
|
+
durationMs: number;
|
|
1366
|
+
autoPublishAllowed?: boolean;
|
|
1367
|
+
autoPublishPolicySource?: string;
|
|
1368
|
+
error?: string;
|
|
1369
|
+
};
|
|
1370
|
+
|
|
1371
|
+
type MeshRefineAsyncJobStatus = 'accepted' | 'completed' | 'failed';
|
|
1372
|
+
|
|
1373
|
+
type MeshRefineJobHandle = {
|
|
1374
|
+
success: true;
|
|
1375
|
+
async: true;
|
|
1376
|
+
status: MeshRefineAsyncJobStatus;
|
|
1377
|
+
jobId: string;
|
|
1378
|
+
interactionId: string;
|
|
1379
|
+
meshId: string;
|
|
1380
|
+
nodeId: string;
|
|
1381
|
+
targetNodeId: string;
|
|
1382
|
+
targetDaemonId?: string;
|
|
1383
|
+
workspace?: string;
|
|
1384
|
+
startedAt: string;
|
|
1385
|
+
completedAt?: string;
|
|
1386
|
+
duplicate?: boolean;
|
|
1387
|
+
retryOfJobId?: string;
|
|
1388
|
+
eventDelivery: {
|
|
1389
|
+
pendingEvents: true;
|
|
1390
|
+
ledger: true;
|
|
1391
|
+
};
|
|
1392
|
+
evidence: {
|
|
1393
|
+
pendingEventsCommand: 'get_pending_mesh_events';
|
|
1394
|
+
ledgerCommand: 'get_mesh_ledger_slice';
|
|
1395
|
+
taskHistoryKind: 'task_dispatched' | 'task_completed' | 'task_failed';
|
|
1396
|
+
};
|
|
1397
|
+
};
|
|
1398
|
+
|
|
1399
|
+
type MeshRefineTerminalJob = MeshRefineJobHandle & { result?: Record<string, unknown> };
|
|
1400
|
+
|
|
410
1401
|
const REFINE_VALIDATION_CATEGORIES = ['typecheck', 'test', 'lint', 'build'] as const;
|
|
411
1402
|
const REFINE_VALIDATION_TIMEOUT_MS = 120_000;
|
|
412
1403
|
const REFINE_VALIDATION_OUTPUT_LIMIT_BYTES = 128 * 1024;
|
|
413
1404
|
const REFINE_VALIDATION_SUMMARY_CHARS = 2_000;
|
|
414
1405
|
const REFINE_VALIDATION_MAX_COMMANDS = 4;
|
|
1406
|
+
const REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES = 4 * 1024 * 1024;
|
|
415
1407
|
|
|
416
1408
|
function truncateValidationOutput(value: unknown): string {
|
|
417
1409
|
const text = typeof value === 'string' ? value : value == null ? '' : String(value);
|
|
@@ -419,171 +1411,492 @@ function truncateValidationOutput(value: unknown): string {
|
|
|
419
1411
|
return `${text.slice(0, REFINE_VALIDATION_SUMMARY_CHARS)}\n[truncated ${text.length - REFINE_VALIDATION_SUMMARY_CHARS} chars]`;
|
|
420
1412
|
}
|
|
421
1413
|
|
|
422
|
-
function
|
|
1414
|
+
function recordMeshRefineStage(
|
|
1415
|
+
stages: Array<Record<string, unknown>>,
|
|
1416
|
+
stage: string,
|
|
1417
|
+
status: MeshRefineStageStatus,
|
|
1418
|
+
startedAt: number,
|
|
1419
|
+
details?: Record<string, unknown>,
|
|
1420
|
+
): void {
|
|
1421
|
+
stages.push({
|
|
1422
|
+
stage,
|
|
1423
|
+
status,
|
|
1424
|
+
durationMs: Date.now() - startedAt,
|
|
1425
|
+
...(details || {}),
|
|
1426
|
+
});
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
function buildSubmodulePublishRequiredNextStep(entries: MeshRefineSubmoduleReachabilityEntry[]): string {
|
|
1430
|
+
const refs = entries
|
|
1431
|
+
.map(entry => `${entry.path}@${entry.commit}`)
|
|
1432
|
+
.join(', ');
|
|
1433
|
+
return `Ask the user for explicit approval to push/publish the unreachable submodule commit(s) (${refs}) to the configured submodule remote main branch, then rerun mesh_refine_node. Do not merge the root branch until every submodule gitlink commit is reachable from submodule origin/main.`;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
function resolveRefineryAutoPublishSubmoduleMainCommits(mesh: any, workspace: string): { enabled: boolean; source?: string } {
|
|
1437
|
+
if (mesh?.policy?.allowAutoPublishSubmoduleMainCommits === true) {
|
|
1438
|
+
process.stderr.write(
|
|
1439
|
+
`[adhdev-mesh] WARNING: allowAutoPublishSubmoduleMainCommits is ENABLED via mesh.policy. `
|
|
1440
|
+
+ `Refinery may push unreachable submodule commits to submodule origin/main without additional user approval.\n`,
|
|
1441
|
+
);
|
|
1442
|
+
return { enabled: true, source: 'mesh.policy.allowAutoPublishSubmoduleMainCommits' };
|
|
1443
|
+
}
|
|
1444
|
+
const loaded = loadMeshRefineConfig(mesh, workspace);
|
|
1445
|
+
if (loaded.config?.allowAutoPublishSubmoduleMainCommits === true) {
|
|
1446
|
+
process.stderr.write(
|
|
1447
|
+
`[adhdev-mesh] WARNING: allowAutoPublishSubmoduleMainCommits is ENABLED via ${loaded.path || loaded.source}. `
|
|
1448
|
+
+ `Refinery may push unreachable submodule commits to submodule origin/main without additional user approval.\n`,
|
|
1449
|
+
);
|
|
1450
|
+
return { enabled: true, source: loaded.path || loaded.source };
|
|
1451
|
+
}
|
|
1452
|
+
return { enabled: false };
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
async function computeGitPatchId(cwd: string, fromRef: string, toRef: string): Promise<string> {
|
|
1456
|
+
const { execFileSync } = await import('node:child_process');
|
|
1457
|
+
const diff = execFileSync('git', ['diff', '--patch', '--full-index', fromRef, toRef], {
|
|
1458
|
+
cwd,
|
|
1459
|
+
encoding: 'utf8',
|
|
1460
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1461
|
+
});
|
|
1462
|
+
if (!diff.trim()) return '';
|
|
1463
|
+
const patchId = execFileSync('git', ['patch-id', '--stable'], {
|
|
1464
|
+
cwd,
|
|
1465
|
+
input: diff,
|
|
1466
|
+
encoding: 'utf8',
|
|
1467
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1468
|
+
}).trim();
|
|
1469
|
+
return patchId.split(/\s+/)[0] || '';
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
async function runMeshRefinePatchEquivalenceGate(
|
|
1473
|
+
repoRoot: string,
|
|
1474
|
+
baseHead: string,
|
|
1475
|
+
branchHead: string,
|
|
1476
|
+
): Promise<MeshRefinePatchEquivalenceSummary> {
|
|
1477
|
+
const startedAt = Date.now();
|
|
423
1478
|
try {
|
|
424
|
-
const
|
|
425
|
-
const
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
:
|
|
429
|
-
|
|
430
|
-
|
|
1479
|
+
const { execFileSync } = await import('node:child_process');
|
|
1480
|
+
const git = (args: string[]) => execFileSync('git', args, {
|
|
1481
|
+
cwd: repoRoot,
|
|
1482
|
+
encoding: 'utf8',
|
|
1483
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1484
|
+
});
|
|
1485
|
+
const mergeBase = git(['merge-base', baseHead, branchHead]).trim();
|
|
1486
|
+
const mergeTreeStdout = git(['merge-tree', '--write-tree', baseHead, branchHead]);
|
|
1487
|
+
const mergedTree = mergeTreeStdout.trim().split(/\s+/)[0] || '';
|
|
1488
|
+
if (!mergeBase || !mergedTree) {
|
|
1489
|
+
return {
|
|
1490
|
+
status: 'failed',
|
|
1491
|
+
equivalent: false,
|
|
1492
|
+
baseHead,
|
|
1493
|
+
branchHead,
|
|
1494
|
+
mergeBase: mergeBase || undefined,
|
|
1495
|
+
mergedTree: mergedTree || undefined,
|
|
1496
|
+
durationMs: Date.now() - startedAt,
|
|
1497
|
+
error: 'patch equivalence preflight could not resolve merge-base or synthetic merge tree',
|
|
1498
|
+
stdout: truncateValidationOutput(mergeTreeStdout),
|
|
1499
|
+
};
|
|
1500
|
+
}
|
|
1501
|
+
const expectedPatchId = await computeGitPatchId(repoRoot, mergeBase, branchHead);
|
|
1502
|
+
const actualPatchId = await computeGitPatchId(repoRoot, baseHead, mergedTree);
|
|
1503
|
+
const equivalent = expectedPatchId === actualPatchId;
|
|
1504
|
+
return {
|
|
1505
|
+
status: equivalent ? 'passed' : 'failed',
|
|
1506
|
+
equivalent,
|
|
1507
|
+
baseHead,
|
|
1508
|
+
branchHead,
|
|
1509
|
+
mergeBase,
|
|
1510
|
+
mergedTree,
|
|
1511
|
+
expectedPatchId,
|
|
1512
|
+
actualPatchId,
|
|
1513
|
+
durationMs: Date.now() - startedAt,
|
|
1514
|
+
};
|
|
1515
|
+
} catch (e: any) {
|
|
1516
|
+
return {
|
|
1517
|
+
status: 'failed',
|
|
1518
|
+
equivalent: false,
|
|
1519
|
+
baseHead,
|
|
1520
|
+
branchHead,
|
|
1521
|
+
durationMs: Date.now() - startedAt,
|
|
1522
|
+
error: e?.message || String(e),
|
|
1523
|
+
stdout: truncateValidationOutput(e?.stdout),
|
|
1524
|
+
stderr: truncateValidationOutput(e?.stderr),
|
|
1525
|
+
actionableHint: buildPatchEquivalenceSubmoduleConflictHint(
|
|
1526
|
+
repoRoot,
|
|
1527
|
+
baseHead,
|
|
1528
|
+
branchHead,
|
|
1529
|
+
`${e?.message || ''}\n${e?.stdout || ''}\n${e?.stderr || ''}`,
|
|
1530
|
+
),
|
|
1531
|
+
};
|
|
431
1532
|
}
|
|
432
1533
|
}
|
|
433
1534
|
|
|
434
|
-
function
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
if (/
|
|
441
|
-
const
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
1535
|
+
function buildPatchEquivalenceSubmoduleConflictHint(
|
|
1536
|
+
repoRoot: string,
|
|
1537
|
+
baseHead: string,
|
|
1538
|
+
branchHead: string,
|
|
1539
|
+
output: string,
|
|
1540
|
+
): MeshRefineSubmoduleConflictHint | undefined {
|
|
1541
|
+
if (!/(submodule|160000)/i.test(output) || !/(conflict|failed to merge)/i.test(output)) return undefined;
|
|
1542
|
+
const conflicts = readChangedGitlinkPaths(repoRoot, baseHead, branchHead)
|
|
1543
|
+
.map(path => ({
|
|
1544
|
+
path,
|
|
1545
|
+
baseCommit: readTreeObject(repoRoot, baseHead, path),
|
|
1546
|
+
branchCommit: readTreeObject(repoRoot, branchHead, path),
|
|
1547
|
+
}));
|
|
1548
|
+
if (conflicts.length === 0) return undefined;
|
|
1549
|
+
return {
|
|
1550
|
+
kind: 'submodule_conflict',
|
|
1551
|
+
message: 'Refinery could not synthesize a safe merge tree because the branch and base point the same submodule path at different commits.',
|
|
1552
|
+
conflicts,
|
|
1553
|
+
nextSteps: [
|
|
1554
|
+
'Inspect the listed submodule path in both base and branch: baseCommit is the commit currently recorded by the base workspace, branchCommit is the commit recorded by the worktree branch.',
|
|
1555
|
+
'Resolve the submodule first by checking out or creating the intended submodule commit, then commit the chosen gitlink in the root branch.',
|
|
1556
|
+
'Ensure the chosen submodule commit is reachable from the configured submodule remote main branch, then rerun mesh_refine_node.',
|
|
1557
|
+
],
|
|
1558
|
+
};
|
|
445
1559
|
}
|
|
446
1560
|
|
|
447
|
-
function
|
|
448
|
-
|
|
1561
|
+
function readChangedGitlinkPaths(repoRoot: string, fromRef: string, toRef: string): string[] {
|
|
1562
|
+
try {
|
|
1563
|
+
const output = execFileSync('git', ['diff', '--raw', '--no-abbrev', fromRef, toRef], {
|
|
1564
|
+
cwd: repoRoot,
|
|
1565
|
+
encoding: 'utf8',
|
|
1566
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1567
|
+
});
|
|
1568
|
+
const paths = new Set<string>();
|
|
1569
|
+
for (const line of output.split('\n')) {
|
|
1570
|
+
if (!line.trim()) continue;
|
|
1571
|
+
const metaAndPath = line.split('\t');
|
|
1572
|
+
const meta = metaAndPath[0] || '';
|
|
1573
|
+
const path = metaAndPath[metaAndPath.length - 1]?.trim();
|
|
1574
|
+
if (!path) continue;
|
|
1575
|
+
const parts = meta.split(/\s+/);
|
|
1576
|
+
if (parts[0]?.includes('160000') || parts[1]?.includes('160000')) {
|
|
1577
|
+
paths.add(path);
|
|
1578
|
+
}
|
|
1579
|
+
}
|
|
1580
|
+
return [...paths].sort();
|
|
1581
|
+
} catch {
|
|
1582
|
+
return [];
|
|
1583
|
+
}
|
|
449
1584
|
}
|
|
450
1585
|
|
|
451
|
-
function
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
return
|
|
1586
|
+
function readTreeObject(repoRoot: string, ref: string, path: string): string | undefined {
|
|
1587
|
+
try {
|
|
1588
|
+
const output = execFileSync('git', ['ls-tree', ref, '--', path], {
|
|
1589
|
+
cwd: repoRoot,
|
|
1590
|
+
encoding: 'utf8',
|
|
1591
|
+
maxBuffer: 1024 * 1024,
|
|
1592
|
+
}).trim();
|
|
1593
|
+
const match = output.match(/\bcommit\s+([0-9a-f]{40})\b/i);
|
|
1594
|
+
return match?.[1];
|
|
1595
|
+
} catch {
|
|
1596
|
+
return undefined;
|
|
460
1597
|
}
|
|
1598
|
+
}
|
|
461
1599
|
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
1600
|
+
async function alignRefinerySubmodulesAfterMerge(
|
|
1601
|
+
repoRoot: string,
|
|
1602
|
+
previousBaseHead: string,
|
|
1603
|
+
currentHead: string,
|
|
1604
|
+
options: { submoduleIgnorePaths?: string[] } = {},
|
|
1605
|
+
): Promise<MeshRefineSubmoduleAlignmentSummary> {
|
|
1606
|
+
const startedAt = Date.now();
|
|
1607
|
+
const changedGitlinkPaths = readChangedGitlinkPaths(repoRoot, previousBaseHead, currentHead)
|
|
1608
|
+
.filter(path => !(options.submoduleIgnorePaths || []).includes(path));
|
|
1609
|
+
const preStatus = await getGitRepoStatus(repoRoot, {
|
|
1610
|
+
includeSubmodules: true,
|
|
1611
|
+
submoduleIgnorePaths: options.submoduleIgnorePaths,
|
|
1612
|
+
timeoutMs: 15_000,
|
|
1613
|
+
});
|
|
1614
|
+
const outOfSyncPaths = (preStatus.submodules || [])
|
|
1615
|
+
.filter(submodule => submodule.dirty || submodule.outOfSync || !!submodule.error)
|
|
1616
|
+
.map(submodule => submodule.path);
|
|
1617
|
+
const updatePaths = [...new Set([...changedGitlinkPaths, ...outOfSyncPaths])].sort();
|
|
466
1618
|
|
|
467
|
-
if (
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
scriptName = second;
|
|
478
|
-
args = [scriptName];
|
|
479
|
-
} else {
|
|
480
|
-
return { rejected: { command: rawCommand, category, source, reason: 'command is not a supported package-manager script invocation' } };
|
|
1619
|
+
if (updatePaths.length === 0) {
|
|
1620
|
+
return {
|
|
1621
|
+
status: 'skipped',
|
|
1622
|
+
changedGitlinkPaths,
|
|
1623
|
+
outOfSyncPaths,
|
|
1624
|
+
updatedPaths: [],
|
|
1625
|
+
verifiedPaths: [],
|
|
1626
|
+
durationMs: Date.now() - startedAt,
|
|
1627
|
+
reason: 'no_changed_or_out_of_sync_submodules',
|
|
1628
|
+
};
|
|
481
1629
|
}
|
|
482
1630
|
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
1631
|
+
const commandArgs = ['submodule', 'update', '--init', '--recursive', '--', ...updatePaths];
|
|
1632
|
+
try {
|
|
1633
|
+
const { execFile } = await import('node:child_process');
|
|
1634
|
+
const { promisify } = await import('node:util');
|
|
1635
|
+
const execFileAsync = promisify(execFile);
|
|
1636
|
+
const result = await execFileAsync('git', commandArgs, {
|
|
1637
|
+
cwd: repoRoot,
|
|
1638
|
+
encoding: 'utf8',
|
|
1639
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1640
|
+
timeout: 60_000,
|
|
1641
|
+
});
|
|
1642
|
+
const postStatus = await getGitRepoStatus(repoRoot, {
|
|
1643
|
+
includeSubmodules: true,
|
|
1644
|
+
submoduleIgnorePaths: options.submoduleIgnorePaths,
|
|
1645
|
+
timeoutMs: 15_000,
|
|
1646
|
+
});
|
|
1647
|
+
const remaining = (postStatus.submodules || [])
|
|
1648
|
+
.filter(submodule => updatePaths.includes(submodule.path) && (submodule.dirty || submodule.outOfSync || !!submodule.error));
|
|
1649
|
+
return {
|
|
1650
|
+
status: remaining.length === 0 ? 'passed' : 'failed',
|
|
1651
|
+
changedGitlinkPaths,
|
|
1652
|
+
outOfSyncPaths,
|
|
1653
|
+
updatedPaths: updatePaths,
|
|
1654
|
+
verifiedPaths: updatePaths.filter(path => !remaining.some(submodule => submodule.path === path)),
|
|
1655
|
+
durationMs: Date.now() - startedAt,
|
|
1656
|
+
command: `git ${commandArgs.join(' ')}`,
|
|
1657
|
+
stdout: truncateValidationOutput(result.stdout),
|
|
1658
|
+
stderr: truncateValidationOutput(result.stderr),
|
|
1659
|
+
...(remaining.length > 0 ? { error: `Submodule checkout remained out of sync after update: ${remaining.map(entry => entry.path).join(', ')}` } : {}),
|
|
1660
|
+
};
|
|
1661
|
+
} catch (e: any) {
|
|
1662
|
+
return {
|
|
1663
|
+
status: 'failed',
|
|
1664
|
+
changedGitlinkPaths,
|
|
1665
|
+
outOfSyncPaths,
|
|
1666
|
+
updatedPaths: updatePaths,
|
|
1667
|
+
verifiedPaths: [],
|
|
1668
|
+
durationMs: Date.now() - startedAt,
|
|
1669
|
+
command: `git ${commandArgs.join(' ')}`,
|
|
1670
|
+
error: e?.message || String(e),
|
|
1671
|
+
stdout: truncateValidationOutput(e?.stdout),
|
|
1672
|
+
stderr: truncateValidationOutput(e?.stderr),
|
|
1673
|
+
};
|
|
488
1674
|
}
|
|
489
|
-
|
|
490
|
-
return {
|
|
491
|
-
command: {
|
|
492
|
-
command,
|
|
493
|
-
args,
|
|
494
|
-
displayCommand: [command, ...args].join(' '),
|
|
495
|
-
category,
|
|
496
|
-
source,
|
|
497
|
-
},
|
|
498
|
-
};
|
|
499
1675
|
}
|
|
500
1676
|
|
|
501
|
-
function
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
1677
|
+
async function runMeshRefineSubmoduleReachabilityGate(
|
|
1678
|
+
repoRoot: string,
|
|
1679
|
+
mergedTree: string,
|
|
1680
|
+
options: { allowAutoPublishSubmoduleMainCommits?: boolean; autoPublishPolicySource?: string; worktreeRoot?: string } = {},
|
|
1681
|
+
): Promise<MeshRefineSubmoduleReachabilitySummary> {
|
|
1682
|
+
const startedAt = Date.now();
|
|
1683
|
+
const entries: MeshRefineSubmoduleReachabilityEntry[] = [];
|
|
1684
|
+
try {
|
|
1685
|
+
const { execFile } = await import('node:child_process');
|
|
1686
|
+
const { promisify } = await import('node:util');
|
|
1687
|
+
const execFileAsync = promisify(execFile);
|
|
1688
|
+
const runGit = async (cwd: string, args: string[]): Promise<string> => {
|
|
1689
|
+
const { stdout } = await execFileAsync('git', args, {
|
|
1690
|
+
cwd,
|
|
1691
|
+
encoding: 'utf8',
|
|
1692
|
+
timeout: 30_000,
|
|
1693
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1694
|
+
windowsHide: true,
|
|
514
1695
|
});
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
}
|
|
1696
|
+
return String(stdout || '');
|
|
1697
|
+
};
|
|
1698
|
+
const verifyRemoteMainContainsCommit = async (submodulePath: string, commit: string, branch = 'main'): Promise<void> => {
|
|
1699
|
+
await runGit(submodulePath, ['-c', 'protocol.file.allow=always', 'fetch', 'origin', `refs/heads/${branch}:refs/remotes/origin/${branch}`]);
|
|
1700
|
+
await runGit(submodulePath, ['merge-base', '--is-ancestor', commit, `refs/remotes/origin/${branch}`]);
|
|
1701
|
+
};
|
|
1702
|
+
const publishCommitToRemoteMain = async (submodulePath: string, commit: string, branch = 'main'): Promise<{ stdout: string; stderr: string; refspec: string }> => {
|
|
1703
|
+
const refspec = `${commit}:refs/heads/${branch}`;
|
|
1704
|
+
const { stdout, stderr } = await execFileAsync('git', ['push', 'origin', refspec], {
|
|
1705
|
+
cwd: submodulePath,
|
|
1706
|
+
encoding: 'utf8',
|
|
1707
|
+
timeout: 30_000,
|
|
1708
|
+
maxBuffer: REFINE_PATCH_EQUIVALENCE_OUTPUT_LIMIT_BYTES,
|
|
1709
|
+
windowsHide: true,
|
|
1710
|
+
});
|
|
1711
|
+
return { stdout: String(stdout || ''), stderr: String(stderr || ''), refspec };
|
|
1712
|
+
};
|
|
1713
|
+
const importCommitFromWorktreeSubmodule = async (submodulePath: string, worktreeSubmodulePath: string, commit: string): Promise<boolean> => {
|
|
1714
|
+
if (!fs.existsSync(worktreeSubmodulePath)) return false;
|
|
1715
|
+
try {
|
|
1716
|
+
await runGit(worktreeSubmodulePath, ['cat-file', '-e', `${commit}^{commit}`]);
|
|
1717
|
+
} catch {
|
|
1718
|
+
return false;
|
|
1719
|
+
}
|
|
1720
|
+
await runGit(submodulePath, ['-c', 'protocol.file.allow=always', 'fetch', worktreeSubmodulePath, commit]);
|
|
1721
|
+
await runGit(submodulePath, ['cat-file', '-e', `${commit}^{commit}`]);
|
|
1722
|
+
return true;
|
|
1723
|
+
};
|
|
522
1724
|
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
const
|
|
535
|
-
const
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
}
|
|
1725
|
+
const treeOutput = await runGit(repoRoot, ['ls-tree', '-r', '-z', mergedTree]);
|
|
1726
|
+
const gitlinks = treeOutput
|
|
1727
|
+
.split('\0')
|
|
1728
|
+
.filter(Boolean)
|
|
1729
|
+
.map(record => {
|
|
1730
|
+
const match = /^160000\s+commit\s+([0-9a-f]{40})\t(.+)$/.exec(record);
|
|
1731
|
+
return match ? { commit: match[1], path: match[2] } : null;
|
|
1732
|
+
})
|
|
1733
|
+
.filter((entry): entry is { commit: string; path: string } => !!entry);
|
|
1734
|
+
|
|
1735
|
+
for (const gitlink of gitlinks) {
|
|
1736
|
+
const submodulePath = pathResolve(repoRoot, gitlink.path);
|
|
1737
|
+
const entry: MeshRefineSubmoduleReachabilityEntry = {
|
|
1738
|
+
path: gitlink.path,
|
|
1739
|
+
commit: gitlink.commit,
|
|
1740
|
+
reachable: false,
|
|
1741
|
+
};
|
|
1742
|
+
try {
|
|
1743
|
+
if (!fs.existsSync(submodulePath)) {
|
|
1744
|
+
entry.error = `Submodule checkout missing at ${gitlink.path}`;
|
|
1745
|
+
entry.publishRequired = true;
|
|
1746
|
+
if (options.allowAutoPublishSubmoduleMainCommits === true) {
|
|
1747
|
+
entry.autoPublishAllowed = true;
|
|
1748
|
+
entry.autoPublishAttempted = false;
|
|
1749
|
+
entry.autoPublishSkippedReason = `submodule checkout missing at ${gitlink.path}; cannot perform non-force push to origin/main`;
|
|
1750
|
+
}
|
|
1751
|
+
entries.push(entry);
|
|
1752
|
+
continue;
|
|
1753
|
+
}
|
|
540
1754
|
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
1755
|
+
entry.checkedLocal = true;
|
|
1756
|
+
try {
|
|
1757
|
+
await runGit(submodulePath, ['cat-file', '-e', `${gitlink.commit}^{commit}`]);
|
|
1758
|
+
entry.localReachable = true;
|
|
1759
|
+
} catch {
|
|
1760
|
+
entry.localReachable = false;
|
|
1761
|
+
if (options.allowAutoPublishSubmoduleMainCommits === true && options.worktreeRoot) {
|
|
1762
|
+
try {
|
|
1763
|
+
const imported = await importCommitFromWorktreeSubmodule(
|
|
1764
|
+
submodulePath,
|
|
1765
|
+
pathResolve(options.worktreeRoot, gitlink.path),
|
|
1766
|
+
gitlink.commit,
|
|
1767
|
+
);
|
|
1768
|
+
if (imported) {
|
|
1769
|
+
entry.localReachable = true;
|
|
1770
|
+
entry.importedFromWorktree = true;
|
|
1771
|
+
}
|
|
1772
|
+
} catch (importError: any) {
|
|
1773
|
+
entry.autoPublishSkippedReason = `candidate commit was not present in the source checkout and could not be imported from worktree submodule: ${truncateValidationOutput(importError?.stderr || importError?.message || String(importError))}`;
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
// Probe the submodule remote before allowing cleanup/completion.
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
try {
|
|
1780
|
+
entry.remote = 'origin';
|
|
1781
|
+
let remoteUrl = '';
|
|
1782
|
+
try {
|
|
1783
|
+
remoteUrl = (await runGit(submodulePath, ['remote', 'get-url', 'origin'])).trim();
|
|
1784
|
+
if (!remoteUrl) throw new Error('origin remote has no URL');
|
|
1785
|
+
entry.remoteUrl = remoteUrl;
|
|
1786
|
+
} catch {
|
|
1787
|
+
entry.error = 'Submodule remote reachability check failed: no configured origin remote';
|
|
1788
|
+
entry.publishRequired = true;
|
|
1789
|
+
if (options.allowAutoPublishSubmoduleMainCommits === true) {
|
|
1790
|
+
entry.autoPublishAllowed = true;
|
|
1791
|
+
entry.autoPublishAttempted = false;
|
|
1792
|
+
entry.autoPublishSkippedReason = 'submodule origin remote is not configured; cannot perform non-force push to origin/main';
|
|
1793
|
+
}
|
|
1794
|
+
entries.push(entry);
|
|
1795
|
+
continue;
|
|
1796
|
+
}
|
|
1797
|
+
entry.remoteMainBranch = 'main';
|
|
1798
|
+
try {
|
|
1799
|
+
await verifyRemoteMainContainsCommit(submodulePath, gitlink.commit, 'main');
|
|
1800
|
+
entry.fetchedFromOrigin = true;
|
|
1801
|
+
entry.remoteReachable = true;
|
|
1802
|
+
entry.remoteMainReachable = true;
|
|
1803
|
+
entry.reachable = true;
|
|
1804
|
+
} catch (e: any) {
|
|
1805
|
+
entry.remoteReachable = false;
|
|
1806
|
+
entry.remoteMainReachable = false;
|
|
1807
|
+
entry.publishRequired = true;
|
|
1808
|
+
const details = truncateValidationOutput(e?.stderr || e?.message || String(e));
|
|
1809
|
+
entry.error = `Submodule remote main reachability check failed for origin/main: ${details}`;
|
|
1810
|
+
if (options.allowAutoPublishSubmoduleMainCommits === true && entry.localReachable === true) {
|
|
1811
|
+
entry.autoPublishAllowed = true;
|
|
1812
|
+
entry.autoPublishAttempted = true;
|
|
1813
|
+
try {
|
|
1814
|
+
const publish = await publishCommitToRemoteMain(submodulePath, gitlink.commit, 'main');
|
|
1815
|
+
entry.autoPublishRefspec = publish.refspec;
|
|
1816
|
+
entry.publishStdout = truncateValidationOutput(publish.stdout);
|
|
1817
|
+
entry.publishStderr = truncateValidationOutput(publish.stderr);
|
|
1818
|
+
entry.autoPublishSucceeded = true;
|
|
1819
|
+
await verifyRemoteMainContainsCommit(submodulePath, gitlink.commit, 'main');
|
|
1820
|
+
entry.fetchedFromOrigin = true;
|
|
1821
|
+
entry.remoteReachable = true;
|
|
1822
|
+
entry.remoteMainReachable = true;
|
|
1823
|
+
entry.autoPublishVerified = true;
|
|
1824
|
+
entry.publishRequired = false;
|
|
1825
|
+
entry.reachable = true;
|
|
1826
|
+
entry.error = undefined;
|
|
1827
|
+
} catch (publishError: any) {
|
|
1828
|
+
entry.autoPublishSucceeded = false;
|
|
1829
|
+
entry.autoPublishVerified = false;
|
|
1830
|
+
const publishDetails = truncateValidationOutput(publishError?.stderr || publishError?.message || String(publishError));
|
|
1831
|
+
entry.error = `Submodule auto-publish to origin/main failed or could not be verified: ${publishDetails}`;
|
|
1832
|
+
}
|
|
1833
|
+
} else if (options.allowAutoPublishSubmoduleMainCommits === true) {
|
|
1834
|
+
entry.autoPublishAllowed = true;
|
|
1835
|
+
entry.autoPublishAttempted = false;
|
|
1836
|
+
entry.autoPublishSkippedReason = entry.autoPublishSkippedReason
|
|
1837
|
+
|| 'candidate commit is not reachable in the source checkout or worktree submodule, so Refinery cannot push it to origin/main';
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
} catch (e: any) {
|
|
1841
|
+
entry.remoteReachable = false;
|
|
1842
|
+
entry.remoteMainReachable = false;
|
|
1843
|
+
entry.publishRequired = true;
|
|
1844
|
+
const details = truncateValidationOutput(e?.stderr || e?.message || String(e));
|
|
1845
|
+
entry.error = `Submodule remote main reachability check failed for origin/main: ${details}`;
|
|
1846
|
+
}
|
|
1847
|
+
} catch (e: any) {
|
|
1848
|
+
entry.error = truncateValidationOutput(e?.message || String(e));
|
|
1849
|
+
entry.publishRequired = true;
|
|
1850
|
+
}
|
|
1851
|
+
entries.push(entry);
|
|
574
1852
|
}
|
|
1853
|
+
|
|
1854
|
+
const unreachable = entries.filter(entry => !entry.reachable);
|
|
1855
|
+
return {
|
|
1856
|
+
status: unreachable.length ? 'failed' : 'passed',
|
|
1857
|
+
checked: entries.length,
|
|
1858
|
+
unreachable: unreachable.map(entry => ({ ...entry, publishRequired: entry.publishRequired !== false })),
|
|
1859
|
+
entries: entries.map(entry => entry.reachable ? entry : { ...entry, publishRequired: entry.publishRequired !== false }),
|
|
1860
|
+
durationMs: Date.now() - startedAt,
|
|
1861
|
+
autoPublishAllowed: options.allowAutoPublishSubmoduleMainCommits === true,
|
|
1862
|
+
autoPublishPolicySource: options.autoPublishPolicySource,
|
|
1863
|
+
};
|
|
1864
|
+
} catch (e: any) {
|
|
1865
|
+
const unreachable = entries.filter(entry => !entry.reachable).map(entry => ({ ...entry, publishRequired: true }));
|
|
1866
|
+
return {
|
|
1867
|
+
status: 'failed',
|
|
1868
|
+
checked: entries.length,
|
|
1869
|
+
unreachable,
|
|
1870
|
+
entries: entries.map(entry => entry.reachable ? entry : { ...entry, publishRequired: true }),
|
|
1871
|
+
durationMs: Date.now() - startedAt,
|
|
1872
|
+
autoPublishAllowed: options.allowAutoPublishSubmoduleMainCommits === true,
|
|
1873
|
+
autoPublishPolicySource: options.autoPublishPolicySource,
|
|
1874
|
+
error: truncateValidationOutput(e?.message || String(e)),
|
|
1875
|
+
};
|
|
575
1876
|
}
|
|
1877
|
+
}
|
|
576
1878
|
|
|
1879
|
+
function buildMeshRefineValidationPlan(mesh: any, workspace: string): Record<string, unknown> {
|
|
1880
|
+
const plan = resolveMeshRefineValidationPlan(mesh, workspace);
|
|
1881
|
+
const mapCommand = (command: MeshRefineValidationCommandPlan) => ({
|
|
1882
|
+
displayCommand: command.displayCommand,
|
|
1883
|
+
category: command.category,
|
|
1884
|
+
source: command.source,
|
|
1885
|
+
cwd: command.cwd,
|
|
1886
|
+
timeoutMs: command.timeoutMs,
|
|
1887
|
+
});
|
|
577
1888
|
return {
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
1889
|
+
source: plan.source,
|
|
1890
|
+
sourceType: plan.sourceType,
|
|
1891
|
+
bootstrapCommands: plan.bootstrapCommands.map(mapCommand),
|
|
1892
|
+
commands: plan.commands.map(mapCommand),
|
|
1893
|
+
unavailableReason: plan.unavailableReason,
|
|
1894
|
+
rejectedCommands: plan.rejectedCommands,
|
|
1895
|
+
suggestions: plan.suggestions,
|
|
1896
|
+
suggestedConfig: plan.suggestedConfig,
|
|
1897
|
+
note: plan.sourceType === 'unavailable'
|
|
1898
|
+
? 'No validation command will be executed until a repo mesh/refine config is provided. Heuristics are suggestions only.'
|
|
1899
|
+
: 'Validation commands are resolved from repo mesh/refine config; heuristics are suggestions only.',
|
|
587
1900
|
};
|
|
588
1901
|
}
|
|
589
1902
|
|
|
@@ -591,60 +1904,119 @@ async function runMeshRefineValidationGate(mesh: any, workspace: string): Promis
|
|
|
591
1904
|
const { execFile } = await import('node:child_process');
|
|
592
1905
|
const { promisify } = await import('node:util');
|
|
593
1906
|
const execFileAsync = promisify(execFile);
|
|
594
|
-
const selection =
|
|
1907
|
+
const selection = resolveMeshRefineValidationPlan(mesh, workspace);
|
|
595
1908
|
const summary: MeshRefineValidationSummary = {
|
|
596
1909
|
status: 'skipped',
|
|
597
1910
|
required: true,
|
|
598
1911
|
commandsRun: [],
|
|
1912
|
+
bootstrapCommandsRun: [],
|
|
599
1913
|
rejectedCommands: selection.rejectedCommands,
|
|
600
1914
|
skippedReason: undefined,
|
|
601
1915
|
timeoutMs: REFINE_VALIDATION_TIMEOUT_MS,
|
|
602
1916
|
outputLimitBytes: REFINE_VALIDATION_OUTPUT_LIMIT_BYTES,
|
|
1917
|
+
configSource: selection.source,
|
|
1918
|
+
configSourceType: selection.sourceType,
|
|
1919
|
+
suggestions: selection.suggestions,
|
|
1920
|
+
suggestedConfig: selection.suggestedConfig,
|
|
603
1921
|
};
|
|
604
1922
|
|
|
605
1923
|
if (!selection.commands.length) {
|
|
606
|
-
summary.skippedReason = 'validation_unavailable:
|
|
1924
|
+
summary.skippedReason = selection.unavailableReason || 'validation_unavailable: repo mesh/refine config did not provide executable validation.commands';
|
|
607
1925
|
return summary;
|
|
608
1926
|
}
|
|
609
1927
|
|
|
610
|
-
|
|
1928
|
+
const commandRecord = (candidate: MeshRefineValidationCommand, cwd: string, startedAt: number, result: any, passed: boolean, extras: Record<string, unknown> = {}) => ({
|
|
1929
|
+
command: candidate.command,
|
|
1930
|
+
args: candidate.args,
|
|
1931
|
+
displayCommand: candidate.displayCommand,
|
|
1932
|
+
category: candidate.category,
|
|
1933
|
+
source: candidate.source,
|
|
1934
|
+
cwd,
|
|
1935
|
+
passed,
|
|
1936
|
+
durationMs: Date.now() - startedAt,
|
|
1937
|
+
stdout: truncateValidationOutput(result?.stdout),
|
|
1938
|
+
stderr: truncateValidationOutput(result?.stderr || result?.message),
|
|
1939
|
+
...extras,
|
|
1940
|
+
});
|
|
1941
|
+
const isPackageManagerValidation = (candidate: MeshRefineValidationCommand): boolean => {
|
|
1942
|
+
const command = pathBasename(candidate.command).replace(/\.(?:cmd|exe)$/i, '');
|
|
1943
|
+
return ['npm', 'pnpm', 'yarn', 'bun'].includes(command)
|
|
1944
|
+
&& candidate.args.some(arg => arg === 'run' || arg === 'test' || arg === 'exec');
|
|
1945
|
+
};
|
|
1946
|
+
const dependenciesLikelyMissing = (cwd: string): boolean => {
|
|
1947
|
+
if (!fs.existsSync(pathJoin(cwd, 'package.json'))) return false;
|
|
1948
|
+
if (fs.existsSync(pathJoin(cwd, 'node_modules'))) return false;
|
|
1949
|
+
return ['package-lock.json', 'npm-shrinkwrap.json', 'pnpm-lock.yaml', 'yarn.lock', 'bun.lockb', 'bun.lock']
|
|
1950
|
+
.some(lock => fs.existsSync(pathJoin(cwd, lock)));
|
|
1951
|
+
};
|
|
1952
|
+
|
|
1953
|
+
for (const candidate of selection.bootstrapCommands) {
|
|
611
1954
|
const startedAt = Date.now();
|
|
1955
|
+
const cwd = candidate.cwd ? pathResolve(workspace, candidate.cwd) : workspace;
|
|
1956
|
+
const timeout = candidate.timeoutMs || REFINE_VALIDATION_TIMEOUT_MS;
|
|
612
1957
|
try {
|
|
613
1958
|
const result = await execFileAsync(candidate.command, candidate.args, {
|
|
614
|
-
cwd
|
|
1959
|
+
cwd,
|
|
615
1960
|
encoding: 'utf8',
|
|
616
|
-
timeout
|
|
617
|
-
maxBuffer: REFINE_VALIDATION_OUTPUT_LIMIT_BYTES,
|
|
618
|
-
env: { ...process.env, CI: process.env.CI || '1' },
|
|
619
|
-
});
|
|
620
|
-
summary.commandsRun.push({
|
|
621
|
-
command: candidate.command,
|
|
622
|
-
args: candidate.args,
|
|
623
|
-
displayCommand: candidate.displayCommand,
|
|
624
|
-
category: candidate.category,
|
|
625
|
-
source: candidate.source,
|
|
626
|
-
passed: true,
|
|
627
|
-
exitCode: 0,
|
|
628
|
-
durationMs: Date.now() - startedAt,
|
|
629
|
-
stdout: truncateValidationOutput(result.stdout),
|
|
630
|
-
stderr: truncateValidationOutput(result.stderr),
|
|
1961
|
+
timeout,
|
|
1962
|
+
maxBuffer: candidate.outputLimitBytes || REFINE_VALIDATION_OUTPUT_LIMIT_BYTES,
|
|
1963
|
+
env: { ...process.env, CI: process.env.CI || '1', ...(candidate.env || {}) },
|
|
631
1964
|
});
|
|
1965
|
+
summary.bootstrapCommandsRun.push(commandRecord(candidate, cwd, startedAt, result, true, { exitCode: 0 }));
|
|
632
1966
|
} catch (error: any) {
|
|
633
|
-
summary.
|
|
634
|
-
command: candidate.command,
|
|
635
|
-
args: candidate.args,
|
|
636
|
-
displayCommand: candidate.displayCommand,
|
|
637
|
-
category: candidate.category,
|
|
638
|
-
source: candidate.source,
|
|
639
|
-
passed: false,
|
|
1967
|
+
summary.bootstrapCommandsRun.push(commandRecord(candidate, cwd, startedAt, error, false, {
|
|
640
1968
|
exitCode: typeof error?.code === 'number' ? error.code : null,
|
|
641
1969
|
signal: typeof error?.signal === 'string' ? error.signal : null,
|
|
642
1970
|
timedOut: error?.killed === true || /timed out/i.test(String(error?.message || '')),
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
1971
|
+
failureKind: 'dependency_bootstrap_failed',
|
|
1972
|
+
}));
|
|
1973
|
+
summary.status = 'failed';
|
|
1974
|
+
summary.failureKind = 'dependency_bootstrap_failed';
|
|
1975
|
+
summary.failureCode = 'dependency_bootstrap_failed';
|
|
1976
|
+
return summary;
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
for (const candidate of selection.commands) {
|
|
1981
|
+
const startedAt = Date.now();
|
|
1982
|
+
const cwd = candidate.cwd ? pathResolve(workspace, candidate.cwd) : workspace;
|
|
1983
|
+
const timeout = candidate.timeoutMs || REFINE_VALIDATION_TIMEOUT_MS;
|
|
1984
|
+
if (selection.bootstrapCommands.length === 0 && isPackageManagerValidation(candidate) && dependenciesLikelyMissing(cwd)) {
|
|
1985
|
+
summary.commandsRun.push(commandRecord(candidate, cwd, startedAt, {
|
|
1986
|
+
stderr: 'Dependencies appear to be missing: package.json and a lockfile are present, but node_modules is absent. Configure validation.bootstrapCommands in repo mesh/refine config if Refinery should install/bootstrap before validation.',
|
|
1987
|
+
}, false, {
|
|
1988
|
+
exitCode: null,
|
|
1989
|
+
skipped: true,
|
|
1990
|
+
failureKind: 'missing_dependencies',
|
|
1991
|
+
}));
|
|
1992
|
+
summary.status = 'failed';
|
|
1993
|
+
summary.failureKind = 'missing_dependencies';
|
|
1994
|
+
summary.failureCode = 'missing_dependencies';
|
|
1995
|
+
return summary;
|
|
1996
|
+
}
|
|
1997
|
+
try {
|
|
1998
|
+
const result = await execFileAsync(candidate.command, candidate.args, {
|
|
1999
|
+
cwd,
|
|
2000
|
+
encoding: 'utf8',
|
|
2001
|
+
timeout,
|
|
2002
|
+
maxBuffer: candidate.outputLimitBytes || REFINE_VALIDATION_OUTPUT_LIMIT_BYTES,
|
|
2003
|
+
env: { ...process.env, CI: process.env.CI || '1', ...(candidate.env || {}) },
|
|
646
2004
|
});
|
|
2005
|
+
summary.commandsRun.push(commandRecord(candidate, cwd, startedAt, result, true, { exitCode: 0 }));
|
|
2006
|
+
} catch (error: any) {
|
|
2007
|
+
const stderr = truncateValidationOutput(error?.stderr || error?.message);
|
|
2008
|
+
const missingDependencyFailure = /Cannot find module|MODULE_NOT_FOUND|node_modules|command not found|not found/i.test(stderr);
|
|
2009
|
+
summary.commandsRun.push(commandRecord(candidate, cwd, startedAt, error, false, {
|
|
2010
|
+
exitCode: typeof error?.code === 'number' ? error.code : null,
|
|
2011
|
+
signal: typeof error?.signal === 'string' ? error.signal : null,
|
|
2012
|
+
timedOut: error?.killed === true || /timed out/i.test(String(error?.message || '')),
|
|
2013
|
+
...(missingDependencyFailure ? { failureKind: 'missing_dependencies' } : {}),
|
|
2014
|
+
}));
|
|
647
2015
|
summary.status = 'failed';
|
|
2016
|
+
if (missingDependencyFailure) {
|
|
2017
|
+
summary.failureKind = 'missing_dependencies';
|
|
2018
|
+
summary.failureCode = 'missing_dependencies';
|
|
2019
|
+
}
|
|
648
2020
|
return summary;
|
|
649
2021
|
}
|
|
650
2022
|
}
|
|
@@ -776,6 +2148,8 @@ export interface CommandRouterDeps {
|
|
|
776
2148
|
sessionHostControl?: SessionHostControlPlane | null;
|
|
777
2149
|
/** Selected-coordinator mesh peer telemetry surface for target daemons, when supported by the runtime. */
|
|
778
2150
|
getMeshPeerConnectionStatus?: (daemonId: string) => Record<string, unknown> | null;
|
|
2151
|
+
/** Dispatch a command to a remote mesh node via P2P/relay. Injected by cloud runtime; absent in standalone. */
|
|
2152
|
+
dispatchMeshCommand?: (daemonId: string, cmd: string, args: Record<string, unknown>) => Promise<unknown>;
|
|
779
2153
|
}
|
|
780
2154
|
|
|
781
2155
|
export interface CommandRouterResult {
|
|
@@ -887,42 +2261,266 @@ function summarizeSessionHostPruneResult(result: unknown): Record<string, unknow
|
|
|
887
2261
|
};
|
|
888
2262
|
}
|
|
889
2263
|
|
|
2264
|
+
function normalizeStandaloneHostCommandUrl(hostAddress: string): string {
|
|
2265
|
+
const raw = hostAddress.trim();
|
|
2266
|
+
if (!raw) throw new Error('hostAddress required');
|
|
2267
|
+
const url = new URL(raw.replace(/^ws:/, 'http:').replace(/^wss:/, 'https:'));
|
|
2268
|
+
url.pathname = '/api/v1/command';
|
|
2269
|
+
url.search = '';
|
|
2270
|
+
url.hash = '';
|
|
2271
|
+
return url.toString();
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
function buildMemberJoinNode(mesh: any, args: any, fallbackDaemonId?: string): Record<string, unknown> | null {
|
|
2275
|
+
const requestedNodeId = typeof args?.memberNodeId === 'string' ? args.memberNodeId.trim() : '';
|
|
2276
|
+
const explicit = args?.memberNode && typeof args.memberNode === 'object' && !Array.isArray(args.memberNode)
|
|
2277
|
+
? args.memberNode as Record<string, any>
|
|
2278
|
+
: null;
|
|
2279
|
+
const configured = Array.isArray(mesh?.nodes)
|
|
2280
|
+
? (requestedNodeId
|
|
2281
|
+
? mesh.nodes.find((node: any) => node?.id === requestedNodeId || node?.nodeId === requestedNodeId)
|
|
2282
|
+
: mesh.nodes[0])
|
|
2283
|
+
: null;
|
|
2284
|
+
const source = explicit || configured;
|
|
2285
|
+
const workspace = typeof source?.workspace === 'string' && source.workspace.trim()
|
|
2286
|
+
? source.workspace.trim()
|
|
2287
|
+
: typeof args?.workspace === 'string' && args.workspace.trim()
|
|
2288
|
+
? args.workspace.trim()
|
|
2289
|
+
: process.cwd();
|
|
2290
|
+
if (!workspace) return null;
|
|
2291
|
+
const nodeId = typeof source?.id === 'string' && source.id.trim()
|
|
2292
|
+
? source.id.trim()
|
|
2293
|
+
: typeof source?.nodeId === 'string' && source.nodeId.trim()
|
|
2294
|
+
? source.nodeId.trim()
|
|
2295
|
+
: undefined;
|
|
2296
|
+
return {
|
|
2297
|
+
...(nodeId ? { id: nodeId } : {}),
|
|
2298
|
+
workspace,
|
|
2299
|
+
...(typeof source?.repoRoot === 'string' && source.repoRoot.trim() ? { repoRoot: source.repoRoot.trim() } : {}),
|
|
2300
|
+
...(typeof source?.daemonId === 'string' && source.daemonId.trim() ? { daemonId: source.daemonId.trim() } : fallbackDaemonId ? { daemonId: fallbackDaemonId } : {}),
|
|
2301
|
+
...(typeof source?.machineId === 'string' && source.machineId.trim() ? { machineId: source.machineId.trim() } : {}),
|
|
2302
|
+
userOverrides: source?.userOverrides && typeof source.userOverrides === 'object' && !Array.isArray(source.userOverrides) ? source.userOverrides : {},
|
|
2303
|
+
policy: source?.policy && typeof source.policy === 'object' && !Array.isArray(source.policy) ? source.policy : {},
|
|
2304
|
+
role: 'member',
|
|
2305
|
+
};
|
|
2306
|
+
}
|
|
2307
|
+
|
|
890
2308
|
export class DaemonCommandRouter {
|
|
891
2309
|
private deps: CommandRouterDeps;
|
|
892
2310
|
/** In-memory cache for cloud-originating meshes passed via inlineMesh.
|
|
893
2311
|
* Allows the MCP server to query mesh data via get_mesh even when
|
|
894
2312
|
* the mesh doesn't exist in the local meshes.json file. */
|
|
895
2313
|
private inlineMeshCache = new Map<string, any>();
|
|
2314
|
+
/** Coordinator-owned whole-mesh aggregate status snapshots. Browser callers read this by default. */
|
|
2315
|
+
private aggregateMeshStatusCache = new Map<string, { builtAt: number; snapshot: any; queueRevision: string }>();
|
|
2316
|
+
/** In-memory async Refinery jobs keyed by meshId:nodeId to reject/return duplicate in-flight requests. */
|
|
2317
|
+
private runningRefineJobs = new Map<string, MeshRefineJobHandle>();
|
|
2318
|
+
/** Terminal async Refinery jobs preserve a clear answer after the worktree node has been removed. */
|
|
2319
|
+
private terminalRefineJobs = new Map<string, MeshRefineTerminalJob>();
|
|
896
2320
|
|
|
897
2321
|
constructor(deps: CommandRouterDeps) {
|
|
898
2322
|
this.deps = deps;
|
|
899
2323
|
}
|
|
900
2324
|
|
|
2325
|
+
private cloneJsonValue<T>(value: T): T {
|
|
2326
|
+
if (typeof structuredClone === 'function') return structuredClone(value);
|
|
2327
|
+
return JSON.parse(JSON.stringify(value)) as T;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
private hydrateCachedAggregateMeshStatusFromInline(snapshot: any, mesh: any, options?: { requireDirectPeerTruth?: boolean }): any {
|
|
2331
|
+
if (!mesh || typeof mesh !== 'object' || !Array.isArray(mesh.nodes) || !Array.isArray(snapshot?.nodes)) return snapshot;
|
|
2332
|
+
const inlineNodesById = new Map<string, any>();
|
|
2333
|
+
for (const node of mesh.nodes) {
|
|
2334
|
+
const nodeId = readInlineMeshNodeId(node);
|
|
2335
|
+
if (nodeId) inlineNodesById.set(nodeId, node);
|
|
2336
|
+
}
|
|
2337
|
+
if (!inlineNodesById.size) return snapshot;
|
|
2338
|
+
|
|
2339
|
+
let changed = false;
|
|
2340
|
+
const unavailableNodeIds = new Set<string>();
|
|
2341
|
+
const sourceOfTruth = readObjectRecord(snapshot.sourceOfTruth);
|
|
2342
|
+
const directPeerTruth = readObjectRecord(sourceOfTruth.directPeerTruth);
|
|
2343
|
+
for (const entry of Array.isArray(directPeerTruth.unavailableNodeIds) ? directPeerTruth.unavailableNodeIds : []) {
|
|
2344
|
+
const nodeId = readStringValue(entry);
|
|
2345
|
+
if (nodeId) unavailableNodeIds.add(nodeId);
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
const nodes = snapshot.nodes.map((statusNode: any) => {
|
|
2349
|
+
const nodeId = readStringValue(statusNode?.nodeId, statusNode?.id);
|
|
2350
|
+
const inlineNode = nodeId ? inlineNodesById.get(nodeId) : undefined;
|
|
2351
|
+
if (!inlineNode) return statusNode;
|
|
2352
|
+
const liveGit = buildInlineMeshTransitGitStatus(inlineNode);
|
|
2353
|
+
if (!liveGit) return statusNode;
|
|
2354
|
+
const nextStatus = { ...statusNode };
|
|
2355
|
+
nextStatus.git = liveGit;
|
|
2356
|
+
nextStatus.health = deriveMeshNodeHealthFromGit(liveGit);
|
|
2357
|
+
applyInlineMeshBranchConvergence(mesh, inlineNode, nextStatus);
|
|
2358
|
+
nextStatus.launchReady = readBooleanValue(nextStatus.launchReady) ?? true;
|
|
2359
|
+
const connection = readObjectRecord(nextStatus.connection);
|
|
2360
|
+
const connectionState = readStringValue(connection.state);
|
|
2361
|
+
const connectionReported = readBooleanValue(connection.reported) ?? false;
|
|
2362
|
+
if (!connectionReported || connectionState === 'unknown') {
|
|
2363
|
+
nextStatus.connection = buildLivePeerGitConnection(connection);
|
|
2364
|
+
}
|
|
2365
|
+
delete nextStatus.gitProbePending;
|
|
2366
|
+
const error = readStringValue(nextStatus.error);
|
|
2367
|
+
if (error && /pending_git|git probe|live peer git snapshot|no peer git snapshot/i.test(error)) delete nextStatus.error;
|
|
2368
|
+
if (!readStringValue(nextStatus.machineStatus)) nextStatus.machineStatus = 'online';
|
|
2369
|
+
if (nodeId) unavailableNodeIds.delete(nodeId);
|
|
2370
|
+
changed = true;
|
|
2371
|
+
return nextStatus;
|
|
2372
|
+
});
|
|
2373
|
+
|
|
2374
|
+
const aggregateDirectTruthSatisfied = sourceOfTruth.coordinatorOwnsLiveTruth === true
|
|
2375
|
+
|| directPeerTruth.satisfied === true;
|
|
2376
|
+
if (!changed && !(options?.requireDirectPeerTruth && unavailableNodeIds.size > 0 && !aggregateDirectTruthSatisfied)) return snapshot;
|
|
2377
|
+
const nextSourceOfTruth = {
|
|
2378
|
+
...sourceOfTruth,
|
|
2379
|
+
...(Object.keys(directPeerTruth).length ? {
|
|
2380
|
+
directPeerTruth: {
|
|
2381
|
+
...directPeerTruth,
|
|
2382
|
+
satisfied: options?.requireDirectPeerTruth === true
|
|
2383
|
+
? aggregateDirectTruthSatisfied || unavailableNodeIds.size === 0
|
|
2384
|
+
: directPeerTruth.satisfied,
|
|
2385
|
+
unavailableNodeIds: [...unavailableNodeIds],
|
|
2386
|
+
},
|
|
2387
|
+
...(options?.requireDirectPeerTruth === true ? {
|
|
2388
|
+
coordinatorOwnsLiveTruth: aggregateDirectTruthSatisfied || unavailableNodeIds.size === 0,
|
|
2389
|
+
currentStatus: aggregateDirectTruthSatisfied || unavailableNodeIds.size === 0 ? 'live_git_and_session_probes' : 'direct_peer_truth_unavailable',
|
|
2390
|
+
} : {}),
|
|
2391
|
+
} : {}),
|
|
2392
|
+
};
|
|
2393
|
+
return {
|
|
2394
|
+
...snapshot,
|
|
2395
|
+
...(options?.requireDirectPeerTruth === true && unavailableNodeIds.size > 0 && !aggregateDirectTruthSatisfied ? {
|
|
2396
|
+
success: false,
|
|
2397
|
+
code: 'mesh_direct_peer_truth_unavailable',
|
|
2398
|
+
error: 'Selected coordinator could not confirm direct mesh truth for every remote node yet.',
|
|
2399
|
+
} : {}),
|
|
2400
|
+
sourceOfTruth: nextSourceOfTruth,
|
|
2401
|
+
branchConvergenceSummary: summarizeInlineMeshBranchConvergence(nodes),
|
|
2402
|
+
nodes,
|
|
2403
|
+
};
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
private getCachedAggregateMeshStatus(meshId: string, mesh?: any, options?: { requireDirectPeerTruth?: boolean }): any | null {
|
|
2407
|
+
const cached = this.aggregateMeshStatusCache.get(meshId);
|
|
2408
|
+
if (!cached?.snapshot || cached.snapshot.success !== true || !Array.isArray(cached.snapshot.nodes)) return null;
|
|
2409
|
+
if (cached.queueRevision !== getMeshQueueRevision(meshId)) return null;
|
|
2410
|
+
let snapshot = this.cloneJsonValue(cached.snapshot);
|
|
2411
|
+
snapshot = this.hydrateCachedAggregateMeshStatusFromInline(snapshot, mesh, options);
|
|
2412
|
+
if (shouldRefreshStalePendingAggregate(snapshot, options)) return null;
|
|
2413
|
+
const ageMs = Math.max(0, Date.now() - cached.builtAt);
|
|
2414
|
+
const sourceOfTruth = snapshot.sourceOfTruth && typeof snapshot.sourceOfTruth === 'object'
|
|
2415
|
+
? snapshot.sourceOfTruth
|
|
2416
|
+
: {};
|
|
2417
|
+
snapshot.sourceOfTruth = {
|
|
2418
|
+
...sourceOfTruth,
|
|
2419
|
+
aggregateSnapshot: {
|
|
2420
|
+
...(sourceOfTruth.aggregateSnapshot && typeof sourceOfTruth.aggregateSnapshot === 'object'
|
|
2421
|
+
? sourceOfTruth.aggregateSnapshot
|
|
2422
|
+
: {}),
|
|
2423
|
+
owner: 'coordinator_daemon_memory',
|
|
2424
|
+
cached: true,
|
|
2425
|
+
source: 'memory',
|
|
2426
|
+
refreshReason: 'memory_cache_hit',
|
|
2427
|
+
ageMs,
|
|
2428
|
+
cachedAt: new Date(cached.builtAt).toISOString(),
|
|
2429
|
+
returnedAt: new Date().toISOString(),
|
|
2430
|
+
},
|
|
2431
|
+
};
|
|
2432
|
+
return snapshot;
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
private rememberAggregateMeshStatus(meshId: string, snapshot: any, refreshReason: string): any {
|
|
2436
|
+
if (!snapshot || typeof snapshot !== 'object' || snapshot.success !== true || !Array.isArray(snapshot.nodes)) return snapshot;
|
|
2437
|
+
const builtAt = Date.now();
|
|
2438
|
+
const next = this.cloneJsonValue(snapshot);
|
|
2439
|
+
const sourceOfTruth = next.sourceOfTruth && typeof next.sourceOfTruth === 'object'
|
|
2440
|
+
? next.sourceOfTruth
|
|
2441
|
+
: {};
|
|
2442
|
+
next.sourceOfTruth = {
|
|
2443
|
+
...sourceOfTruth,
|
|
2444
|
+
aggregateSnapshot: {
|
|
2445
|
+
owner: 'coordinator_daemon_memory',
|
|
2446
|
+
cached: false,
|
|
2447
|
+
source: 'live_refresh',
|
|
2448
|
+
refreshReason,
|
|
2449
|
+
ageMs: 0,
|
|
2450
|
+
cachedAt: new Date(builtAt).toISOString(),
|
|
2451
|
+
returnedAt: new Date(builtAt).toISOString(),
|
|
2452
|
+
},
|
|
2453
|
+
};
|
|
2454
|
+
this.aggregateMeshStatusCache.set(meshId, { builtAt, snapshot: this.cloneJsonValue(next), queueRevision: getMeshQueueRevision(meshId) });
|
|
2455
|
+
return next;
|
|
2456
|
+
}
|
|
2457
|
+
|
|
901
2458
|
public getCachedInlineMesh(meshId: string, inlineMesh?: unknown): any | undefined {
|
|
902
2459
|
if (inlineMesh && typeof inlineMesh === 'object') {
|
|
903
|
-
this.
|
|
904
|
-
return inlineMesh as any;
|
|
2460
|
+
return this.warmInlineMeshCache(meshId, inlineMesh);
|
|
905
2461
|
}
|
|
906
2462
|
return this.inlineMeshCache.get(meshId);
|
|
907
2463
|
}
|
|
908
2464
|
|
|
2465
|
+
private warmInlineMeshCache(meshId: string, inlineMesh?: unknown): any | undefined {
|
|
2466
|
+
if (!inlineMesh || typeof inlineMesh !== 'object') return undefined;
|
|
2467
|
+
const sanitizedInlineMesh = sanitizeInlineMesh(inlineMesh as any);
|
|
2468
|
+
const cached = this.inlineMeshCache.get(meshId);
|
|
2469
|
+
if (cached) {
|
|
2470
|
+
const merged = reconcileInlineMeshCache(cached, sanitizedInlineMesh);
|
|
2471
|
+
this.inlineMeshCache.set(meshId, merged);
|
|
2472
|
+
return merged;
|
|
2473
|
+
}
|
|
2474
|
+
this.inlineMeshCache.set(meshId, sanitizedInlineMesh as any);
|
|
2475
|
+
return sanitizedInlineMesh as any;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
909
2478
|
private async getMeshForCommand(
|
|
910
2479
|
meshId: string,
|
|
911
2480
|
inlineMesh?: unknown,
|
|
912
2481
|
options?: { preferInline?: boolean },
|
|
913
|
-
): Promise<{ mesh: any; inline: boolean } | null> {
|
|
2482
|
+
): Promise<{ mesh: any; inline: boolean; source: 'inline_cache' | 'inline_bootstrap' | 'local_config' } | null> {
|
|
914
2483
|
const preferInline = options?.preferInline === true;
|
|
915
2484
|
if (preferInline) {
|
|
916
|
-
const cached = this.getCachedInlineMesh(meshId
|
|
917
|
-
if (cached)
|
|
2485
|
+
const cached = this.getCachedInlineMesh(meshId);
|
|
2486
|
+
if (cached) {
|
|
2487
|
+
if (inlineMeshCarriesTransientNodeTruth(inlineMesh)) {
|
|
2488
|
+
const merged = reconcileInlineMeshCache(cached, inlineMesh as any);
|
|
2489
|
+
this.inlineMeshCache.set(meshId, sanitizeInlineMesh(merged));
|
|
2490
|
+
return { mesh: merged, inline: true, source: 'inline_cache' };
|
|
2491
|
+
}
|
|
2492
|
+
return { mesh: cached, inline: true, source: 'inline_cache' };
|
|
2493
|
+
}
|
|
2494
|
+
if (inlineMeshCarriesTransientNodeTruth(inlineMesh)) {
|
|
2495
|
+
this.warmInlineMeshCache(meshId, inlineMesh);
|
|
2496
|
+
return { mesh: inlineMesh, inline: true, source: 'inline_bootstrap' };
|
|
2497
|
+
}
|
|
918
2498
|
}
|
|
919
2499
|
try {
|
|
920
2500
|
const { getMesh } = await import('../config/mesh-config.js');
|
|
921
2501
|
const mesh = getMesh(meshId);
|
|
922
|
-
if (mesh) return { mesh, inline: false };
|
|
2502
|
+
if (mesh) return { mesh, inline: false, source: 'local_config' };
|
|
923
2503
|
} catch { /* fall through to inline cache */ }
|
|
924
|
-
const cached = this.getCachedInlineMesh(meshId
|
|
925
|
-
|
|
2504
|
+
const cached = this.getCachedInlineMesh(meshId);
|
|
2505
|
+
if (cached) return { mesh: cached, inline: true, source: 'inline_cache' };
|
|
2506
|
+
const warmedInline = this.warmInlineMeshCache(meshId, inlineMesh);
|
|
2507
|
+
return warmedInline ? { mesh: warmedInline, inline: true, source: 'inline_bootstrap' } : null;
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
private invalidateAggregateMeshStatus(meshId: string): void {
|
|
2511
|
+
this.aggregateMeshStatusCache.delete(meshId);
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
private async requireMeshHostMutationOwner(meshId: string, inlineMesh: unknown, operation: string): Promise<CommandRouterResult | null> {
|
|
2516
|
+
const meshRecord = await this.getMeshForCommand(meshId, inlineMesh, { preferInline: true });
|
|
2517
|
+
const mesh = meshRecord?.mesh;
|
|
2518
|
+
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
2519
|
+
const meshHost = resolveMeshHostStatus(mesh);
|
|
2520
|
+
if (!meshHost.canOwnCoordinator || !meshHost.canOwnQueue) {
|
|
2521
|
+
return { ...buildMeshHostRequiredFailure(mesh, operation), success: false, meshId };
|
|
2522
|
+
}
|
|
2523
|
+
return null;
|
|
926
2524
|
}
|
|
927
2525
|
|
|
928
2526
|
private updateInlineMeshNode(meshId: string, mesh: any, node: any): void {
|
|
@@ -932,6 +2530,7 @@ export class DaemonCommandRouter {
|
|
|
932
2530
|
else mesh.nodes.push(node);
|
|
933
2531
|
mesh.updatedAt = new Date().toISOString();
|
|
934
2532
|
this.inlineMeshCache.set(meshId, mesh);
|
|
2533
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
935
2534
|
}
|
|
936
2535
|
|
|
937
2536
|
private removeInlineMeshNode(meshId: string, mesh: any, nodeId: string): boolean {
|
|
@@ -941,6 +2540,7 @@ export class DaemonCommandRouter {
|
|
|
941
2540
|
mesh.nodes.splice(idx, 1);
|
|
942
2541
|
mesh.updatedAt = new Date().toISOString();
|
|
943
2542
|
this.inlineMeshCache.set(meshId, mesh);
|
|
2543
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
944
2544
|
return true;
|
|
945
2545
|
}
|
|
946
2546
|
|
|
@@ -1219,6 +2819,7 @@ export class DaemonCommandRouter {
|
|
|
1219
2819
|
const deletedSessionIds: string[] = [];
|
|
1220
2820
|
const skippedSessionIds: string[] = [];
|
|
1221
2821
|
const skippedLiveSessionIds: string[] = [];
|
|
2822
|
+
const skippedCoordinatorSessionIds: string[] = [];
|
|
1222
2823
|
const deleteUnsupportedSessionIds: string[] = [];
|
|
1223
2824
|
const recordsRemainSessionIds: string[] = [];
|
|
1224
2825
|
const errors: Array<{ sessionId: string; error: string }> = [];
|
|
@@ -1253,6 +2854,12 @@ export class DaemonCommandRouter {
|
|
|
1253
2854
|
const completed = this.isCompletedHostedSession(record);
|
|
1254
2855
|
const surfaceKind = getSessionHostSurfaceKind(record);
|
|
1255
2856
|
const liveRuntime = surfaceKind === 'live_runtime';
|
|
2857
|
+
const coordinatorSession = readStringValue(record?.meta?.meshCoordinatorFor) === args.meshId;
|
|
2858
|
+
if (!hasExplicitSessionIds && coordinatorSession) {
|
|
2859
|
+
skippedSessionIds.push(sessionId);
|
|
2860
|
+
skippedCoordinatorSessionIds.push(sessionId);
|
|
2861
|
+
continue;
|
|
2862
|
+
}
|
|
1256
2863
|
if (!hasExplicitSessionIds && liveRuntime) {
|
|
1257
2864
|
skippedSessionIds.push(sessionId);
|
|
1258
2865
|
skippedLiveSessionIds.push(sessionId);
|
|
@@ -1322,6 +2929,7 @@ export class DaemonCommandRouter {
|
|
|
1322
2929
|
deletedSessionIds,
|
|
1323
2930
|
skippedSessionIds,
|
|
1324
2931
|
skippedLiveSessionIds,
|
|
2932
|
+
skippedCoordinatorSessionIds,
|
|
1325
2933
|
...(deleteUnsupported ? {
|
|
1326
2934
|
deleteUnsupported: true,
|
|
1327
2935
|
effectiveCleanup: args.mode === 'stop_and_delete'
|
|
@@ -1462,6 +3070,567 @@ export class DaemonCommandRouter {
|
|
|
1462
3070
|
}
|
|
1463
3071
|
}
|
|
1464
3072
|
|
|
3073
|
+
|
|
3074
|
+
private buildRefineJobKey(meshId: string, nodeId: string): string {
|
|
3075
|
+
return `${meshId}:${nodeId}`;
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
private buildRefineJobHandle(args: {
|
|
3079
|
+
meshId: string;
|
|
3080
|
+
nodeId: string;
|
|
3081
|
+
node?: any;
|
|
3082
|
+
status?: MeshRefineAsyncJobStatus;
|
|
3083
|
+
startedAt?: string;
|
|
3084
|
+
completedAt?: string;
|
|
3085
|
+
jobId?: string;
|
|
3086
|
+
interactionId?: string;
|
|
3087
|
+
retryOfJobId?: string;
|
|
3088
|
+
}): MeshRefineJobHandle {
|
|
3089
|
+
return {
|
|
3090
|
+
success: true,
|
|
3091
|
+
async: true,
|
|
3092
|
+
status: args.status || 'accepted',
|
|
3093
|
+
jobId: args.jobId || `refine_${createInteractionId()}`,
|
|
3094
|
+
interactionId: args.interactionId || createInteractionId(),
|
|
3095
|
+
meshId: args.meshId,
|
|
3096
|
+
nodeId: args.nodeId,
|
|
3097
|
+
targetNodeId: args.nodeId,
|
|
3098
|
+
targetDaemonId: readStringValue(args.node?.daemonId),
|
|
3099
|
+
workspace: readStringValue(args.node?.workspace),
|
|
3100
|
+
startedAt: args.startedAt || new Date().toISOString(),
|
|
3101
|
+
...(args.completedAt ? { completedAt: args.completedAt } : {}),
|
|
3102
|
+
...(args.retryOfJobId ? { retryOfJobId: args.retryOfJobId } : {}),
|
|
3103
|
+
eventDelivery: { pendingEvents: true, ledger: true },
|
|
3104
|
+
evidence: {
|
|
3105
|
+
pendingEventsCommand: 'get_pending_mesh_events',
|
|
3106
|
+
ledgerCommand: 'get_mesh_ledger_slice',
|
|
3107
|
+
taskHistoryKind: args.status === 'completed' ? 'task_completed' : args.status === 'failed' ? 'task_failed' : 'task_dispatched',
|
|
3108
|
+
},
|
|
3109
|
+
};
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
private queueRefineJobEvent(event: 'refine:accepted' | 'refine:completed' | 'refine:failed', handle: MeshRefineJobHandle, result?: Record<string, unknown>): void {
|
|
3113
|
+
const metadataEvent = {
|
|
3114
|
+
source: 'refine_mesh_node_async_job',
|
|
3115
|
+
jobId: handle.jobId,
|
|
3116
|
+
interactionId: handle.interactionId,
|
|
3117
|
+
meshId: handle.meshId,
|
|
3118
|
+
nodeId: handle.targetNodeId,
|
|
3119
|
+
targetDaemonId: handle.targetDaemonId,
|
|
3120
|
+
workspace: handle.workspace,
|
|
3121
|
+
status: handle.status,
|
|
3122
|
+
startedAt: handle.startedAt,
|
|
3123
|
+
completedAt: handle.completedAt,
|
|
3124
|
+
retryOfJobId: handle.retryOfJobId,
|
|
3125
|
+
...(result ? { result } : {}),
|
|
3126
|
+
};
|
|
3127
|
+
const eventPayload = {
|
|
3128
|
+
event,
|
|
3129
|
+
meshId: handle.meshId,
|
|
3130
|
+
nodeLabel: handle.targetNodeId,
|
|
3131
|
+
nodeId: handle.targetNodeId,
|
|
3132
|
+
workspace: handle.workspace,
|
|
3133
|
+
metadataEvent,
|
|
3134
|
+
queuedAt: Date.now(),
|
|
3135
|
+
};
|
|
3136
|
+
if (typeof this.deps.instanceManager?.getByCategory === 'function') {
|
|
3137
|
+
const forwarded = handleMeshForwardEvent(
|
|
3138
|
+
{ instanceManager: this.deps.instanceManager } as any,
|
|
3139
|
+
{
|
|
3140
|
+
event,
|
|
3141
|
+
meshId: handle.meshId,
|
|
3142
|
+
nodeId: handle.targetNodeId,
|
|
3143
|
+
workspace: handle.workspace,
|
|
3144
|
+
jobId: handle.jobId,
|
|
3145
|
+
interactionId: handle.interactionId,
|
|
3146
|
+
status: handle.status,
|
|
3147
|
+
targetDaemonId: handle.targetDaemonId,
|
|
3148
|
+
startedAt: handle.startedAt,
|
|
3149
|
+
completedAt: handle.completedAt,
|
|
3150
|
+
retryOfJobId: handle.retryOfJobId,
|
|
3151
|
+
...(result ? { result } : {}),
|
|
3152
|
+
},
|
|
3153
|
+
);
|
|
3154
|
+
if (forwarded?.success === true) return;
|
|
3155
|
+
LOG.warn('Mesh', `[Refinery] Failed to forward async refine event ${event}: ${forwarded?.error || 'unknown error'}`);
|
|
3156
|
+
}
|
|
3157
|
+
queuePendingMeshCoordinatorEvent(eventPayload);
|
|
3158
|
+
}
|
|
3159
|
+
|
|
3160
|
+
private async appendRefineJobLedger(kind: 'task_dispatched' | 'task_completed' | 'task_failed', handle: MeshRefineJobHandle, result?: Record<string, unknown>): Promise<void> {
|
|
3161
|
+
try {
|
|
3162
|
+
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
3163
|
+
appendLedgerEntry(handle.meshId, {
|
|
3164
|
+
kind,
|
|
3165
|
+
nodeId: handle.targetNodeId,
|
|
3166
|
+
payload: {
|
|
3167
|
+
source: 'refine_mesh_node_async_job',
|
|
3168
|
+
refineJob: {
|
|
3169
|
+
jobId: handle.jobId,
|
|
3170
|
+
interactionId: handle.interactionId,
|
|
3171
|
+
status: handle.status,
|
|
3172
|
+
meshId: handle.meshId,
|
|
3173
|
+
nodeId: handle.targetNodeId,
|
|
3174
|
+
targetDaemonId: handle.targetDaemonId,
|
|
3175
|
+
workspace: handle.workspace,
|
|
3176
|
+
startedAt: handle.startedAt,
|
|
3177
|
+
completedAt: handle.completedAt,
|
|
3178
|
+
retryOfJobId: handle.retryOfJobId,
|
|
3179
|
+
},
|
|
3180
|
+
async: true,
|
|
3181
|
+
retryOfJobId: handle.retryOfJobId,
|
|
3182
|
+
...(result ? {
|
|
3183
|
+
success: result.success === true,
|
|
3184
|
+
result,
|
|
3185
|
+
finalBranchConvergenceState: result.finalBranchConvergenceState,
|
|
3186
|
+
} : {}),
|
|
3187
|
+
},
|
|
3188
|
+
});
|
|
3189
|
+
} catch (e: any) {
|
|
3190
|
+
LOG.warn('Mesh', `[Refinery] Failed to append async refine ledger entry: ${e?.message || e}`);
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
private async executeMeshRefineNodeSynchronously(meshId: string, nodeId: string, args: any): Promise<CommandRouterResult> {
|
|
3195
|
+
const refineStages: Array<Record<string, unknown>> = [];
|
|
3196
|
+
try {
|
|
3197
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
3198
|
+
const mesh = meshRecord?.mesh;
|
|
3199
|
+
const node = mesh?.nodes?.find((n: any) => n.id === nodeId || n.nodeId === nodeId);
|
|
3200
|
+
if (!node) return { success: false, error: `Node '${nodeId}' not found in mesh`, refineStages };
|
|
3201
|
+
|
|
3202
|
+
if (!node.isLocalWorktree || !node.workspace) {
|
|
3203
|
+
return { success: false, error: `Refinery requires a local worktree node`, refineStages };
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
const sourceNode = node.clonedFromNodeId
|
|
3207
|
+
? mesh?.nodes.find((n: any) => n.id === node.clonedFromNodeId || n.nodeId === node.clonedFromNodeId)
|
|
3208
|
+
: mesh?.nodes.find((n: any) => !n.isLocalWorktree);
|
|
3209
|
+
const repoRoot = sourceNode?.repoRoot || sourceNode?.workspace;
|
|
3210
|
+
if (!repoRoot) return { success: false, error: 'Source node repoRoot not found', refineStages };
|
|
3211
|
+
|
|
3212
|
+
const { execFile } = await import('node:child_process');
|
|
3213
|
+
const { promisify } = await import('node:util');
|
|
3214
|
+
const execFileAsync = promisify(execFile);
|
|
3215
|
+
|
|
3216
|
+
const resolveStarted = Date.now();
|
|
3217
|
+
const { stdout: branchStdout } = await execFileAsync('git', ['branch', '--show-current'], { cwd: node.workspace, encoding: 'utf8' });
|
|
3218
|
+
const branch = branchStdout.trim();
|
|
3219
|
+
if (!branch) return { success: false, error: 'Could not determine branch of the worktree node', refineStages };
|
|
3220
|
+
|
|
3221
|
+
const { stdout: baseBranchStdout } = await execFileAsync('git', ['branch', '--show-current'], { cwd: repoRoot, encoding: 'utf8' });
|
|
3222
|
+
const baseBranch = baseBranchStdout.trim();
|
|
3223
|
+
const { stdout: baseHeadStdout } = await execFileAsync('git', ['rev-parse', 'HEAD'], { cwd: repoRoot, encoding: 'utf8' });
|
|
3224
|
+
const { stdout: branchHeadStdout } = await execFileAsync('git', ['rev-parse', branch], { cwd: node.workspace, encoding: 'utf8' });
|
|
3225
|
+
const baseHead = baseHeadStdout.trim();
|
|
3226
|
+
const branchHead = branchHeadStdout.trim();
|
|
3227
|
+
recordMeshRefineStage(refineStages, 'resolve_refs', 'passed', resolveStarted, { branch, baseBranch, baseHead, branchHead });
|
|
3228
|
+
|
|
3229
|
+
const validationStarted = Date.now();
|
|
3230
|
+
const validationSummary = await runMeshRefineValidationGate(mesh, node.workspace);
|
|
3231
|
+
recordMeshRefineStage(
|
|
3232
|
+
refineStages,
|
|
3233
|
+
'validation',
|
|
3234
|
+
validationSummary.status === 'passed' ? 'passed' : validationSummary.status === 'failed' ? 'failed' : 'skipped',
|
|
3235
|
+
validationStarted,
|
|
3236
|
+
{ validationStatus: validationSummary.status, commandsRun: validationSummary.commandsRun.length },
|
|
3237
|
+
);
|
|
3238
|
+
if (validationSummary.status === 'failed') {
|
|
3239
|
+
return {
|
|
3240
|
+
success: false,
|
|
3241
|
+
code: validationSummary.failureCode || 'validation_failed',
|
|
3242
|
+
convergenceStatus: 'blocked_review',
|
|
3243
|
+
error: validationSummary.failureCode === 'missing_dependencies'
|
|
3244
|
+
? 'Refinery validation dependencies are missing; merge/refine was not attempted. Configure validation.bootstrapCommands if Refinery should bootstrap dependencies before validation.'
|
|
3245
|
+
: validationSummary.failureCode === 'dependency_bootstrap_failed'
|
|
3246
|
+
? 'Refinery dependency/bootstrap command failed; merge/refine was not attempted.'
|
|
3247
|
+
: 'Refinery validation gate failed; merge/refine was not attempted.',
|
|
3248
|
+
branch,
|
|
3249
|
+
into: baseBranch,
|
|
3250
|
+
validationSummary,
|
|
3251
|
+
refineStages,
|
|
3252
|
+
finalBranchConvergenceState: {
|
|
3253
|
+
branch,
|
|
3254
|
+
baseBranch,
|
|
3255
|
+
merged: false,
|
|
3256
|
+
removed: false,
|
|
3257
|
+
validation: 'failed',
|
|
3258
|
+
status: 'blocked_review',
|
|
3259
|
+
},
|
|
3260
|
+
};
|
|
3261
|
+
}
|
|
3262
|
+
if (validationSummary.status === 'skipped') {
|
|
3263
|
+
return {
|
|
3264
|
+
success: false,
|
|
3265
|
+
code: 'validation_unavailable',
|
|
3266
|
+
convergenceStatus: 'blocked_review',
|
|
3267
|
+
error: 'Refinery validation gate is required but no allowlisted validation command was available; merge/refine was not attempted.',
|
|
3268
|
+
branch,
|
|
3269
|
+
into: baseBranch,
|
|
3270
|
+
validationSummary,
|
|
3271
|
+
refineStages,
|
|
3272
|
+
finalBranchConvergenceState: {
|
|
3273
|
+
branch,
|
|
3274
|
+
baseBranch,
|
|
3275
|
+
merged: false,
|
|
3276
|
+
removed: false,
|
|
3277
|
+
validation: 'unavailable',
|
|
3278
|
+
status: 'blocked_review',
|
|
3279
|
+
},
|
|
3280
|
+
};
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3283
|
+
const patchEquivalenceStarted = Date.now();
|
|
3284
|
+
const patchEquivalence = await runMeshRefinePatchEquivalenceGate(repoRoot, baseHead, branchHead);
|
|
3285
|
+
recordMeshRefineStage(refineStages, 'patch_equivalence', patchEquivalence.status, patchEquivalenceStarted, {
|
|
3286
|
+
equivalent: patchEquivalence.equivalent,
|
|
3287
|
+
expectedPatchId: patchEquivalence.expectedPatchId,
|
|
3288
|
+
actualPatchId: patchEquivalence.actualPatchId,
|
|
3289
|
+
error: patchEquivalence.error,
|
|
3290
|
+
actionableHint: patchEquivalence.actionableHint,
|
|
3291
|
+
});
|
|
3292
|
+
if (!patchEquivalence.equivalent) {
|
|
3293
|
+
return {
|
|
3294
|
+
success: false,
|
|
3295
|
+
code: 'patch_equivalence_failed',
|
|
3296
|
+
convergenceStatus: 'blocked_review',
|
|
3297
|
+
error: 'Refinery patch-equivalence preflight failed; merge/refine was not attempted.',
|
|
3298
|
+
branch,
|
|
3299
|
+
into: baseBranch,
|
|
3300
|
+
validationSummary,
|
|
3301
|
+
patchEquivalence,
|
|
3302
|
+
refineStages,
|
|
3303
|
+
finalBranchConvergenceState: {
|
|
3304
|
+
branch,
|
|
3305
|
+
baseBranch,
|
|
3306
|
+
merged: false,
|
|
3307
|
+
removed: false,
|
|
3308
|
+
validation: 'passed',
|
|
3309
|
+
patchEquivalence: 'failed',
|
|
3310
|
+
status: 'blocked_review',
|
|
3311
|
+
},
|
|
3312
|
+
};
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
const submoduleReachabilityStarted = Date.now();
|
|
3316
|
+
const autoPublishSubmoduleMainCommits = resolveRefineryAutoPublishSubmoduleMainCommits(mesh, node.workspace);
|
|
3317
|
+
const submoduleReachability = await runMeshRefineSubmoduleReachabilityGate(repoRoot, patchEquivalence.mergedTree || branchHead, {
|
|
3318
|
+
allowAutoPublishSubmoduleMainCommits: autoPublishSubmoduleMainCommits.enabled,
|
|
3319
|
+
autoPublishPolicySource: autoPublishSubmoduleMainCommits.source,
|
|
3320
|
+
worktreeRoot: node.workspace,
|
|
3321
|
+
});
|
|
3322
|
+
recordMeshRefineStage(refineStages, 'submodule_reachability', submoduleReachability.status, submoduleReachabilityStarted, {
|
|
3323
|
+
checked: submoduleReachability.checked,
|
|
3324
|
+
autoPublishAllowed: submoduleReachability.autoPublishAllowed,
|
|
3325
|
+
autoPublishPolicySource: submoduleReachability.autoPublishPolicySource,
|
|
3326
|
+
autoPublished: submoduleReachability.entries
|
|
3327
|
+
.filter(entry => entry.autoPublishAttempted)
|
|
3328
|
+
.map(entry => ({
|
|
3329
|
+
path: entry.path,
|
|
3330
|
+
commit: entry.commit,
|
|
3331
|
+
remote: entry.remote,
|
|
3332
|
+
remoteUrl: entry.remoteUrl,
|
|
3333
|
+
remoteMainBranch: entry.remoteMainBranch,
|
|
3334
|
+
refspec: entry.autoPublishRefspec,
|
|
3335
|
+
succeeded: entry.autoPublishSucceeded,
|
|
3336
|
+
verified: entry.autoPublishVerified,
|
|
3337
|
+
remoteMainReachable: entry.remoteMainReachable,
|
|
3338
|
+
error: entry.error,
|
|
3339
|
+
})),
|
|
3340
|
+
autoPublishSkipped: submoduleReachability.entries
|
|
3341
|
+
.filter(entry => entry.autoPublishAllowed === true && entry.autoPublishAttempted !== true)
|
|
3342
|
+
.map(entry => ({
|
|
3343
|
+
path: entry.path,
|
|
3344
|
+
commit: entry.commit,
|
|
3345
|
+
remote: entry.remote,
|
|
3346
|
+
remoteUrl: entry.remoteUrl,
|
|
3347
|
+
remoteMainBranch: entry.remoteMainBranch,
|
|
3348
|
+
reason: entry.autoPublishSkippedReason || entry.error || 'auto-publish was allowed but no publish attempt was possible',
|
|
3349
|
+
})),
|
|
3350
|
+
unreachable: submoduleReachability.unreachable.map(entry => ({
|
|
3351
|
+
path: entry.path,
|
|
3352
|
+
commit: entry.commit,
|
|
3353
|
+
publishRequired: entry.publishRequired === true,
|
|
3354
|
+
autoPublishAllowed: entry.autoPublishAllowed,
|
|
3355
|
+
autoPublishAttempted: entry.autoPublishAttempted,
|
|
3356
|
+
autoPublishSucceeded: entry.autoPublishSucceeded,
|
|
3357
|
+
autoPublishVerified: entry.autoPublishVerified,
|
|
3358
|
+
autoPublishRefspec: entry.autoPublishRefspec,
|
|
3359
|
+
autoPublishSkippedReason: entry.autoPublishSkippedReason,
|
|
3360
|
+
remote: entry.remote,
|
|
3361
|
+
remoteUrl: entry.remoteUrl,
|
|
3362
|
+
remoteReachable: entry.remoteReachable,
|
|
3363
|
+
remoteMainBranch: entry.remoteMainBranch,
|
|
3364
|
+
remoteMainReachable: entry.remoteMainReachable,
|
|
3365
|
+
error: entry.error,
|
|
3366
|
+
})),
|
|
3367
|
+
error: submoduleReachability.error,
|
|
3368
|
+
});
|
|
3369
|
+
if (submoduleReachability.status === 'failed') {
|
|
3370
|
+
const nextStep = buildSubmodulePublishRequiredNextStep(submoduleReachability.unreachable);
|
|
3371
|
+
return {
|
|
3372
|
+
success: false,
|
|
3373
|
+
code: 'submodule_reachability_failed',
|
|
3374
|
+
convergenceStatus: 'blocked_review',
|
|
3375
|
+
publishRequired: true,
|
|
3376
|
+
blockedReason: 'submodule_publish_required',
|
|
3377
|
+
error: 'Refinery submodule reachability preflight failed because one or more submodule gitlink commits are not reachable from their configured remote main branch; merge/refine cleanup was not attempted.',
|
|
3378
|
+
nextStep,
|
|
3379
|
+
nextSteps: [
|
|
3380
|
+
'Ask the user for explicit approval before pushing or publishing any submodule commit.',
|
|
3381
|
+
'Push/publish each unreachable submodule commit to the configured submodule remote main branch shown in the evidence.',
|
|
3382
|
+
'Rerun mesh_refine_node after remote reachability is confirmed.',
|
|
3383
|
+
'Do not merge the root branch until every submodule gitlink commit is reachable from submodule origin/main.',
|
|
3384
|
+
],
|
|
3385
|
+
unreachableSubmoduleCommits: submoduleReachability.unreachable.map(entry => ({
|
|
3386
|
+
path: entry.path,
|
|
3387
|
+
commit: entry.commit,
|
|
3388
|
+
remote: entry.remote,
|
|
3389
|
+
remoteUrl: entry.remoteUrl,
|
|
3390
|
+
remoteReachable: entry.remoteReachable,
|
|
3391
|
+
remoteMainBranch: entry.remoteMainBranch,
|
|
3392
|
+
remoteMainReachable: entry.remoteMainReachable,
|
|
3393
|
+
autoPublishAllowed: entry.autoPublishAllowed,
|
|
3394
|
+
autoPublishAttempted: entry.autoPublishAttempted,
|
|
3395
|
+
autoPublishSucceeded: entry.autoPublishSucceeded,
|
|
3396
|
+
autoPublishVerified: entry.autoPublishVerified,
|
|
3397
|
+
autoPublishRefspec: entry.autoPublishRefspec,
|
|
3398
|
+
autoPublishSkippedReason: entry.autoPublishSkippedReason,
|
|
3399
|
+
error: entry.error,
|
|
3400
|
+
})),
|
|
3401
|
+
branch,
|
|
3402
|
+
into: baseBranch,
|
|
3403
|
+
validationSummary,
|
|
3404
|
+
patchEquivalence,
|
|
3405
|
+
submoduleReachability,
|
|
3406
|
+
refineStages,
|
|
3407
|
+
finalBranchConvergenceState: {
|
|
3408
|
+
branch,
|
|
3409
|
+
baseBranch,
|
|
3410
|
+
merged: false,
|
|
3411
|
+
removed: false,
|
|
3412
|
+
validation: 'passed',
|
|
3413
|
+
patchEquivalence: 'passed',
|
|
3414
|
+
submoduleReachability: 'failed',
|
|
3415
|
+
status: 'blocked_review',
|
|
3416
|
+
reason: 'submodule_publish_required',
|
|
3417
|
+
nextStep,
|
|
3418
|
+
},
|
|
3419
|
+
};
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
let mergeResult: Record<string, unknown> | undefined;
|
|
3423
|
+
const mergeStarted = Date.now();
|
|
3424
|
+
try {
|
|
3425
|
+
const result = await execFileAsync('git', ['merge', '--no-ff', branch, '-m', `Auto-merge branch '${branch}' via Refinery`], { cwd: repoRoot, encoding: 'utf8' });
|
|
3426
|
+
mergeResult = {
|
|
3427
|
+
stdout: truncateValidationOutput(result.stdout),
|
|
3428
|
+
stderr: truncateValidationOutput(result.stderr),
|
|
3429
|
+
durationMs: Date.now() - mergeStarted,
|
|
3430
|
+
};
|
|
3431
|
+
recordMeshRefineStage(refineStages, 'merge', 'passed', mergeStarted, mergeResult);
|
|
3432
|
+
} catch (e: any) {
|
|
3433
|
+
recordMeshRefineStage(refineStages, 'merge', 'failed', mergeStarted, {
|
|
3434
|
+
error: e?.message || String(e),
|
|
3435
|
+
stdout: truncateValidationOutput(e?.stdout),
|
|
3436
|
+
stderr: truncateValidationOutput(e?.stderr),
|
|
3437
|
+
});
|
|
3438
|
+
return {
|
|
3439
|
+
success: false,
|
|
3440
|
+
error: `Merge failed (conflicts?): ${e.message}`,
|
|
3441
|
+
validationSummary,
|
|
3442
|
+
patchEquivalence,
|
|
3443
|
+
refineStages,
|
|
3444
|
+
finalBranchConvergenceState: {
|
|
3445
|
+
branch,
|
|
3446
|
+
baseBranch,
|
|
3447
|
+
merged: false,
|
|
3448
|
+
removed: false,
|
|
3449
|
+
validation: 'passed',
|
|
3450
|
+
patchEquivalence: 'passed',
|
|
3451
|
+
status: 'not_mergeable',
|
|
3452
|
+
},
|
|
3453
|
+
};
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3456
|
+
const submoduleAlignmentStarted = Date.now();
|
|
3457
|
+
const submoduleAlignment = await alignRefinerySubmodulesAfterMerge(repoRoot, baseHead, 'HEAD', {
|
|
3458
|
+
submoduleIgnorePaths: Array.isArray(sourceNode?.policy?.submoduleIgnorePaths)
|
|
3459
|
+
? sourceNode.policy.submoduleIgnorePaths.filter((value: unknown): value is string => typeof value === 'string')
|
|
3460
|
+
: undefined,
|
|
3461
|
+
});
|
|
3462
|
+
if (submoduleAlignment.status !== 'skipped') {
|
|
3463
|
+
recordMeshRefineStage(refineStages, 'submodule_alignment', submoduleAlignment.status, submoduleAlignmentStarted, {
|
|
3464
|
+
changedGitlinkPaths: submoduleAlignment.changedGitlinkPaths,
|
|
3465
|
+
outOfSyncPaths: submoduleAlignment.outOfSyncPaths,
|
|
3466
|
+
updatedPaths: submoduleAlignment.updatedPaths,
|
|
3467
|
+
verifiedPaths: submoduleAlignment.verifiedPaths,
|
|
3468
|
+
command: submoduleAlignment.command,
|
|
3469
|
+
error: submoduleAlignment.error,
|
|
3470
|
+
});
|
|
3471
|
+
}
|
|
3472
|
+
if (submoduleAlignment.status === 'failed') {
|
|
3473
|
+
return {
|
|
3474
|
+
success: false,
|
|
3475
|
+
code: 'post_merge_submodule_alignment_failed',
|
|
3476
|
+
error: 'Refinery merge completed but post-merge submodule checkout alignment failed; run the reported git submodule update command and re-check base workspace status.',
|
|
3477
|
+
merged: true,
|
|
3478
|
+
branch,
|
|
3479
|
+
into: baseBranch,
|
|
3480
|
+
validationSummary,
|
|
3481
|
+
patchEquivalence,
|
|
3482
|
+
submoduleReachability,
|
|
3483
|
+
submoduleAlignment,
|
|
3484
|
+
mergeResult,
|
|
3485
|
+
refineStages,
|
|
3486
|
+
finalBranchConvergenceState: {
|
|
3487
|
+
branch: baseBranch,
|
|
3488
|
+
mergedBranch: branch,
|
|
3489
|
+
baseBranch,
|
|
3490
|
+
merged: true,
|
|
3491
|
+
removed: false,
|
|
3492
|
+
validation: 'passed',
|
|
3493
|
+
patchEquivalence: 'passed',
|
|
3494
|
+
submoduleReachability: 'passed',
|
|
3495
|
+
submoduleAlignment: 'failed',
|
|
3496
|
+
status: 'post_merge_alignment_failed',
|
|
3497
|
+
nextStep: submoduleAlignment.command || 'Run git submodule update --init --recursive for the reported path(s), then re-check base workspace status.',
|
|
3498
|
+
},
|
|
3499
|
+
};
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
const cleanupStarted = Date.now();
|
|
3503
|
+
const removeResult = await this.execute('remove_mesh_node', {
|
|
3504
|
+
meshId,
|
|
3505
|
+
nodeId,
|
|
3506
|
+
sessionCleanupMode: 'preserve',
|
|
3507
|
+
inlineMesh: args?.inlineMesh,
|
|
3508
|
+
});
|
|
3509
|
+
recordMeshRefineStage(refineStages, 'cleanup', removeResult?.success === false ? 'failed' : 'passed', cleanupStarted, {
|
|
3510
|
+
removed: removeResult?.removed,
|
|
3511
|
+
code: removeResult?.code,
|
|
3512
|
+
error: removeResult?.error,
|
|
3513
|
+
});
|
|
3514
|
+
|
|
3515
|
+
let ledgerError: string | undefined;
|
|
3516
|
+
const ledgerStarted = Date.now();
|
|
3517
|
+
try {
|
|
3518
|
+
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
3519
|
+
appendLedgerEntry(meshId, {
|
|
3520
|
+
kind: 'node_removed',
|
|
3521
|
+
nodeId,
|
|
3522
|
+
payload: { refined: true, mergedBranch: branch, into: baseBranch, validationSummary, patchEquivalence, submoduleReachability, submoduleAlignment },
|
|
3523
|
+
});
|
|
3524
|
+
recordMeshRefineStage(refineStages, 'ledger', 'passed', ledgerStarted);
|
|
3525
|
+
} catch (e: any) {
|
|
3526
|
+
ledgerError = e?.message || String(e);
|
|
3527
|
+
recordMeshRefineStage(refineStages, 'ledger', 'failed', ledgerStarted, { error: ledgerError });
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
const finalBranchConvergenceState = {
|
|
3531
|
+
branch: baseBranch,
|
|
3532
|
+
mergedBranch: branch,
|
|
3533
|
+
baseBranch,
|
|
3534
|
+
merged: true,
|
|
3535
|
+
removed: removeResult?.success !== false,
|
|
3536
|
+
validation: 'passed',
|
|
3537
|
+
patchEquivalence: 'passed',
|
|
3538
|
+
submoduleAlignment: submoduleAlignment.status,
|
|
3539
|
+
status: removeResult?.success === false ? 'merged_cleanup_failed' : 'merged',
|
|
3540
|
+
};
|
|
3541
|
+
|
|
3542
|
+
if (removeResult?.success === false) {
|
|
3543
|
+
return {
|
|
3544
|
+
success: false,
|
|
3545
|
+
code: 'cleanup_failed',
|
|
3546
|
+
error: 'Refinery merge completed but worktree cleanup failed; manual cleanup/retry is required.',
|
|
3547
|
+
merged: true,
|
|
3548
|
+
branch,
|
|
3549
|
+
into: baseBranch,
|
|
3550
|
+
removeResult,
|
|
3551
|
+
validationSummary,
|
|
3552
|
+
patchEquivalence,
|
|
3553
|
+
submoduleReachability,
|
|
3554
|
+
submoduleAlignment,
|
|
3555
|
+
mergeResult,
|
|
3556
|
+
refineStages,
|
|
3557
|
+
...(ledgerError ? { ledgerError } : {}),
|
|
3558
|
+
finalBranchConvergenceState,
|
|
3559
|
+
};
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
return {
|
|
3563
|
+
success: true,
|
|
3564
|
+
merged: true,
|
|
3565
|
+
branch,
|
|
3566
|
+
into: baseBranch,
|
|
3567
|
+
removeResult,
|
|
3568
|
+
validationSummary,
|
|
3569
|
+
patchEquivalence,
|
|
3570
|
+
submoduleReachability,
|
|
3571
|
+
submoduleAlignment,
|
|
3572
|
+
mergeResult,
|
|
3573
|
+
refineStages,
|
|
3574
|
+
...(ledgerError ? { ledgerError } : {}),
|
|
3575
|
+
finalBranchConvergenceState,
|
|
3576
|
+
};
|
|
3577
|
+
} catch (e: any) {
|
|
3578
|
+
return { success: false, error: e.message, refineStages };
|
|
3579
|
+
}
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
private async finishMeshRefineJob(handle: MeshRefineJobHandle, args: any): Promise<void> {
|
|
3583
|
+
const key = this.buildRefineJobKey(handle.meshId, handle.targetNodeId);
|
|
3584
|
+
let result: Record<string, unknown>;
|
|
3585
|
+
try {
|
|
3586
|
+
result = await this.executeMeshRefineNodeSynchronously(handle.meshId, handle.targetNodeId, args) as Record<string, unknown>;
|
|
3587
|
+
} catch (e: any) {
|
|
3588
|
+
result = { success: false, error: e?.message || String(e) };
|
|
3589
|
+
}
|
|
3590
|
+
const completedAt = new Date().toISOString();
|
|
3591
|
+
const terminalHandle = this.buildRefineJobHandle({
|
|
3592
|
+
meshId: handle.meshId,
|
|
3593
|
+
nodeId: handle.targetNodeId,
|
|
3594
|
+
status: result.success === true ? 'completed' : 'failed',
|
|
3595
|
+
startedAt: handle.startedAt,
|
|
3596
|
+
completedAt,
|
|
3597
|
+
jobId: handle.jobId,
|
|
3598
|
+
interactionId: handle.interactionId,
|
|
3599
|
+
retryOfJobId: handle.retryOfJobId,
|
|
3600
|
+
node: { daemonId: handle.targetDaemonId, workspace: handle.workspace },
|
|
3601
|
+
});
|
|
3602
|
+
const terminal: MeshRefineTerminalJob = { ...terminalHandle, result };
|
|
3603
|
+
this.terminalRefineJobs.set(key, terminal);
|
|
3604
|
+
this.runningRefineJobs.delete(key);
|
|
3605
|
+
this.invalidateAggregateMeshStatus(handle.meshId);
|
|
3606
|
+
await this.appendRefineJobLedger(result.success === true ? 'task_completed' : 'task_failed', terminalHandle, result);
|
|
3607
|
+
this.queueRefineJobEvent(result.success === true ? 'refine:completed' : 'refine:failed', terminalHandle, result);
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
private async startMeshRefineJob(meshId: string, nodeId: string, args: any): Promise<CommandRouterResult> {
|
|
3611
|
+
const key = this.buildRefineJobKey(meshId, nodeId);
|
|
3612
|
+
const running = this.runningRefineJobs.get(key);
|
|
3613
|
+
if (running) return { ...running, duplicate: true };
|
|
3614
|
+
const terminal = this.terminalRefineJobs.get(key);
|
|
3615
|
+
|
|
3616
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
3617
|
+
const mesh = meshRecord?.mesh;
|
|
3618
|
+
const node = mesh?.nodes?.find((n: any) => n.id === nodeId || n.nodeId === nodeId);
|
|
3619
|
+
if (!node) return { success: false, error: `Node '${nodeId}' not found in mesh` };
|
|
3620
|
+
if (!node.isLocalWorktree || !node.workspace) return { success: false, error: `Refinery requires a local worktree node` };
|
|
3621
|
+
|
|
3622
|
+
const handle = this.buildRefineJobHandle({ meshId, nodeId, node, retryOfJobId: terminal?.jobId });
|
|
3623
|
+
this.runningRefineJobs.set(key, handle);
|
|
3624
|
+
await this.appendRefineJobLedger('task_dispatched', handle);
|
|
3625
|
+
this.queueRefineJobEvent('refine:accepted', handle);
|
|
3626
|
+
|
|
3627
|
+
setImmediate(() => {
|
|
3628
|
+
void this.finishMeshRefineJob(handle, args);
|
|
3629
|
+
});
|
|
3630
|
+
|
|
3631
|
+
return handle;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
1465
3634
|
// ─── Daemon-level command core ───────────────────
|
|
1466
3635
|
|
|
1467
3636
|
/**
|
|
@@ -1476,13 +3645,21 @@ export class DaemonCommandRouter {
|
|
|
1476
3645
|
}
|
|
1477
3646
|
|
|
1478
3647
|
case 'get_pending_mesh_events': {
|
|
1479
|
-
const
|
|
3648
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
3649
|
+
// (B3) Respect coordinatorDaemonId when the caller declares it
|
|
3650
|
+
// so unicast events route to the right coordinator instead of
|
|
3651
|
+
// being silently consumed by the first drainer.
|
|
3652
|
+
const coordinatorDaemonId = typeof args?.coordinatorDaemonId === 'string' && args.coordinatorDaemonId.trim()
|
|
3653
|
+
? args.coordinatorDaemonId.trim()
|
|
3654
|
+
: undefined;
|
|
3655
|
+
const events = drainPendingMeshCoordinatorEvents(meshId || undefined, coordinatorDaemonId);
|
|
1480
3656
|
return { success: true, events };
|
|
1481
3657
|
}
|
|
1482
3658
|
|
|
1483
3659
|
case 'launch_cli':
|
|
1484
3660
|
case 'stop_cli':
|
|
1485
3661
|
case 'set_cli_view_mode':
|
|
3662
|
+
case 'record_provider_pty':
|
|
1486
3663
|
case 'agent_command': {
|
|
1487
3664
|
return this.deps.cliManager.handleCliCommand(cmd, args);
|
|
1488
3665
|
}
|
|
@@ -1678,7 +3855,7 @@ export class DaemonCommandRouter {
|
|
|
1678
3855
|
: '';
|
|
1679
3856
|
const providerMeta = this.deps.providerLoader.resolve?.(providerType) || this.deps.providerLoader.getMeta(providerType);
|
|
1680
3857
|
const { sessions: historySessions, hasMore, source } = listProviderHistorySessions(providerType, {
|
|
1681
|
-
canonicalHistory: providerMeta?.
|
|
3858
|
+
canonicalHistory: providerMeta?.nativeHistory,
|
|
1682
3859
|
offset,
|
|
1683
3860
|
limit,
|
|
1684
3861
|
historyBehavior: providerMeta?.historyBehavior,
|
|
@@ -2082,8 +4259,43 @@ export class DaemonCommandRouter {
|
|
|
2082
4259
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2083
4260
|
if (!meshId) return { success: false, error: 'meshId required' };
|
|
2084
4261
|
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
2085
|
-
if (meshRecord?.mesh) return { success:
|
|
2086
|
-
|
|
4262
|
+
if (!meshRecord?.mesh) return { success: false, error: 'Mesh not found' };
|
|
4263
|
+
|
|
4264
|
+
const requireDirectPeerTruth = args?.requireDirectPeerTruth === true;
|
|
4265
|
+
const directTruth = await hydrateInlineMeshDirectTruth({
|
|
4266
|
+
mesh: meshRecord.mesh,
|
|
4267
|
+
meshSource: meshRecord.source,
|
|
4268
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
4269
|
+
statusInstanceId: this.deps.statusInstanceId,
|
|
4270
|
+
localMachineId: loadConfig().machineId || '',
|
|
4271
|
+
});
|
|
4272
|
+
const directTruthSatisfied = meshRecord.source !== 'inline_bootstrap' || directTruth.directEvidenceCount > 0;
|
|
4273
|
+
const sourceOfTruth = {
|
|
4274
|
+
membership: meshRecord.source === 'inline_cache'
|
|
4275
|
+
? 'coordinator_inline_mesh_cache'
|
|
4276
|
+
: meshRecord.source === 'local_config'
|
|
4277
|
+
? 'local_mesh_config'
|
|
4278
|
+
: 'inline_bootstrap_snapshot',
|
|
4279
|
+
coordinatorOwnsLiveTruth: directTruthSatisfied,
|
|
4280
|
+
directPeerTruth: {
|
|
4281
|
+
required: requireDirectPeerTruth,
|
|
4282
|
+
satisfied: directTruthSatisfied,
|
|
4283
|
+
directEvidenceCount: directTruth.directEvidenceCount,
|
|
4284
|
+
localConfirmedCount: directTruth.localConfirmedCount,
|
|
4285
|
+
peerAttemptedCount: directTruth.peerAttemptedCount,
|
|
4286
|
+
peerConfirmedCount: directTruth.peerConfirmedCount,
|
|
4287
|
+
unavailableNodeIds: directTruth.unavailableNodeIds,
|
|
4288
|
+
},
|
|
4289
|
+
};
|
|
4290
|
+
if (requireDirectPeerTruth && !directTruthSatisfied) {
|
|
4291
|
+
return {
|
|
4292
|
+
success: false,
|
|
4293
|
+
code: 'mesh_direct_peer_truth_unavailable',
|
|
4294
|
+
error: 'Selected coordinator could not confirm direct mesh truth yet. Bootstrap inventory stays unavailable until direct get_mesh probes succeed.',
|
|
4295
|
+
sourceOfTruth,
|
|
4296
|
+
};
|
|
4297
|
+
}
|
|
4298
|
+
return { success: true, mesh: meshRecord.mesh, sourceOfTruth };
|
|
2087
4299
|
}
|
|
2088
4300
|
|
|
2089
4301
|
case 'create_mesh': {
|
|
@@ -2094,7 +4306,10 @@ export class DaemonCommandRouter {
|
|
|
2094
4306
|
if (!name) return { success: false, error: 'name required' };
|
|
2095
4307
|
try {
|
|
2096
4308
|
const { createMesh } = await import('../config/mesh-config.js');
|
|
2097
|
-
const
|
|
4309
|
+
const meshHost = args?.meshHost && typeof args.meshHost === 'object' && !Array.isArray(args.meshHost)
|
|
4310
|
+
? args.meshHost
|
|
4311
|
+
: undefined;
|
|
4312
|
+
const mesh = createMesh({ name, repoIdentity, repoRemoteUrl, defaultBranch, policy: args?.policy, meshHost });
|
|
2098
4313
|
return { success: true, mesh };
|
|
2099
4314
|
} catch (e: any) {
|
|
2100
4315
|
return { success: false, error: e.message };
|
|
@@ -2111,16 +4326,237 @@ export class DaemonCommandRouter {
|
|
|
2111
4326
|
if (typeof args?.defaultBranch === 'string') patch.defaultBranch = args.defaultBranch;
|
|
2112
4327
|
if (args?.policy && typeof args.policy === 'object' && !Array.isArray(args.policy)) patch.policy = args.policy;
|
|
2113
4328
|
if (args?.coordinator && typeof args.coordinator === 'object' && !Array.isArray(args.coordinator)) patch.coordinator = args.coordinator;
|
|
4329
|
+
if (args?.meshHost && typeof args.meshHost === 'object' && !Array.isArray(args.meshHost)) patch.meshHost = args.meshHost;
|
|
2114
4330
|
if (!Object.keys(patch).length) return { success: false, error: 'No updates provided' };
|
|
2115
4331
|
const mesh = updateMesh(meshId, patch as any);
|
|
2116
4332
|
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
2117
4333
|
this.inlineMeshCache.set(meshId, mesh);
|
|
4334
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
2118
4335
|
return { success: true, mesh };
|
|
2119
4336
|
} catch (e: any) {
|
|
2120
4337
|
return { success: false, error: e.message };
|
|
2121
4338
|
}
|
|
2122
4339
|
}
|
|
2123
4340
|
|
|
4341
|
+
case 'get_mesh_host_pairing': {
|
|
4342
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4343
|
+
if (!meshId) return { success: false, error: 'meshId required' };
|
|
4344
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
4345
|
+
const mesh = meshRecord?.mesh;
|
|
4346
|
+
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
4347
|
+
const meshHost = resolveMeshHostStatus(mesh);
|
|
4348
|
+
const pairingStatus = meshHost.pairing?.status || 'not_configured';
|
|
4349
|
+
return {
|
|
4350
|
+
success: true,
|
|
4351
|
+
code: pairingStatus === 'not_configured' ? 'mesh_host_pairing_not_configured' : 'mesh_host_pairing_pending',
|
|
4352
|
+
meshId,
|
|
4353
|
+
hostAddress: meshHost.hostAddress,
|
|
4354
|
+
meshHost,
|
|
4355
|
+
manualPairing: {
|
|
4356
|
+
status: pairingStatus,
|
|
4357
|
+
joinImplemented: true,
|
|
4358
|
+
protocol: 'standalone_command_direct_v1',
|
|
4359
|
+
description: 'Standalone manual pairing can save address/token metadata, apply a host join over direct standalone command HTTP or injected mesh command dispatch, and check persisted status. P2P signaling remains outside this slice.',
|
|
4360
|
+
},
|
|
4361
|
+
};
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
case 'configure_mesh_host_pairing': {
|
|
4365
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4366
|
+
const hostAddress = typeof args?.hostAddress === 'string' ? args.hostAddress.trim() : '';
|
|
4367
|
+
const token = typeof args?.token === 'string' ? args.token.trim() : '';
|
|
4368
|
+
if (!meshId) return { success: false, error: 'meshId required' };
|
|
4369
|
+
if (!hostAddress || !token) return { success: false, error: 'hostAddress and token required' };
|
|
4370
|
+
try {
|
|
4371
|
+
const { configureMeshHostPairing } = await import('../config/mesh-config.js');
|
|
4372
|
+
const configured = configureMeshHostPairing(meshId, { hostAddress, token });
|
|
4373
|
+
if (!configured) return { success: false, error: 'Mesh not found' };
|
|
4374
|
+
this.inlineMeshCache.set(meshId, configured.mesh);
|
|
4375
|
+
const meshHost = resolveMeshHostStatus(configured.mesh);
|
|
4376
|
+
return {
|
|
4377
|
+
success: true,
|
|
4378
|
+
code: 'mesh_host_pairing_pending',
|
|
4379
|
+
meshId,
|
|
4380
|
+
hostAddress: configured.hostAddress,
|
|
4381
|
+
meshHost,
|
|
4382
|
+
manualPairing: {
|
|
4383
|
+
status: meshHost.pairing?.status || 'pairing',
|
|
4384
|
+
joinImplemented: true,
|
|
4385
|
+
protocol: 'standalone_command_direct_v1',
|
|
4386
|
+
description: 'Manual Mesh Host pairing config was saved locally. Use join_mesh_host_pairing to apply it to the host. Raw token was not persisted.',
|
|
4387
|
+
},
|
|
4388
|
+
};
|
|
4389
|
+
} catch (e: any) {
|
|
4390
|
+
return { success: false, code: 'mesh_host_pairing_invalid', meshId, hostAddress, error: e.message };
|
|
4391
|
+
}
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
case 'create_mesh_host_pairing_token': {
|
|
4395
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4396
|
+
if (!meshId) return { success: false, error: 'meshId required' };
|
|
4397
|
+
try {
|
|
4398
|
+
const { createMeshHostPairingToken } = await import('../config/mesh-config.js');
|
|
4399
|
+
const created = createMeshHostPairingToken(meshId, {
|
|
4400
|
+
token: typeof args?.token === 'string' ? args.token : undefined,
|
|
4401
|
+
expiresAt: typeof args?.expiresAt === 'string' ? args.expiresAt : undefined,
|
|
4402
|
+
});
|
|
4403
|
+
if (!created) return { success: false, error: 'Mesh not found' };
|
|
4404
|
+
this.inlineMeshCache.set(meshId, created.mesh);
|
|
4405
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
4406
|
+
return {
|
|
4407
|
+
success: true,
|
|
4408
|
+
code: 'mesh_host_pairing_token_created',
|
|
4409
|
+
meshId,
|
|
4410
|
+
token: created.token,
|
|
4411
|
+
tokenId: created.tokenId,
|
|
4412
|
+
expiresAt: created.expiresAt,
|
|
4413
|
+
meshHost: resolveMeshHostStatus(created.mesh),
|
|
4414
|
+
warning: 'Raw token is returned once and is not persisted; share it with member daemons over a trusted channel.',
|
|
4415
|
+
};
|
|
4416
|
+
} catch (e: any) {
|
|
4417
|
+
return { success: false, code: 'mesh_host_pairing_token_invalid', meshId, error: e.message };
|
|
4418
|
+
}
|
|
4419
|
+
}
|
|
4420
|
+
|
|
4421
|
+
case 'apply_mesh_host_join': {
|
|
4422
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4423
|
+
const token = typeof args?.token === 'string' ? args.token.trim() : '';
|
|
4424
|
+
const memberNode = args?.memberNode && typeof args.memberNode === 'object' && !Array.isArray(args.memberNode)
|
|
4425
|
+
? args.memberNode
|
|
4426
|
+
: null;
|
|
4427
|
+
if (!meshId) return { success: false, error: 'meshId required' };
|
|
4428
|
+
if (!token || !memberNode) return { success: false, error: 'token and memberNode required' };
|
|
4429
|
+
try {
|
|
4430
|
+
const { applyMeshHostJoinRequest } = await import('../config/mesh-config.js');
|
|
4431
|
+
const applied = applyMeshHostJoinRequest(meshId, {
|
|
4432
|
+
token,
|
|
4433
|
+
memberNode: memberNode as any,
|
|
4434
|
+
memberMeshId: typeof args?.memberMeshId === 'string' ? args.memberMeshId : undefined,
|
|
4435
|
+
});
|
|
4436
|
+
if (!applied) return { success: false, error: 'Mesh not found' };
|
|
4437
|
+
if (!applied.accepted) {
|
|
4438
|
+
return {
|
|
4439
|
+
success: false,
|
|
4440
|
+
code: 'mesh_host_join_rejected',
|
|
4441
|
+
meshId,
|
|
4442
|
+
tokenId: applied.tokenId,
|
|
4443
|
+
meshHost: applied.meshHost ? resolveMeshHostStatus({ meshHost: applied.meshHost }) : undefined,
|
|
4444
|
+
error: applied.reason,
|
|
4445
|
+
};
|
|
4446
|
+
}
|
|
4447
|
+
this.inlineMeshCache.set(meshId, applied.mesh);
|
|
4448
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
4449
|
+
try {
|
|
4450
|
+
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
4451
|
+
appendLedgerEntry(meshId, {
|
|
4452
|
+
kind: 'node_joined',
|
|
4453
|
+
nodeId: applied.node.id,
|
|
4454
|
+
payload: { role: 'member', tokenId: applied.tokenId, workspace: applied.node.workspace },
|
|
4455
|
+
});
|
|
4456
|
+
} catch { /* ledger append is best-effort */ }
|
|
4457
|
+
return {
|
|
4458
|
+
success: true,
|
|
4459
|
+
code: 'mesh_host_join_accepted',
|
|
4460
|
+
meshId,
|
|
4461
|
+
node: applied.node,
|
|
4462
|
+
tokenId: applied.tokenId,
|
|
4463
|
+
meshHost: resolveMeshHostStatus(applied.mesh),
|
|
4464
|
+
};
|
|
4465
|
+
} catch (e: any) {
|
|
4466
|
+
return { success: false, code: 'mesh_host_join_failed', meshId, error: e.message };
|
|
4467
|
+
}
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
case 'join_mesh_host_pairing': {
|
|
4471
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4472
|
+
const token = typeof args?.token === 'string' ? args.token.trim() : '';
|
|
4473
|
+
if (!meshId) return { success: false, error: 'meshId required' };
|
|
4474
|
+
if (!token) return { success: false, error: 'token required because raw pairing tokens are not persisted' };
|
|
4475
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
4476
|
+
const mesh = meshRecord?.mesh;
|
|
4477
|
+
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
4478
|
+
const meshHost = resolveMeshHostStatus(mesh);
|
|
4479
|
+
if (meshHost.role !== 'member') {
|
|
4480
|
+
return { success: false, code: 'mesh_host_join_not_member', meshId, meshHost, error: 'join_mesh_host_pairing must run from a member daemon configured with a Mesh Host address/token.' };
|
|
4481
|
+
}
|
|
4482
|
+
try {
|
|
4483
|
+
const { tokenIdForManualPairing, markMeshHostPairingJoined } = await import('../config/mesh-config.js');
|
|
4484
|
+
const tokenId = tokenIdForManualPairing(token);
|
|
4485
|
+
if (meshHost.pairing?.tokenId && meshHost.pairing.tokenId !== tokenId) {
|
|
4486
|
+
return { success: false, code: 'mesh_host_join_rejected', meshId, tokenId, meshHost, error: 'invalid pairing token' };
|
|
4487
|
+
}
|
|
4488
|
+
const memberNode = buildMemberJoinNode(mesh, args, this.deps.statusInstanceId);
|
|
4489
|
+
if (!memberNode) return { success: false, error: 'member node metadata unavailable' };
|
|
4490
|
+
const hostMeshId = typeof args?.hostMeshId === 'string' && args.hostMeshId.trim() ? args.hostMeshId.trim() : meshId;
|
|
4491
|
+
const hostDaemonId = typeof args?.hostDaemonId === 'string' && args.hostDaemonId.trim()
|
|
4492
|
+
? args.hostDaemonId.trim()
|
|
4493
|
+
: meshHost.hostDaemonId;
|
|
4494
|
+
let hostResult: any;
|
|
4495
|
+
let transport: string;
|
|
4496
|
+
if (hostDaemonId && this.deps.dispatchMeshCommand) {
|
|
4497
|
+
transport = 'mesh_command_dispatch';
|
|
4498
|
+
hostResult = await this.deps.dispatchMeshCommand(hostDaemonId, 'apply_mesh_host_join', {
|
|
4499
|
+
meshId: hostMeshId,
|
|
4500
|
+
token,
|
|
4501
|
+
memberMeshId: meshId,
|
|
4502
|
+
memberNode,
|
|
4503
|
+
});
|
|
4504
|
+
} else if (meshHost.hostAddress) {
|
|
4505
|
+
transport = 'standalone_http_command';
|
|
4506
|
+
const commandUrl = normalizeStandaloneHostCommandUrl(meshHost.hostAddress);
|
|
4507
|
+
const response = await fetch(commandUrl, {
|
|
4508
|
+
method: 'POST',
|
|
4509
|
+
headers: { 'Content-Type': 'application/json' },
|
|
4510
|
+
body: JSON.stringify({ type: 'apply_mesh_host_join', payload: { meshId: hostMeshId, token, memberMeshId: meshId, memberNode } }),
|
|
4511
|
+
});
|
|
4512
|
+
hostResult = await response.json().catch(() => ({ success: false, error: `Host returned HTTP ${response.status}` }));
|
|
4513
|
+
if (!response.ok && hostResult?.success !== false) hostResult = { success: false, error: `Host returned HTTP ${response.status}` };
|
|
4514
|
+
} else {
|
|
4515
|
+
return {
|
|
4516
|
+
success: false,
|
|
4517
|
+
code: 'mesh_host_join_transport_unavailable',
|
|
4518
|
+
meshId,
|
|
4519
|
+
meshHost,
|
|
4520
|
+
error: 'No hostDaemonId dispatch path or hostAddress HTTP command path is available. P2P signaling join is not implemented in this slice.',
|
|
4521
|
+
};
|
|
4522
|
+
}
|
|
4523
|
+
if (!hostResult?.success) {
|
|
4524
|
+
return { success: false, code: hostResult?.code || 'mesh_host_join_rejected', meshId, meshHost, transport, error: hostResult?.error || 'Mesh Host rejected join request', hostResult };
|
|
4525
|
+
}
|
|
4526
|
+
const joined = meshRecord.inline
|
|
4527
|
+
? null
|
|
4528
|
+
: markMeshHostPairingJoined(meshId, {
|
|
4529
|
+
tokenId: hostResult.tokenId || tokenId,
|
|
4530
|
+
hostDaemonId: hostResult.meshHost?.hostDaemonId || hostDaemonId,
|
|
4531
|
+
hostNodeId: hostResult.meshHost?.hostNodeId,
|
|
4532
|
+
joinedAt: hostResult.meshHost?.pairing?.joinedAt,
|
|
4533
|
+
});
|
|
4534
|
+
if (joined) {
|
|
4535
|
+
this.inlineMeshCache.set(meshId, joined.mesh);
|
|
4536
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
4537
|
+
}
|
|
4538
|
+
return {
|
|
4539
|
+
success: true,
|
|
4540
|
+
code: 'mesh_host_join_applied',
|
|
4541
|
+
meshId,
|
|
4542
|
+
hostMeshId,
|
|
4543
|
+
transport,
|
|
4544
|
+
node: hostResult.node,
|
|
4545
|
+
tokenId: hostResult.tokenId || tokenId,
|
|
4546
|
+
meshHost: joined ? resolveMeshHostStatus(joined.mesh) : { ...meshHost, pairing: { ...(meshHost.pairing || {}), status: 'paired', tokenId: hostResult.tokenId || tokenId } },
|
|
4547
|
+
hostResult,
|
|
4548
|
+
manualPairing: {
|
|
4549
|
+
status: 'paired',
|
|
4550
|
+
joinImplemented: true,
|
|
4551
|
+
protocol: 'standalone_command_direct_v1',
|
|
4552
|
+
description: 'Mesh Host accepted the join and local member pairing status was marked paired. P2P runtime signaling remains outside this slice.',
|
|
4553
|
+
},
|
|
4554
|
+
};
|
|
4555
|
+
} catch (e: any) {
|
|
4556
|
+
return { success: false, code: 'mesh_host_join_failed', meshId, meshHost, error: e.message };
|
|
4557
|
+
}
|
|
4558
|
+
}
|
|
4559
|
+
|
|
2124
4560
|
case 'delete_mesh': {
|
|
2125
4561
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2126
4562
|
if (!meshId) return { success: false, error: 'meshId required' };
|
|
@@ -2214,6 +4650,8 @@ export class DaemonCommandRouter {
|
|
|
2214
4650
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2215
4651
|
const taskId = typeof args?.taskId === 'string' ? args.taskId.trim() : '';
|
|
2216
4652
|
if (!meshId || !taskId) return { success: false, error: 'meshId and taskId required' };
|
|
4653
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'queue cancellation');
|
|
4654
|
+
if (ownerFailure) return ownerFailure;
|
|
2217
4655
|
try {
|
|
2218
4656
|
const { cancelTask } = await import('../mesh/mesh-work-queue.js');
|
|
2219
4657
|
const reason = typeof args?.reason === 'string' ? args.reason : undefined;
|
|
@@ -2229,6 +4667,8 @@ export class DaemonCommandRouter {
|
|
|
2229
4667
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2230
4668
|
const taskId = typeof args?.taskId === 'string' ? args.taskId.trim() : '';
|
|
2231
4669
|
if (!meshId || !taskId) return { success: false, error: 'meshId and taskId required' };
|
|
4670
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'queue requeue');
|
|
4671
|
+
if (ownerFailure) return ownerFailure;
|
|
2232
4672
|
try {
|
|
2233
4673
|
const { requeueTask } = await import('../mesh/mesh-work-queue.js');
|
|
2234
4674
|
const task = requeueTask(meshId, taskId, {
|
|
@@ -2250,6 +4690,8 @@ export class DaemonCommandRouter {
|
|
|
2250
4690
|
const workspace = typeof args?.workspace === 'string' ? args.workspace.trim() : '';
|
|
2251
4691
|
if (!meshId) return { success: false, error: 'meshId required' };
|
|
2252
4692
|
if (!workspace) return { success: false, error: 'workspace required' };
|
|
4693
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'node addition');
|
|
4694
|
+
if (ownerFailure) return ownerFailure;
|
|
2253
4695
|
try {
|
|
2254
4696
|
const { addNode } = await import('../config/mesh-config.js');
|
|
2255
4697
|
const providerPriority = Array.isArray(args?.providerPriority)
|
|
@@ -2260,7 +4702,18 @@ export class DaemonCommandRouter {
|
|
|
2260
4702
|
...(readOnly ? { readOnly: true } : {}),
|
|
2261
4703
|
...(providerPriority.length ? { providerPriority } : {}),
|
|
2262
4704
|
};
|
|
2263
|
-
const
|
|
4705
|
+
const role = normalizeMeshDaemonRole(args?.role);
|
|
4706
|
+
const daemonId = typeof args?.daemonId === 'string' && args.daemonId.trim() ? args.daemonId.trim() : undefined;
|
|
4707
|
+
const machineId = typeof args?.machineId === 'string' && args.machineId.trim() ? args.machineId.trim() : undefined;
|
|
4708
|
+
const repoRoot = typeof args?.repoRoot === 'string' && args.repoRoot.trim() ? args.repoRoot.trim() : undefined;
|
|
4709
|
+
const node = addNode(meshId, {
|
|
4710
|
+
workspace,
|
|
4711
|
+
...(repoRoot ? { repoRoot } : {}),
|
|
4712
|
+
...(daemonId ? { daemonId } : {}),
|
|
4713
|
+
...(machineId ? { machineId } : {}),
|
|
4714
|
+
...(policy ? { policy } : {}),
|
|
4715
|
+
...(role ? { role } : {}),
|
|
4716
|
+
});
|
|
2264
4717
|
if (!node) return { success: false, error: 'Mesh not found' };
|
|
2265
4718
|
return { success: true, node };
|
|
2266
4719
|
} catch (e: any) {
|
|
@@ -2272,6 +4725,8 @@ export class DaemonCommandRouter {
|
|
|
2272
4725
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2273
4726
|
const nodeId = typeof args?.nodeId === 'string' ? args.nodeId.trim() : '';
|
|
2274
4727
|
if (!meshId || !nodeId) return { success: false, error: 'meshId and nodeId required' };
|
|
4728
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'node update');
|
|
4729
|
+
if (ownerFailure) return ownerFailure;
|
|
2275
4730
|
try {
|
|
2276
4731
|
const { updateNode } = await import('../config/mesh-config.js');
|
|
2277
4732
|
const policy = args?.policy && typeof args.policy === 'object' && !Array.isArray(args.policy)
|
|
@@ -2300,6 +4755,8 @@ export class DaemonCommandRouter {
|
|
|
2300
4755
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2301
4756
|
const nodeId = typeof args?.nodeId === 'string' ? args.nodeId.trim() : '';
|
|
2302
4757
|
if (!meshId || !nodeId) return { success: false, error: 'meshId and nodeId required' };
|
|
4758
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'node removal');
|
|
4759
|
+
if (ownerFailure) return ownerFailure;
|
|
2303
4760
|
try {
|
|
2304
4761
|
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
2305
4762
|
const mesh = meshRecord?.mesh;
|
|
@@ -2325,131 +4782,97 @@ export class DaemonCommandRouter {
|
|
|
2325
4782
|
}
|
|
2326
4783
|
}
|
|
2327
4784
|
|
|
2328
|
-
case '
|
|
4785
|
+
case 'get_mesh_refine_config_schema': {
|
|
4786
|
+
return {
|
|
4787
|
+
success: true,
|
|
4788
|
+
schema: MESH_REFINE_CONFIG_SCHEMA,
|
|
4789
|
+
locations: MESH_REFINE_CONFIG_LOCATIONS,
|
|
4790
|
+
worktreeBootstrap: {
|
|
4791
|
+
schema: MESH_WORKTREE_BOOTSTRAP_CONFIG_SCHEMA,
|
|
4792
|
+
locations: MESH_WORKTREE_BOOTSTRAP_CONFIG_LOCATIONS,
|
|
4793
|
+
sourceOfTruth: 'repo worktree bootstrap config',
|
|
4794
|
+
runBehavior: 'When present and enabled, clone_mesh_node runs commands after submodule initialization and records status on the worktree node.',
|
|
4795
|
+
},
|
|
4796
|
+
sourceOfTruth: 'repo mesh/refine config',
|
|
4797
|
+
heuristicRole: 'suggestions_only_not_execution_path',
|
|
4798
|
+
};
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
case 'validate_mesh_refine_config': {
|
|
4802
|
+
const workspace = typeof args?.workspace === 'string' ? args.workspace : process.cwd();
|
|
4803
|
+
const mesh = args?.inlineMesh || {};
|
|
4804
|
+
const loaded = args?.config !== undefined
|
|
4805
|
+
? { config: args.config, source: 'inline', sourceType: 'mesh_policy' as const }
|
|
4806
|
+
: loadMeshRefineConfig(mesh, workspace);
|
|
4807
|
+
const validation = loaded.config
|
|
4808
|
+
? validateMeshRefineConfig(loaded.config, loaded.source)
|
|
4809
|
+
: { valid: false, errors: [((loaded as { error?: string }).error) || 'repo mesh/refine config unavailable'], commands: [], rejectedCommands: [] };
|
|
4810
|
+
return { success: validation.valid, ...loaded, ...validation };
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
case 'suggest_mesh_refine_config': {
|
|
4814
|
+
const workspace = typeof args?.workspace === 'string' ? args.workspace : process.cwd();
|
|
4815
|
+
const mesh = args?.inlineMesh || {};
|
|
4816
|
+
return {
|
|
4817
|
+
success: true,
|
|
4818
|
+
...suggestMeshRefineConfig(mesh, workspace),
|
|
4819
|
+
note: 'Suggestions are heuristic scaffold only; Refinery will not execute them until saved into repo mesh/refine config.',
|
|
4820
|
+
};
|
|
4821
|
+
}
|
|
4822
|
+
|
|
4823
|
+
case 'plan_mesh_refine_node': {
|
|
2329
4824
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2330
4825
|
const nodeId = typeof args?.nodeId === 'string' ? args.nodeId.trim() : '';
|
|
2331
4826
|
if (!meshId || !nodeId) return { success: false, error: 'meshId and nodeId required' };
|
|
2332
|
-
|
|
4827
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
4828
|
+
const mesh = meshRecord?.mesh;
|
|
4829
|
+
const node = mesh?.nodes?.find((n: any) => n.id === nodeId || n.nodeId === nodeId);
|
|
4830
|
+
if (!node?.workspace) return { success: false, error: `Node '${nodeId}' workspace not found` };
|
|
4831
|
+
return {
|
|
4832
|
+
success: true,
|
|
4833
|
+
dryRun: true,
|
|
4834
|
+
nodeId,
|
|
4835
|
+
workspace: node.workspace,
|
|
4836
|
+
validationPlan: buildMeshRefineValidationPlan(mesh, node.workspace),
|
|
4837
|
+
mergeWillRun: false,
|
|
4838
|
+
cleanupWillRun: false,
|
|
4839
|
+
};
|
|
4840
|
+
}
|
|
4841
|
+
|
|
4842
|
+
case 'fast_forward_mesh_node': {
|
|
4843
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4844
|
+
const nodeId = typeof args?.nodeId === 'string' ? args.nodeId.trim() : '';
|
|
4845
|
+
let workspace = typeof args?.workspace === 'string' ? args.workspace.trim() : '';
|
|
4846
|
+
let submoduleIgnorePaths = Array.isArray(args?.submoduleIgnorePaths)
|
|
4847
|
+
? args.submoduleIgnorePaths.filter((value: unknown): value is string => typeof value === 'string')
|
|
4848
|
+
: undefined;
|
|
4849
|
+
if (!workspace && meshId && nodeId) {
|
|
2333
4850
|
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
2334
4851
|
const mesh = meshRecord?.mesh;
|
|
2335
4852
|
const node = mesh?.nodes?.find((n: any) => n.id === nodeId || n.nodeId === nodeId);
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
return { success: false, error: `Refinery requires a local worktree node` };
|
|
2340
|
-
}
|
|
2341
|
-
|
|
2342
|
-
const sourceNode = node.clonedFromNodeId
|
|
2343
|
-
? mesh?.nodes.find((n: any) => n.id === node.clonedFromNodeId || n.nodeId === node.clonedFromNodeId)
|
|
2344
|
-
: mesh?.nodes.find((n: any) => !n.isLocalWorktree);
|
|
2345
|
-
const repoRoot = sourceNode?.repoRoot || sourceNode?.workspace;
|
|
2346
|
-
if (!repoRoot) return { success: false, error: 'Source node repoRoot not found' };
|
|
2347
|
-
|
|
2348
|
-
const { execFile } = await import('node:child_process');
|
|
2349
|
-
const { promisify } = await import('node:util');
|
|
2350
|
-
const execFileAsync = promisify(execFile);
|
|
2351
|
-
|
|
2352
|
-
const { stdout: branchStdout } = await execFileAsync('git', ['branch', '--show-current'], { cwd: node.workspace, encoding: 'utf8' });
|
|
2353
|
-
const branch = branchStdout.trim();
|
|
2354
|
-
if (!branch) return { success: false, error: 'Could not determine branch of the worktree node' };
|
|
2355
|
-
|
|
2356
|
-
const { stdout: baseBranchStdout } = await execFileAsync('git', ['branch', '--show-current'], { cwd: repoRoot, encoding: 'utf8' });
|
|
2357
|
-
const baseBranch = baseBranchStdout.trim();
|
|
2358
|
-
|
|
2359
|
-
const validationSummary = await runMeshRefineValidationGate(mesh, node.workspace);
|
|
2360
|
-
if (validationSummary.status === 'failed') {
|
|
2361
|
-
return {
|
|
2362
|
-
success: false,
|
|
2363
|
-
code: 'validation_failed',
|
|
2364
|
-
convergenceStatus: 'blocked_review',
|
|
2365
|
-
error: 'Refinery validation gate failed; merge/refine was not attempted.',
|
|
2366
|
-
branch,
|
|
2367
|
-
into: baseBranch,
|
|
2368
|
-
validationSummary,
|
|
2369
|
-
finalBranchConvergenceState: {
|
|
2370
|
-
branch,
|
|
2371
|
-
baseBranch,
|
|
2372
|
-
merged: false,
|
|
2373
|
-
removed: false,
|
|
2374
|
-
validation: 'failed',
|
|
2375
|
-
status: 'blocked_review',
|
|
2376
|
-
},
|
|
2377
|
-
};
|
|
2378
|
-
}
|
|
2379
|
-
if (validationSummary.status === 'skipped') {
|
|
2380
|
-
return {
|
|
2381
|
-
success: false,
|
|
2382
|
-
code: 'validation_unavailable',
|
|
2383
|
-
convergenceStatus: 'blocked_review',
|
|
2384
|
-
error: 'Refinery validation gate is required but no allowlisted validation command was available; merge/refine was not attempted.',
|
|
2385
|
-
branch,
|
|
2386
|
-
into: baseBranch,
|
|
2387
|
-
validationSummary,
|
|
2388
|
-
finalBranchConvergenceState: {
|
|
2389
|
-
branch,
|
|
2390
|
-
baseBranch,
|
|
2391
|
-
merged: false,
|
|
2392
|
-
removed: false,
|
|
2393
|
-
validation: 'unavailable',
|
|
2394
|
-
status: 'blocked_review',
|
|
2395
|
-
},
|
|
2396
|
-
};
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
try {
|
|
2400
|
-
await execFileAsync('git', ['merge', '--no-ff', branch, '-m', `Auto-merge branch '${branch}' via Refinery`], { cwd: repoRoot, encoding: 'utf8' });
|
|
2401
|
-
} catch (e: any) {
|
|
2402
|
-
return {
|
|
2403
|
-
success: false,
|
|
2404
|
-
error: `Merge failed (conflicts?): ${e.message}`,
|
|
2405
|
-
validationSummary,
|
|
2406
|
-
finalBranchConvergenceState: {
|
|
2407
|
-
branch,
|
|
2408
|
-
baseBranch,
|
|
2409
|
-
merged: false,
|
|
2410
|
-
removed: false,
|
|
2411
|
-
validation: 'passed',
|
|
2412
|
-
status: 'not_mergeable',
|
|
2413
|
-
},
|
|
2414
|
-
};
|
|
4853
|
+
workspace = typeof node?.workspace === 'string' ? node.workspace.trim() : '';
|
|
4854
|
+
if (!submoduleIgnorePaths && Array.isArray(node?.policy?.submoduleIgnorePaths)) {
|
|
4855
|
+
submoduleIgnorePaths = node.policy.submoduleIgnorePaths.filter((value: unknown): value is string => typeof value === 'string');
|
|
2415
4856
|
}
|
|
2416
|
-
|
|
2417
|
-
const removeResult = await this.execute('remove_mesh_node', {
|
|
2418
|
-
meshId,
|
|
2419
|
-
nodeId,
|
|
2420
|
-
sessionCleanupMode: 'kill',
|
|
2421
|
-
inlineMesh: args?.inlineMesh,
|
|
2422
|
-
});
|
|
2423
|
-
|
|
2424
|
-
try {
|
|
2425
|
-
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
2426
|
-
appendLedgerEntry(meshId, {
|
|
2427
|
-
kind: 'node_removed',
|
|
2428
|
-
nodeId,
|
|
2429
|
-
payload: { refined: true, mergedBranch: branch, into: baseBranch, validationSummary },
|
|
2430
|
-
});
|
|
2431
|
-
} catch {}
|
|
2432
|
-
|
|
2433
|
-
return {
|
|
2434
|
-
success: true,
|
|
2435
|
-
merged: true,
|
|
2436
|
-
branch,
|
|
2437
|
-
into: baseBranch,
|
|
2438
|
-
removeResult,
|
|
2439
|
-
validationSummary,
|
|
2440
|
-
finalBranchConvergenceState: {
|
|
2441
|
-
branch: baseBranch,
|
|
2442
|
-
mergedBranch: branch,
|
|
2443
|
-
baseBranch,
|
|
2444
|
-
merged: true,
|
|
2445
|
-
removed: removeResult?.success !== false,
|
|
2446
|
-
validation: 'passed',
|
|
2447
|
-
status: removeResult?.success === false ? 'merged_cleanup_failed' : 'merged',
|
|
2448
|
-
},
|
|
2449
|
-
};
|
|
2450
|
-
} catch (e: any) {
|
|
2451
|
-
return { success: false, error: e.message };
|
|
2452
4857
|
}
|
|
4858
|
+
const result = await (fastForwardMeshNode({
|
|
4859
|
+
meshId: meshId || undefined,
|
|
4860
|
+
nodeId: nodeId || undefined,
|
|
4861
|
+
workspace,
|
|
4862
|
+
branch: typeof args?.branch === 'string' ? args.branch : undefined,
|
|
4863
|
+
execute: args?.execute === true,
|
|
4864
|
+
dryRun: args?.dryRun === true,
|
|
4865
|
+
updateSubmodules: args?.updateSubmodules === true,
|
|
4866
|
+
submoduleIgnorePaths,
|
|
4867
|
+
}) as Promise<unknown>);
|
|
4868
|
+
return result as CommandRouterResult;
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4871
|
+
case 'refine_mesh_node': {
|
|
4872
|
+
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
4873
|
+
const nodeId = typeof args?.nodeId === 'string' ? args.nodeId.trim() : '';
|
|
4874
|
+
if (!meshId || !nodeId) return { success: false, error: 'meshId and nodeId required' };
|
|
4875
|
+
return this.startMeshRefineJob(meshId, nodeId, args);
|
|
2453
4876
|
}
|
|
2454
4877
|
|
|
2455
4878
|
case 'remove_mesh_node': {
|
|
@@ -2493,6 +4916,7 @@ export class DaemonCommandRouter {
|
|
|
2493
4916
|
} else {
|
|
2494
4917
|
const { removeNode } = await import('../config/mesh-config.js');
|
|
2495
4918
|
removed = removeNode(meshId, nodeId);
|
|
4919
|
+
if (removed) this.invalidateAggregateMeshStatus(meshId);
|
|
2496
4920
|
}
|
|
2497
4921
|
|
|
2498
4922
|
// Record in task ledger
|
|
@@ -2530,6 +4954,8 @@ export class DaemonCommandRouter {
|
|
|
2530
4954
|
if (!meshId) return { success: false, error: 'meshId required' };
|
|
2531
4955
|
if (!sourceNodeId) return { success: false, error: 'sourceNodeId required' };
|
|
2532
4956
|
if (!branch) return { success: false, error: 'branch required' };
|
|
4957
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'worktree clone');
|
|
4958
|
+
if (ownerFailure) return ownerFailure;
|
|
2533
4959
|
|
|
2534
4960
|
try {
|
|
2535
4961
|
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh);
|
|
@@ -2578,39 +5004,124 @@ export class DaemonCommandRouter {
|
|
|
2578
5004
|
policy: { ...(sourceNode.policy || {}) },
|
|
2579
5005
|
});
|
|
2580
5006
|
if (!node) return { success: false, error: 'Failed to register worktree node' };
|
|
5007
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
2581
5008
|
}
|
|
2582
5009
|
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
5010
|
+
const persistWorktreeSetupState = async (bootstrapState: WorktreeBootstrapState): Promise<void> => {
|
|
5011
|
+
node.worktreeBootstrap = bootstrapState;
|
|
5012
|
+
if (meshRecord.inline) {
|
|
5013
|
+
this.updateInlineMeshNode(meshId, mesh, node);
|
|
5014
|
+
return;
|
|
5015
|
+
}
|
|
2586
5016
|
try {
|
|
2587
|
-
const {
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
5017
|
+
const { updateNode } = await import('../config/mesh-config.js');
|
|
5018
|
+
updateNode(meshId, node.id, { worktreeBootstrap: bootstrapState });
|
|
5019
|
+
this.invalidateAggregateMeshStatus(meshId);
|
|
5020
|
+
} catch { /* bootstrap status persistence is best-effort */ }
|
|
5021
|
+
};
|
|
5022
|
+
|
|
5023
|
+
const appendCloneLedger = async (initSubmodules: boolean, bootstrapState: WorktreeBootstrapState): Promise<void> => {
|
|
5024
|
+
try {
|
|
5025
|
+
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
5026
|
+
appendLedgerEntry(meshId, {
|
|
5027
|
+
kind: 'node_cloned',
|
|
5028
|
+
nodeId: node.id,
|
|
5029
|
+
payload: {
|
|
5030
|
+
sourceNodeId,
|
|
5031
|
+
branch: result.branch,
|
|
5032
|
+
worktreePath: result.worktreePath,
|
|
5033
|
+
submodulesInitialized: initSubmodules,
|
|
5034
|
+
worktreeBootstrap: {
|
|
5035
|
+
status: bootstrapState.status,
|
|
5036
|
+
required: bootstrapState.required,
|
|
5037
|
+
configSource: bootstrapState.configSource,
|
|
5038
|
+
configSourceType: bootstrapState.configSourceType,
|
|
5039
|
+
lastCommand: bootstrapState.lastCommand,
|
|
5040
|
+
exitCode: bootstrapState.exitCode,
|
|
5041
|
+
},
|
|
5042
|
+
},
|
|
5043
|
+
});
|
|
5044
|
+
} catch { /* ledger append is best-effort */ }
|
|
5045
|
+
};
|
|
5046
|
+
|
|
5047
|
+
const initSubmodules = (sourceNode.policy as any)?.initSubmodulesOnClone !== false;
|
|
5048
|
+
const loadedBootstrap = loadMeshWorktreeBootstrapConfig(mesh, result.worktreePath);
|
|
5049
|
+
const runningBootstrapState: WorktreeBootstrapState = {
|
|
5050
|
+
status: 'running',
|
|
5051
|
+
required: loadedBootstrap.config?.required !== false,
|
|
5052
|
+
configSource: loadedBootstrap.path || loadedBootstrap.source,
|
|
5053
|
+
configSourceType: loadedBootstrap.sourceType,
|
|
5054
|
+
startedAt: new Date().toISOString(),
|
|
5055
|
+
};
|
|
5056
|
+
await persistWorktreeSetupState(runningBootstrapState);
|
|
5057
|
+
|
|
5058
|
+
const finishWorktreeSetup = async (): Promise<{ submodulesInitialized: boolean; bootstrapState: WorktreeBootstrapState }> => {
|
|
5059
|
+
let submodulesInitialized = false;
|
|
5060
|
+
if (initSubmodules) {
|
|
5061
|
+
try {
|
|
5062
|
+
const { runGit } = await import('../git/git-executor.js');
|
|
5063
|
+
await runGit(
|
|
5064
|
+
{ workspace: result.worktreePath, repoRoot: result.worktreePath, isGitRepo: true },
|
|
5065
|
+
['submodule', 'update', '--init', '--recursive'],
|
|
5066
|
+
{ timeoutMs: 120000 },
|
|
5067
|
+
);
|
|
5068
|
+
submodulesInitialized = true;
|
|
5069
|
+
} catch (subErr: any) {
|
|
5070
|
+
// Submodule init is best-effort; don't fail the clone
|
|
5071
|
+
console.warn('[mesh] Submodule init failed for worktree:', subErr.message);
|
|
5072
|
+
}
|
|
2596
5073
|
}
|
|
2597
|
-
|
|
5074
|
+
const bootstrapState: WorktreeBootstrapState = await runMeshWorktreeBootstrap(mesh, result.worktreePath);
|
|
5075
|
+
await persistWorktreeSetupState(bootstrapState);
|
|
5076
|
+
await appendCloneLedger(submodulesInitialized, bootstrapState);
|
|
5077
|
+
return { submodulesInitialized, bootstrapState };
|
|
5078
|
+
};
|
|
2598
5079
|
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
5080
|
+
const requestedSetupWaitMs = Number(args?.setupWaitMs ?? args?.bootstrapWaitMs ?? 8000);
|
|
5081
|
+
const setupWaitMs = Number.isFinite(requestedSetupWaitMs)
|
|
5082
|
+
? Math.min(Math.max(requestedSetupWaitMs, 0), 14000)
|
|
5083
|
+
: 8000;
|
|
5084
|
+
const setupPromise = finishWorktreeSetup();
|
|
5085
|
+
const setupResult = await Promise.race([
|
|
5086
|
+
setupPromise.then((value) => ({ completed: true as const, value })),
|
|
5087
|
+
new Promise<{ completed: false }>((resolve) => setTimeout(() => resolve({ completed: false }), setupWaitMs)),
|
|
5088
|
+
]);
|
|
5089
|
+
|
|
5090
|
+
if (!setupResult.completed) {
|
|
5091
|
+
setupPromise.catch((error: any) => {
|
|
5092
|
+
const failedState: WorktreeBootstrapState = {
|
|
5093
|
+
...runningBootstrapState,
|
|
5094
|
+
status: 'failed',
|
|
5095
|
+
completedAt: new Date().toISOString(),
|
|
5096
|
+
error: error?.message || String(error),
|
|
5097
|
+
};
|
|
5098
|
+
void persistWorktreeSetupState(failedState);
|
|
5099
|
+
void appendCloneLedger(false, failedState);
|
|
2606
5100
|
});
|
|
2607
|
-
|
|
5101
|
+
return {
|
|
5102
|
+
success: true,
|
|
5103
|
+
async: true,
|
|
5104
|
+
status: 'accepted',
|
|
5105
|
+
node,
|
|
5106
|
+
worktreePath: result.worktreePath,
|
|
5107
|
+
branch: result.branch,
|
|
5108
|
+
worktreeBootstrap: runningBootstrapState,
|
|
5109
|
+
worktreeSetup: {
|
|
5110
|
+
status: 'running',
|
|
5111
|
+
setupWaitMs,
|
|
5112
|
+
message: 'Worktree node is registered; submodule/bootstrap setup is continuing in the background.',
|
|
5113
|
+
},
|
|
5114
|
+
};
|
|
5115
|
+
}
|
|
2608
5116
|
|
|
5117
|
+
const { submodulesInitialized, bootstrapState } = setupResult.value;
|
|
2609
5118
|
return {
|
|
2610
5119
|
success: true,
|
|
2611
5120
|
node,
|
|
2612
5121
|
worktreePath: result.worktreePath,
|
|
2613
5122
|
branch: result.branch,
|
|
5123
|
+
submodulesInitialized,
|
|
5124
|
+
worktreeBootstrap: bootstrapState,
|
|
2614
5125
|
};
|
|
2615
5126
|
} catch (e: any) {
|
|
2616
5127
|
return { success: false, error: e.message };
|
|
@@ -2619,6 +5130,8 @@ export class DaemonCommandRouter {
|
|
|
2619
5130
|
case 'trigger_mesh_queue': {
|
|
2620
5131
|
const meshId = typeof args?.meshId === 'string' ? args.meshId.trim() : '';
|
|
2621
5132
|
if (!meshId) return { success: false, error: 'meshId required' };
|
|
5133
|
+
const ownerFailure = await this.requireMeshHostMutationOwner(meshId, args?.inlineMesh, 'queue trigger');
|
|
5134
|
+
if (ownerFailure) return ownerFailure;
|
|
2622
5135
|
try {
|
|
2623
5136
|
const { triggerMeshQueue } = await import('../mesh/mesh-events.js');
|
|
2624
5137
|
if (meshId) {
|
|
@@ -2650,6 +5163,15 @@ export class DaemonCommandRouter {
|
|
|
2650
5163
|
mesh = getMesh(meshId);
|
|
2651
5164
|
}
|
|
2652
5165
|
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
5166
|
+
const meshHost = resolveMeshHostStatus(mesh);
|
|
5167
|
+
if (!meshHost.canOwnCoordinator) {
|
|
5168
|
+
return {
|
|
5169
|
+
success: false,
|
|
5170
|
+
...buildMeshHostRequiredFailure(mesh, 'coordinator launch'),
|
|
5171
|
+
meshId,
|
|
5172
|
+
cliType,
|
|
5173
|
+
};
|
|
5174
|
+
}
|
|
2653
5175
|
if (!Array.isArray(mesh.nodes) || mesh.nodes.length === 0) return { success: false, error: 'No nodes in mesh' };
|
|
2654
5176
|
|
|
2655
5177
|
const requestedCoordinatorNodeId = typeof args?.coordinatorNodeId === 'string'
|
|
@@ -2669,7 +5191,16 @@ export class DaemonCommandRouter {
|
|
|
2669
5191
|
cliType,
|
|
2670
5192
|
};
|
|
2671
5193
|
}
|
|
2672
|
-
const
|
|
5194
|
+
const sessionHostRecords = this.deps.sessionHostControl?.listSessions
|
|
5195
|
+
? await this.deps.sessionHostControl.listSessions().catch(() => [])
|
|
5196
|
+
: [];
|
|
5197
|
+
const liveMeshSessions = partitionSessionHostRecords(Array.isArray(sessionHostRecords) ? sessionHostRecords : []).liveRuntimes;
|
|
5198
|
+
const workspace = readLiveMeshNodeWorkspace({
|
|
5199
|
+
meshId,
|
|
5200
|
+
nodeId: String(coordinatorNode.id || coordinatorNode.nodeId || preferredCoordinatorNodeId || ''),
|
|
5201
|
+
liveSessionRecords: liveMeshSessions,
|
|
5202
|
+
allowCoordinatorSession: true,
|
|
5203
|
+
}) || (typeof coordinatorNode.workspace === 'string' ? coordinatorNode.workspace.trim() : '');
|
|
2673
5204
|
if (!workspace) return { success: false, error: 'Coordinator node workspace required', meshId, cliType };
|
|
2674
5205
|
if (!cliType) {
|
|
2675
5206
|
const resolved = await resolveProviderTypeFromPriority({
|
|
@@ -2800,11 +5331,15 @@ export class DaemonCommandRouter {
|
|
|
2800
5331
|
}
|
|
2801
5332
|
|
|
2802
5333
|
LOG.info('MeshCoordinator', `Launched ${cliType} coordinator (cli_command) for mesh ${meshId}`);
|
|
5334
|
+
const cliCmdSessionId = cliCmdLaunch.sessionId || cliCmdLaunch.id;
|
|
5335
|
+
if (cliCmdSessionId) {
|
|
5336
|
+
registerMeshCoordinator({ meshId, sessionId: cliCmdSessionId, workspace, startedAt: Date.now() });
|
|
5337
|
+
}
|
|
2803
5338
|
try {
|
|
2804
5339
|
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
2805
5340
|
appendLedgerEntry(meshId, {
|
|
2806
5341
|
kind: 'coordinator_started',
|
|
2807
|
-
sessionId:
|
|
5342
|
+
sessionId: cliCmdSessionId,
|
|
2808
5343
|
providerType: cliType,
|
|
2809
5344
|
payload: { workspace },
|
|
2810
5345
|
});
|
|
@@ -2815,7 +5350,7 @@ export class DaemonCommandRouter {
|
|
|
2815
5350
|
meshId,
|
|
2816
5351
|
cliType,
|
|
2817
5352
|
workspace,
|
|
2818
|
-
sessionId:
|
|
5353
|
+
sessionId: cliCmdSessionId,
|
|
2819
5354
|
mcpRegistered: true,
|
|
2820
5355
|
};
|
|
2821
5356
|
}
|
|
@@ -2981,13 +5516,17 @@ export class DaemonCommandRouter {
|
|
|
2981
5516
|
}
|
|
2982
5517
|
|
|
2983
5518
|
LOG.info('MeshCoordinator', `Launched ${cliType} coordinator for mesh ${meshId} in ${workspace}`);
|
|
5519
|
+
const launchSessionId = launchResult.sessionId || launchResult.id;
|
|
5520
|
+
if (launchSessionId) {
|
|
5521
|
+
registerMeshCoordinator({ meshId, sessionId: launchSessionId, workspace, startedAt: Date.now() });
|
|
5522
|
+
}
|
|
2984
5523
|
|
|
2985
5524
|
// Record coordinator launch in task ledger
|
|
2986
5525
|
try {
|
|
2987
5526
|
const { appendLedgerEntry } = await import('../mesh/mesh-ledger.js');
|
|
2988
5527
|
appendLedgerEntry(meshId, {
|
|
2989
5528
|
kind: 'coordinator_started',
|
|
2990
|
-
sessionId:
|
|
5529
|
+
sessionId: launchSessionId,
|
|
2991
5530
|
providerType: cliType,
|
|
2992
5531
|
payload: { workspace },
|
|
2993
5532
|
});
|
|
@@ -2998,7 +5537,7 @@ export class DaemonCommandRouter {
|
|
|
2998
5537
|
meshId,
|
|
2999
5538
|
cliType,
|
|
3000
5539
|
workspace,
|
|
3001
|
-
sessionId:
|
|
5540
|
+
sessionId: launchSessionId,
|
|
3002
5541
|
mcpConfigWritten: true,
|
|
3003
5542
|
};
|
|
3004
5543
|
} catch (e: any) {
|
|
@@ -3014,6 +5553,30 @@ export class DaemonCommandRouter {
|
|
|
3014
5553
|
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
3015
5554
|
const mesh = meshRecord?.mesh;
|
|
3016
5555
|
if (!mesh) return { success: false, error: 'Mesh not found' };
|
|
5556
|
+
const meshHost = resolveMeshHostStatus(mesh);
|
|
5557
|
+
|
|
5558
|
+
const refreshRequested = args?.refresh === true || args?.forceRefresh === true;
|
|
5559
|
+
const pendingCoordinatorEventCount = getPendingMeshCoordinatorEvents(meshId).length;
|
|
5560
|
+
const hadAggregateCache = this.aggregateMeshStatusCache.has(meshId);
|
|
5561
|
+
if (!refreshRequested && pendingCoordinatorEventCount === 0) {
|
|
5562
|
+
const cachedStatus = this.getCachedAggregateMeshStatus(meshId, mesh, { requireDirectPeerTruth: args?.requireDirectPeerTruth === true });
|
|
5563
|
+
if (cachedStatus) {
|
|
5564
|
+
logRepoMeshStatusDebug('return_cached', {
|
|
5565
|
+
meshId,
|
|
5566
|
+
command: 'mesh_status',
|
|
5567
|
+
refreshRequested,
|
|
5568
|
+
summary: summarizeRepoMeshStatusDebug(cachedStatus),
|
|
5569
|
+
});
|
|
5570
|
+
return cachedStatus;
|
|
5571
|
+
}
|
|
5572
|
+
}
|
|
5573
|
+
const refreshReason = refreshRequested
|
|
5574
|
+
? 'explicit_refresh'
|
|
5575
|
+
: pendingCoordinatorEventCount > 0
|
|
5576
|
+
? 'pending_coordinator_events'
|
|
5577
|
+
: hadAggregateCache
|
|
5578
|
+
? 'stale_pending_cache_refresh'
|
|
5579
|
+
: 'cold_cache_miss';
|
|
3017
5580
|
|
|
3018
5581
|
const { getMeshQueueStats, getQueue } = await import('../mesh/mesh-work-queue.js');
|
|
3019
5582
|
const queue = getQueue(meshId);
|
|
@@ -3021,6 +5584,7 @@ export class DaemonCommandRouter {
|
|
|
3021
5584
|
|
|
3022
5585
|
const { readLedgerEntries, getLedgerSummary } = await import('../mesh/mesh-ledger.js');
|
|
3023
5586
|
const ledgerEntries = readLedgerEntries(meshId, { tail: 20 });
|
|
5587
|
+
const asyncRefineLedgerEntries = readLedgerEntries(meshId, { tail: 100 });
|
|
3024
5588
|
const ledgerSummary = getLedgerSummary(meshId);
|
|
3025
5589
|
const sessionHostRecords = this.deps.sessionHostControl?.listSessions
|
|
3026
5590
|
? await this.deps.sessionHostControl.listSessions().catch(() => [])
|
|
@@ -3028,29 +5592,123 @@ export class DaemonCommandRouter {
|
|
|
3028
5592
|
const liveMeshSessions = partitionSessionHostRecords(Array.isArray(sessionHostRecords) ? sessionHostRecords : []).liveRuntimes;
|
|
3029
5593
|
|
|
3030
5594
|
const localMachineId = loadConfig().machineId || '';
|
|
5595
|
+
const requireDirectPeerTruth = args?.requireDirectPeerTruth === true;
|
|
5596
|
+
const directTruth = requireDirectPeerTruth
|
|
5597
|
+
? await hydrateInlineMeshDirectTruth({
|
|
5598
|
+
mesh,
|
|
5599
|
+
meshSource: meshRecord.source,
|
|
5600
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
5601
|
+
statusInstanceId: this.deps.statusInstanceId,
|
|
5602
|
+
localMachineId,
|
|
5603
|
+
})
|
|
5604
|
+
: {
|
|
5605
|
+
directEvidenceCount: 0,
|
|
5606
|
+
localConfirmedCount: 0,
|
|
5607
|
+
peerAttemptedCount: 0,
|
|
5608
|
+
peerConfirmedCount: 0,
|
|
5609
|
+
unavailableNodeIds: [] as string[],
|
|
5610
|
+
};
|
|
5611
|
+
// Default/cached loads may not attempt a remote peer probe yet; do not surface that as
|
|
5612
|
+
// a direct mesh truth failure until an explicit probe attempt actually fails.
|
|
5613
|
+
const passivePeerTruthNotAttempted = requireDirectPeerTruth
|
|
5614
|
+
&& !refreshRequested
|
|
5615
|
+
&& directTruth.directEvidenceCount > 0
|
|
5616
|
+
&& directTruth.peerAttemptedCount === 0;
|
|
5617
|
+
const effectiveDirectTruth = passivePeerTruthNotAttempted
|
|
5618
|
+
? { ...directTruth, unavailableNodeIds: [] as string[] }
|
|
5619
|
+
: directTruth;
|
|
5620
|
+
const unavailableDirectTruthNodeIds = new Set(effectiveDirectTruth.unavailableNodeIds);
|
|
5621
|
+
const unavailableNodesAreOnlyRemovedWorktrees = unavailableDirectTruthNodeIds.size > 0
|
|
5622
|
+
&& Array.isArray(mesh.nodes)
|
|
5623
|
+
&& mesh.nodes
|
|
5624
|
+
.filter((node: any) => unavailableDirectTruthNodeIds.has(String(node.id || node.nodeId || '')))
|
|
5625
|
+
.every((node: any) => node?.isLocalWorktree === true);
|
|
5626
|
+
const directTruthSatisfied = !requireDirectPeerTruth
|
|
5627
|
+
|| (effectiveDirectTruth.directEvidenceCount > 0 && (effectiveDirectTruth.unavailableNodeIds.length === 0 || unavailableNodesAreOnlyRemovedWorktrees));
|
|
5628
|
+
if (requireDirectPeerTruth && !directTruthSatisfied) {
|
|
5629
|
+
const failureResult = {
|
|
5630
|
+
success: false,
|
|
5631
|
+
code: 'mesh_direct_peer_truth_unavailable',
|
|
5632
|
+
error: 'Selected coordinator could not confirm direct mesh truth yet. Bootstrap inventory stays unavailable until direct mesh_status probes succeed.',
|
|
5633
|
+
sourceOfTruth: {
|
|
5634
|
+
membership: meshRecord.source === 'inline_cache'
|
|
5635
|
+
? 'coordinator_inline_mesh_cache'
|
|
5636
|
+
: meshRecord.source === 'local_config'
|
|
5637
|
+
? 'local_mesh_config'
|
|
5638
|
+
: 'inline_bootstrap_snapshot',
|
|
5639
|
+
coordinatorOwnsLiveTruth: false,
|
|
5640
|
+
currentStatus: 'direct_peer_truth_unavailable',
|
|
5641
|
+
directPeerTruth: {
|
|
5642
|
+
required: true,
|
|
5643
|
+
satisfied: false,
|
|
5644
|
+
directEvidenceCount: directTruth.directEvidenceCount,
|
|
5645
|
+
localConfirmedCount: directTruth.localConfirmedCount,
|
|
5646
|
+
peerAttemptedCount: directTruth.peerAttemptedCount,
|
|
5647
|
+
peerConfirmedCount: directTruth.peerConfirmedCount,
|
|
5648
|
+
unavailableNodeIds: directTruth.unavailableNodeIds,
|
|
5649
|
+
},
|
|
5650
|
+
},
|
|
5651
|
+
};
|
|
5652
|
+
logRepoMeshStatusDebug('direct_truth_unavailable', {
|
|
5653
|
+
meshId,
|
|
5654
|
+
command: 'mesh_status',
|
|
5655
|
+
refreshRequested,
|
|
5656
|
+
meshSource: meshRecord.source,
|
|
5657
|
+
directTruth,
|
|
5658
|
+
});
|
|
5659
|
+
return failureResult;
|
|
5660
|
+
}
|
|
5661
|
+
const directTruthUnavailableNodeIds = new Set(effectiveDirectTruth.unavailableNodeIds);
|
|
5662
|
+
const coordinatorHostname = osHostname();
|
|
5663
|
+
const selectedCoordinatorNodeId = readStringValue(
|
|
5664
|
+
mesh.coordinator?.preferredNodeId,
|
|
5665
|
+
(mesh.nodes?.[0] as any)?.id,
|
|
5666
|
+
(mesh.nodes?.[0] as any)?.nodeId,
|
|
5667
|
+
);
|
|
3031
5668
|
const inlineCoordinatorNodeId = meshRecord?.inline && Array.isArray(mesh.nodes)
|
|
3032
|
-
?
|
|
5669
|
+
? selectedCoordinatorNodeId
|
|
3033
5670
|
: undefined;
|
|
3034
5671
|
const refreshedAt = new Date().toISOString();
|
|
3035
5672
|
const nodeStatuses = [];
|
|
3036
5673
|
for (const [nodeIndex, node] of (mesh.nodes || []).entries()) {
|
|
3037
5674
|
const nodeId = String(node.id || node.nodeId || '');
|
|
3038
5675
|
const daemonId = readStringValue(node.daemonId);
|
|
5676
|
+
const nodeMachineId = readMeshNodeMachineId(node as Record<string, unknown>);
|
|
5677
|
+
const nodeHostname = readMeshNodeHostname(node as Record<string, unknown>);
|
|
3039
5678
|
const providerPriority = readProviderPriorityFromPolicy(node.policy);
|
|
5679
|
+
const configuredCoordinatorNode = Boolean(
|
|
5680
|
+
nodeId && selectedCoordinatorNodeId && nodeId === selectedCoordinatorNodeId,
|
|
5681
|
+
);
|
|
5682
|
+
const sparseConfiguredCoordinatorNode = configuredCoordinatorNode
|
|
5683
|
+
&& !daemonId
|
|
5684
|
+
&& !nodeMachineId
|
|
5685
|
+
&& !nodeHostname;
|
|
3040
5686
|
const isSelfNode = Boolean(
|
|
3041
5687
|
nodeId && inlineCoordinatorNodeId && nodeId === inlineCoordinatorNodeId,
|
|
3042
5688
|
) || Boolean(
|
|
3043
5689
|
daemonId && (daemonId === localMachineId || daemonId === this.deps.statusInstanceId),
|
|
3044
|
-
) || Boolean(meshRecord?.inline && nodeIndex === 0)
|
|
5690
|
+
) || Boolean(meshRecord?.inline && nodeIndex === 0)
|
|
5691
|
+
|| sparseConfiguredCoordinatorNode;
|
|
5692
|
+
const machineIdentity = buildMeshNodeMachineIdentity(node as Record<string, unknown>, {
|
|
5693
|
+
localMachineId,
|
|
5694
|
+
localDaemonId: this.deps.statusInstanceId,
|
|
5695
|
+
coordinatorHostname,
|
|
5696
|
+
isSelfNode,
|
|
5697
|
+
});
|
|
3045
5698
|
const status: Record<string, unknown> = {
|
|
3046
5699
|
nodeId,
|
|
3047
|
-
machineLabel: node
|
|
5700
|
+
machineLabel: buildMeshNodeDisplayLabel(node as Record<string, unknown>, nodeId, providerPriority),
|
|
5701
|
+
labelSource: readStringValue(node.machineLabel, node.machine_label, node.machineNickname, node.machine_nickname, node.alias)
|
|
5702
|
+
? 'explicit_metadata'
|
|
5703
|
+
: 'workspace_host_provider_context',
|
|
3048
5704
|
workspace: node.workspace,
|
|
3049
5705
|
repoRoot: node.repoRoot,
|
|
3050
5706
|
isLocalWorktree: node.isLocalWorktree,
|
|
3051
5707
|
worktreeBranch: node.worktreeBranch,
|
|
5708
|
+
role: normalizeMeshDaemonRole(node.role) || (meshHost.hostNodeId && nodeId === meshHost.hostNodeId ? 'host' : undefined),
|
|
3052
5709
|
daemonId,
|
|
3053
|
-
machineId: node.machineId,
|
|
5710
|
+
machineId: nodeMachineId || node.machineId,
|
|
5711
|
+
machine: machineIdentity,
|
|
3054
5712
|
machineStatus: node.machineStatus,
|
|
3055
5713
|
health: 'unknown',
|
|
3056
5714
|
providers: node.providers || [],
|
|
@@ -3089,8 +5747,20 @@ export class DaemonCommandRouter {
|
|
|
3089
5747
|
reason: 'Node has no daemon id, so mesh transport cannot be reported from the selected coordinator.',
|
|
3090
5748
|
};
|
|
3091
5749
|
}
|
|
3092
|
-
const matchedLiveSessionRecords =
|
|
3093
|
-
|
|
5750
|
+
const matchedLiveSessionRecords = collectLiveMeshSessionRecords({
|
|
5751
|
+
meshId,
|
|
5752
|
+
node,
|
|
5753
|
+
nodeId,
|
|
5754
|
+
liveSessionRecords: liveMeshSessions,
|
|
5755
|
+
allowCoordinatorSession: nodeId === selectedCoordinatorNodeId,
|
|
5756
|
+
});
|
|
5757
|
+
const workspace = readLiveMeshNodeWorkspace({
|
|
5758
|
+
meshId,
|
|
5759
|
+
nodeId,
|
|
5760
|
+
liveSessionRecords: matchedLiveSessionRecords,
|
|
5761
|
+
allowCoordinatorSession: nodeId === selectedCoordinatorNodeId,
|
|
5762
|
+
}) || (typeof node.workspace === 'string' ? node.workspace : '');
|
|
5763
|
+
status.workspace = workspace || node.workspace;
|
|
3094
5764
|
if (matchedLiveSessionRecords.length > 0) {
|
|
3095
5765
|
const sessionIds = matchedLiveSessionRecords
|
|
3096
5766
|
.map((record: any) => typeof record?.sessionId === 'string' ? record.sessionId : '')
|
|
@@ -3104,44 +5774,219 @@ export class DaemonCommandRouter {
|
|
|
3104
5774
|
status.providers = Array.from(new Set([...(Array.isArray(status.providers) ? status.providers as string[] : []), ...providerTypes]));
|
|
3105
5775
|
}
|
|
3106
5776
|
}
|
|
3107
|
-
if (
|
|
3108
|
-
if (!fs.existsSync(
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
if (
|
|
5777
|
+
if (workspace) {
|
|
5778
|
+
if (!fs.existsSync(workspace)) {
|
|
5779
|
+
// Workspace not local — prefer direct live inline truth, then attempt a P2P git probe.
|
|
5780
|
+
const inlineTransitGit = buildInlineMeshTransitGitStatus(node);
|
|
5781
|
+
let remoteProbeApplied = false;
|
|
5782
|
+
if (inlineTransitGit) {
|
|
5783
|
+
status.git = inlineTransitGit;
|
|
5784
|
+
status.health = inlineTransitGit.isGitRepo
|
|
5785
|
+
? deriveMeshNodeHealthFromGit(inlineTransitGit as unknown as Record<string, unknown>)
|
|
5786
|
+
: 'degraded';
|
|
5787
|
+
const connection = readObjectRecord(status.connection);
|
|
5788
|
+
const connectionState = readStringValue(connection.state);
|
|
5789
|
+
const connectionReported = readBooleanValue(connection.reported) ?? false;
|
|
5790
|
+
if (!connectionReported || connectionState === 'unknown') {
|
|
5791
|
+
status.connection = buildLivePeerGitConnection(connection, refreshedAt);
|
|
5792
|
+
}
|
|
5793
|
+
remoteProbeApplied = true;
|
|
5794
|
+
} else if (!isSelfNode && daemonId && this.deps.dispatchMeshCommand && !directTruthUnavailableNodeIds.has(nodeId)) {
|
|
5795
|
+
try {
|
|
5796
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
5797
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
5798
|
+
daemonId,
|
|
5799
|
+
workspace,
|
|
5800
|
+
timeoutMs: 8000,
|
|
5801
|
+
});
|
|
5802
|
+
if (remoteGit) {
|
|
5803
|
+
status.git = remoteGit;
|
|
5804
|
+
status.health = remoteGit.isGitRepo
|
|
5805
|
+
? deriveMeshNodeHealthFromGit(remoteGit as unknown as Record<string, unknown>)
|
|
5806
|
+
: 'degraded';
|
|
5807
|
+
const connection = readObjectRecord(status.connection);
|
|
5808
|
+
const connectionState = readStringValue(connection.state);
|
|
5809
|
+
const connectionReported = readBooleanValue(connection.reported) ?? false;
|
|
5810
|
+
if (!connectionReported || connectionState === 'unknown') {
|
|
5811
|
+
status.connection = buildLivePeerGitConnection(connection, refreshedAt);
|
|
5812
|
+
}
|
|
5813
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, 'selected_coordinator_mesh_p2p_git');
|
|
5814
|
+
remoteProbeApplied = true;
|
|
5815
|
+
}
|
|
5816
|
+
} catch {
|
|
5817
|
+
const refreshedConnection = this.deps.getMeshPeerConnectionStatus?.(daemonId);
|
|
5818
|
+
const refreshedConnectionState = readStringValue(refreshedConnection?.state);
|
|
5819
|
+
if (refreshedConnection && refreshedConnectionState === 'connected') {
|
|
5820
|
+
status.connection = refreshedConnection;
|
|
5821
|
+
try {
|
|
5822
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
5823
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
5824
|
+
daemonId,
|
|
5825
|
+
workspace,
|
|
5826
|
+
timeoutMs: 12000,
|
|
5827
|
+
});
|
|
5828
|
+
if (remoteGit) {
|
|
5829
|
+
status.git = remoteGit;
|
|
5830
|
+
status.health = remoteGit.isGitRepo
|
|
5831
|
+
? deriveMeshNodeHealthFromGit(remoteGit as unknown as Record<string, unknown>)
|
|
5832
|
+
: 'degraded';
|
|
5833
|
+
const connection = readObjectRecord(status.connection);
|
|
5834
|
+
const connectionState = readStringValue(connection.state);
|
|
5835
|
+
const connectionReported = readBooleanValue(connection.reported) ?? false;
|
|
5836
|
+
if (!connectionReported || connectionState === 'unknown') {
|
|
5837
|
+
status.connection = buildLivePeerGitConnection(connection, refreshedAt);
|
|
5838
|
+
}
|
|
5839
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, 'selected_coordinator_mesh_p2p_git');
|
|
5840
|
+
remoteProbeApplied = true;
|
|
5841
|
+
}
|
|
5842
|
+
} catch {
|
|
5843
|
+
// Probe timed out again or P2P unavailable — fall back to cached status
|
|
5844
|
+
}
|
|
5845
|
+
}
|
|
5846
|
+
}
|
|
5847
|
+
}
|
|
5848
|
+
if (!remoteProbeApplied) {
|
|
5849
|
+
const connectionState = readStringValue((status.connection as any)?.state);
|
|
5850
|
+
const pendingPeerGitProbe = !inlineTransitGit
|
|
5851
|
+
&& !isSelfNode
|
|
5852
|
+
&& !!daemonId
|
|
5853
|
+
&& (
|
|
5854
|
+
readStringValue(status.machineStatus) === 'online'
|
|
5855
|
+
|| readStringValue(status.health) === 'online'
|
|
5856
|
+
|| connectionState === 'connecting'
|
|
5857
|
+
|| connectionState === 'connected'
|
|
5858
|
+
|| connectionState === 'unknown'
|
|
5859
|
+
);
|
|
5860
|
+
if (pendingPeerGitProbe) {
|
|
5861
|
+
status.gitProbePending = true;
|
|
5862
|
+
status.health = 'unknown';
|
|
5863
|
+
}
|
|
5864
|
+
if (applyCachedInlineMeshNodeStatus(
|
|
5865
|
+
status,
|
|
5866
|
+
node,
|
|
5867
|
+
pendingPeerGitProbe ? { skipGit: true, skipError: true, skipHealth: true } : undefined,
|
|
5868
|
+
)) {
|
|
5869
|
+
applyInlineMeshBranchConvergence(mesh, node, status);
|
|
5870
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
5871
|
+
nodeStatuses.push(status);
|
|
5872
|
+
continue;
|
|
5873
|
+
}
|
|
5874
|
+
if (meshRecord?.source === 'inline_cache' && !isSelfNode) {
|
|
5875
|
+
applyInlineMeshBranchConvergence(mesh, node, status);
|
|
5876
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
5877
|
+
nodeStatuses.push(status);
|
|
5878
|
+
continue;
|
|
5879
|
+
}
|
|
3121
5880
|
}
|
|
3122
|
-
}
|
|
3123
|
-
|
|
3124
|
-
|
|
5881
|
+
} else {
|
|
5882
|
+
try {
|
|
5883
|
+
const gitStatus = await getGitRepoStatus(workspace, { timeoutMs: 10_000, refreshUpstream: true });
|
|
5884
|
+
status.git = gitStatus;
|
|
5885
|
+
recordInlineMeshDirectGitTruth(node, gitStatus as unknown as Record<string, unknown>, 'selected_coordinator_local_git');
|
|
5886
|
+
if (gitStatus.isGitRepo) {
|
|
5887
|
+
status.health = deriveMeshNodeHealthFromGit(gitStatus as unknown as Record<string, unknown>);
|
|
5888
|
+
} else {
|
|
5889
|
+
status.health = 'degraded';
|
|
5890
|
+
if (gitStatus.error && !status.error) status.error = gitStatus.error;
|
|
5891
|
+
}
|
|
5892
|
+
} catch {
|
|
5893
|
+
if (!applyCachedInlineMeshNodeStatus(status, node)) {
|
|
5894
|
+
status.health = 'degraded';
|
|
5895
|
+
}
|
|
3125
5896
|
}
|
|
3126
5897
|
}
|
|
3127
5898
|
} else {
|
|
3128
5899
|
applyCachedInlineMeshNodeStatus(status, node);
|
|
3129
5900
|
}
|
|
3130
|
-
|
|
5901
|
+
applyInlineMeshBranchConvergence(mesh, node, status);
|
|
5902
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
3131
5903
|
nodeStatuses.push(status);
|
|
3132
5904
|
}
|
|
3133
5905
|
|
|
3134
|
-
|
|
5906
|
+
// (B3) Pass coordinatorDaemonId when the caller declares
|
|
5907
|
+
// it so v1.5 unicast routing (targetCoordinatorDaemonId)
|
|
5908
|
+
// delivers events to the right coordinator.
|
|
5909
|
+
const callerCoordinatorDaemonId = typeof args?.coordinatorDaemonId === 'string' && args.coordinatorDaemonId.trim()
|
|
5910
|
+
? args.coordinatorDaemonId.trim()
|
|
5911
|
+
: undefined;
|
|
5912
|
+
const pendingCoordinatorEvents = drainPendingMeshCoordinatorEvents(meshId, callerCoordinatorDaemonId);
|
|
5913
|
+
const previewFreshness = (() => {
|
|
5914
|
+
const localRepoRoot = nodeStatuses
|
|
5915
|
+
.map((node: any) => readStringValue(node?.git?.repoRoot, node?.repoRoot, node?.workspace))
|
|
5916
|
+
.find((candidate: string | undefined) => !!candidate && fs.existsSync(candidate));
|
|
5917
|
+
return localRepoRoot ? buildPreviewFreshness(localRepoRoot) : undefined;
|
|
5918
|
+
})();
|
|
5919
|
+
const asyncRefineJobs = buildMeshAsyncRefineJobs({
|
|
5920
|
+
meshId,
|
|
5921
|
+
ledgerEntries: asyncRefineLedgerEntries,
|
|
5922
|
+
pendingEvents: pendingCoordinatorEvents,
|
|
5923
|
+
});
|
|
5924
|
+
const historicalSessions = buildHistoricalMeshSessions({
|
|
5925
|
+
meshId,
|
|
5926
|
+
nodes: mesh.nodes || [],
|
|
5927
|
+
liveSessionRecords: liveMeshSessions,
|
|
5928
|
+
});
|
|
5929
|
+
const statusResult = {
|
|
3135
5930
|
success: true,
|
|
3136
5931
|
meshId: mesh.id,
|
|
3137
5932
|
meshName: mesh.name,
|
|
3138
5933
|
repoIdentity: mesh.repoIdentity,
|
|
3139
5934
|
defaultBranch: mesh.defaultBranch,
|
|
3140
|
-
refreshedAt
|
|
5935
|
+
refreshedAt,
|
|
5936
|
+
meshHost,
|
|
5937
|
+
sourceOfTruth: {
|
|
5938
|
+
membership: meshRecord?.source === 'inline_cache'
|
|
5939
|
+
? 'coordinator_inline_mesh_cache'
|
|
5940
|
+
: meshRecord?.source === 'local_config'
|
|
5941
|
+
? 'local_mesh_config'
|
|
5942
|
+
: 'inline_bootstrap_snapshot',
|
|
5943
|
+
coordinatorOwnsLiveTruth: directTruthSatisfied,
|
|
5944
|
+
meshHost: {
|
|
5945
|
+
owner: 'mesh_host_daemon',
|
|
5946
|
+
localRole: meshHost.role,
|
|
5947
|
+
hostDaemonId: meshHost.hostDaemonId,
|
|
5948
|
+
hostNodeId: meshHost.hostNodeId,
|
|
5949
|
+
hostAddress: meshHost.hostAddress,
|
|
5950
|
+
},
|
|
5951
|
+
...(requireDirectPeerTruth ? {
|
|
5952
|
+
currentStatus: directTruthSatisfied ? 'live_git_and_session_probes' : 'direct_peer_truth_unavailable',
|
|
5953
|
+
directPeerTruth: {
|
|
5954
|
+
required: true,
|
|
5955
|
+
satisfied: directTruthSatisfied,
|
|
5956
|
+
directEvidenceCount: effectiveDirectTruth.directEvidenceCount,
|
|
5957
|
+
localConfirmedCount: effectiveDirectTruth.localConfirmedCount,
|
|
5958
|
+
peerAttemptedCount: effectiveDirectTruth.peerAttemptedCount,
|
|
5959
|
+
peerConfirmedCount: effectiveDirectTruth.peerConfirmedCount,
|
|
5960
|
+
unavailableNodeIds: effectiveDirectTruth.unavailableNodeIds,
|
|
5961
|
+
partialNodeFailures: effectiveDirectTruth.unavailableNodeIds,
|
|
5962
|
+
},
|
|
5963
|
+
} : {}),
|
|
5964
|
+
historicalEvidenceOnly: ['recoveryHints', 'ledger.summary', 'queue.summary', 'historicalSessions'],
|
|
5965
|
+
},
|
|
5966
|
+
branchConvergenceSummary: summarizeInlineMeshBranchConvergence(nodeStatuses),
|
|
5967
|
+
...(previewFreshness ? { previewFreshness, deployFreshness: previewFreshness } : {}),
|
|
3141
5968
|
nodes: nodeStatuses,
|
|
3142
5969
|
queue: { tasks: queue, summary: queueSummary },
|
|
3143
5970
|
ledger: { entries: ledgerEntries, summary: ledgerSummary },
|
|
5971
|
+
...(asyncRefineJobs.length > 0 ? { asyncRefineJobs } : {}),
|
|
5972
|
+
...(historicalSessions ? { historicalSessions } : {}),
|
|
5973
|
+
...(pendingCoordinatorEvents.length > 0 ? { pendingCoordinatorEvents } : {}),
|
|
3144
5974
|
};
|
|
5975
|
+
const { pendingCoordinatorEvents: _pendingCoordinatorEvents, ...cacheableStatusResult } = statusResult as any;
|
|
5976
|
+
const rememberedStatus = this.rememberAggregateMeshStatus(meshId, cacheableStatusResult, refreshReason);
|
|
5977
|
+
const returnedStatus = pendingCoordinatorEvents.length > 0
|
|
5978
|
+
? { ...rememberedStatus, pendingCoordinatorEvents }
|
|
5979
|
+
: rememberedStatus;
|
|
5980
|
+
logRepoMeshStatusDebug('return_live', {
|
|
5981
|
+
meshId,
|
|
5982
|
+
command: 'mesh_status',
|
|
5983
|
+
refreshRequested,
|
|
5984
|
+
refreshReason,
|
|
5985
|
+
meshSource: meshRecord.source,
|
|
5986
|
+
directTruth,
|
|
5987
|
+
summary: summarizeRepoMeshStatusDebug(returnedStatus),
|
|
5988
|
+
});
|
|
5989
|
+
return returnedStatus;
|
|
3145
5990
|
} catch (e: any) {
|
|
3146
5991
|
return { success: false, error: e.message };
|
|
3147
5992
|
}
|
|
@@ -3199,7 +6044,7 @@ export class DaemonCommandRouter {
|
|
|
3199
6044
|
|
|
3200
6045
|
// 3. Kill OS process if requested
|
|
3201
6046
|
if (killProcess) {
|
|
3202
|
-
const running = isIdeRunning(ideType);
|
|
6047
|
+
const running = await isIdeRunning(ideType);
|
|
3203
6048
|
if (running) {
|
|
3204
6049
|
LOG.info('StopIDE', `Killing IDE process: ${ideType}`);
|
|
3205
6050
|
const killed = await killIdeProcess(ideType);
|