@miraland-labs/conduit-bridge 0.14.8 → 0.14.9
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/execution.js +54 -5
- package/package.json +1 -1
package/dist/execution.js
CHANGED
|
@@ -7,8 +7,11 @@ import { DRIVERS, agentReportTemplate, buildAssignmentPrompt, evidenceKinds, ext
|
|
|
7
7
|
import { assertClassFloor } from "./execution-class.js";
|
|
8
8
|
import { pickDriverForClaim, resolveDriverFuel, supportsReadOnlyDiagnosis } from "./drivers.js";
|
|
9
9
|
import { attemptWorktreePath, createAttemptWorktree, proveResumeWorktree, quarantineAttemptWorktree, removeAttemptWorktree, } from "./attempt-worktree.js";
|
|
10
|
+
import { execFile } from "node:child_process";
|
|
11
|
+
import { promisify } from "node:util";
|
|
10
12
|
import { buildWorkspaceBrief, ensureCommitAvailable, normalizeRepositoryUrl, resolveAttemptStartCommit } from "./brief.js";
|
|
11
13
|
import { ensureDeliveryPullRequest } from "./ensure-pull-request.js";
|
|
14
|
+
const execFileAsync = promisify(execFile);
|
|
12
15
|
import { captureVerificationFailure, ensureTestEvidence } from "./ensure-test-evidence.js";
|
|
13
16
|
/** Keep a Mac awake only while an assignment is active; display sleep remains allowed. */
|
|
14
17
|
export function startIdleSleepGuard(options = {}) {
|
|
@@ -969,7 +972,12 @@ async function runClaimedAssignment(client, config, driver, workspace, brief, ta
|
|
|
969
972
|
grants,
|
|
970
973
|
verificationCommands: attemptBrief?.verification ?? [],
|
|
971
974
|
});
|
|
972
|
-
|
|
975
|
+
// Ask git what changed before trusting what the report says changed.
|
|
976
|
+
const startCommit = executionContract.requested_base_commit && executionContract.claimed_head
|
|
977
|
+
? await resolveAttemptStartCommit(workspace, executionContract.requested_base_commit, executionContract.claimed_head)
|
|
978
|
+
: null;
|
|
979
|
+
const actualPaths = startCommit ? await changedPathsSince(attemptWorkspace, startCommit) : null;
|
|
980
|
+
validateDeliveryReport(report, spec, grants, actualPaths ?? undefined);
|
|
973
981
|
}
|
|
974
982
|
catch (error) {
|
|
975
983
|
const message = error instanceof Error ? error.message : "Agent delivery report was invalid";
|
|
@@ -1198,13 +1206,13 @@ async function prepareDelivery(client, attemptId, taskId, report) {
|
|
|
1198
1206
|
},
|
|
1199
1207
|
};
|
|
1200
1208
|
}
|
|
1201
|
-
export function validateDeliveryReport(report, spec, grants = []) {
|
|
1209
|
+
export function validateDeliveryReport(report, spec, grants = [], actualPaths) {
|
|
1202
1210
|
// Research findings live in the report. Do not demand a published pack URL for work_role=research
|
|
1203
1211
|
// even when a planner mis-labeled the package as deliverable=artifact.
|
|
1204
1212
|
const artifactDelivery = spec.deliverable === "artifact" && spec.work_role !== "research";
|
|
1205
1213
|
// Artifact packs are not git landings — do not demand head_commit when the planner put
|
|
1206
1214
|
// `.conduit/artifacts/**` in change_scope as a write hint (path-4 canary incident).
|
|
1207
|
-
validateChangeScope(report, spec.change_scope ?? [], { requireHeadCommit: !artifactDelivery });
|
|
1215
|
+
validateChangeScope(report, spec.change_scope ?? [], { requireHeadCommit: !artifactDelivery, actualPaths });
|
|
1208
1216
|
if (artifactDelivery) {
|
|
1209
1217
|
const published = report.evidence.some((item) => {
|
|
1210
1218
|
if (!["preview", "research", "documentation"].includes(item.kind))
|
|
@@ -1271,6 +1279,45 @@ function referenceKind(kind) {
|
|
|
1271
1279
|
return "document";
|
|
1272
1280
|
return "other";
|
|
1273
1281
|
}
|
|
1282
|
+
/**
|
|
1283
|
+
* What this attempt actually changed, according to git rather than to the agent's prose.
|
|
1284
|
+
*
|
|
1285
|
+
* The scope check used to compare approved paths against strings the agent wrote about itself, so a
|
|
1286
|
+
* run that edited an approved file and named it "tools.ts" failed the contract and spent an attempt
|
|
1287
|
+
* on a path format. Git knows the truth, and Bridge holds the worktree: this is both stricter (a
|
|
1288
|
+
* change cannot be omitted from the report to escape the check) and more forgiving (how the agent
|
|
1289
|
+
* phrases a path stops mattering).
|
|
1290
|
+
*
|
|
1291
|
+
* Null when git cannot answer — an unknown must not fail a delivery, so the caller falls back to the
|
|
1292
|
+
* report exactly as before.
|
|
1293
|
+
*/
|
|
1294
|
+
export async function changedPathsSince(worktree, startCommit) {
|
|
1295
|
+
const run = async (args) => {
|
|
1296
|
+
try {
|
|
1297
|
+
const { stdout } = await execFileAsync("git", ["-C", worktree, ...args], { timeout: 30_000, maxBuffer: 8_000_000 });
|
|
1298
|
+
return stdout;
|
|
1299
|
+
}
|
|
1300
|
+
catch {
|
|
1301
|
+
return null;
|
|
1302
|
+
}
|
|
1303
|
+
};
|
|
1304
|
+
const committed = await run(["diff", "--name-only", `${startCommit}..HEAD`]);
|
|
1305
|
+
if (committed === null)
|
|
1306
|
+
return null;
|
|
1307
|
+
const paths = new Set(committed.split("\n").map((line) => line.trim()).filter(Boolean));
|
|
1308
|
+
// Work the agent left uncommitted still lands in the delivery for lands=false packages.
|
|
1309
|
+
const pending = await run(["status", "--porcelain"]);
|
|
1310
|
+
for (const line of (pending ?? "").split("\n")) {
|
|
1311
|
+
const entry = line.slice(3).trim();
|
|
1312
|
+
if (!entry)
|
|
1313
|
+
continue;
|
|
1314
|
+
// A rename reports "old -> new"; the new path is the one that exists.
|
|
1315
|
+
const path = entry.includes(" -> ") ? entry.slice(entry.lastIndexOf(" -> ") + 4).trim() : entry;
|
|
1316
|
+
if (path)
|
|
1317
|
+
paths.add(path.replace(/^"|"$/g, ""));
|
|
1318
|
+
}
|
|
1319
|
+
return [...paths];
|
|
1320
|
+
}
|
|
1274
1321
|
export function validateChangeScope(report, changeScope, options = {}) {
|
|
1275
1322
|
if (!changeScope.length)
|
|
1276
1323
|
return;
|
|
@@ -1278,9 +1325,11 @@ export function validateChangeScope(report, changeScope, options = {}) {
|
|
|
1278
1325
|
if (requireHeadCommit && !report.head_commit) {
|
|
1279
1326
|
throw new Error("Repository changes require a delivered head commit");
|
|
1280
1327
|
}
|
|
1281
|
-
|
|
1328
|
+
// Git's answer when we have it; the agent's description only when we do not.
|
|
1329
|
+
const paths = options.actualPaths
|
|
1330
|
+
?? report.changes.map((change) => change.split(/\s+[—-]\s+/, 1)[0].trim().replaceAll("\\", "/"));
|
|
1331
|
+
if (!paths.length)
|
|
1282
1332
|
return;
|
|
1283
|
-
const paths = report.changes.map((change) => change.split(/\s+[—-]\s+/, 1)[0].trim().replaceAll("\\", "/"));
|
|
1284
1333
|
const outside = paths.filter((path) => {
|
|
1285
1334
|
if (!path || path.startsWith("/") || path.split("/").includes(".."))
|
|
1286
1335
|
return true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miraland-labs/conduit-bridge",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.9",
|
|
4
4
|
"description": "Conduit Bridge CLI — join, connect, disconnect, multi-driver lanes, and run Claude Code / Codex / Cursor / OpenCode / Pi / Kiro / Antigravity agents for a Conduit organization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|