@codyswann/lisa 3.17.1 → 3.17.3
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/all/copy-overwrite/scripts/lisa-destructive-guard.mjs +30 -1
- package/all/copy-overwrite/scripts/lisa-run-gates.mjs +75 -4
- package/all/copy-overwrite/scripts/lisa-work-item.mjs +41 -2
- package/dist/core/lisa-owned-hash-ledger.d.ts.map +1 -1
- package/dist/core/lisa-owned-hash-ledger.js +5 -0
- package/dist/core/lisa-owned-hash-ledger.js.map +1 -1
- package/dist/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +11 -7
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/package.json +2 -2
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa/hooks/threshold-ratchet.mjs +44 -4
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/hooks/threshold-ratchet.mjs +44 -4
- package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/hooks/threshold-ratchet.mjs +44 -4
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-agy/plugin.json +1 -1
- package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/src/base/hooks/threshold-ratchet.mjs +44 -4
- package/rails/copy-overwrite/scripts/check-threshold-ratchet.mjs +44 -4
- package/typescript/copy-contents/.husky/commit-msg +10 -3
- package/typescript/copy-overwrite/scripts/check-threshold-ratchet.mjs +44 -4
|
@@ -146,13 +146,42 @@ export function classifyEnvironment(value) {
|
|
|
146
146
|
*/
|
|
147
147
|
export function isDestructive(fields) {
|
|
148
148
|
const capability = normalize(fields?.capability);
|
|
149
|
-
if (
|
|
149
|
+
if (isDestructiveName(capability)) {
|
|
150
150
|
return true;
|
|
151
151
|
}
|
|
152
152
|
const summary = fields?.summary ?? {};
|
|
153
153
|
return Number(summary.deleted) > 0 || Number(summary.created) > 0;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
/**
|
|
157
|
+
* Whether a capability name declares a destructive operation.
|
|
158
|
+
*
|
|
159
|
+
* Matched per hyphen-separated segment as well as whole, because the envelope
|
|
160
|
+
* schema admits any `^[a-z][a-z0-9-]*$` while this list holds only bare verbs.
|
|
161
|
+
* A compound name — `reset-database`, `db-teardown`, `seed-all` — matched
|
|
162
|
+
* nothing and the name arm returned false.
|
|
163
|
+
*
|
|
164
|
+
* The counts arm does not save that case. It fires only when a run *reports*
|
|
165
|
+
* rows touched, so the bypass needs a compound name and a silent summary, and
|
|
166
|
+
* an operation that deletes without reporting is precisely what a destructive
|
|
167
|
+
* guard exists for. The name arm is the primary control; counts are a backstop.
|
|
168
|
+
*
|
|
169
|
+
* Segment matching, not substring matching: `presets` contains `reset` but is
|
|
170
|
+
* not a segment of it, so it stays non-destructive. `migrate-down` still
|
|
171
|
+
* matches as a whole name, since neither `migrate` nor `down` is destructive
|
|
172
|
+
* alone and promoting either would refuse ordinary forward migrations.
|
|
173
|
+
* @param {string} capability - Normalized capability name
|
|
174
|
+
* @returns {boolean} True when any part of the name is a destructive verb
|
|
175
|
+
*/
|
|
176
|
+
function isDestructiveName(capability) {
|
|
177
|
+
if (DESTRUCTIVE_CAPABILITIES.includes(capability)) {
|
|
178
|
+
return true;
|
|
179
|
+
}
|
|
180
|
+
return capability
|
|
181
|
+
.split("-")
|
|
182
|
+
.some(segment => DESTRUCTIVE_CAPABILITIES.includes(segment));
|
|
183
|
+
}
|
|
184
|
+
|
|
156
185
|
/**
|
|
157
186
|
* Build the denial for a resolved environment, or null when it is permitted.
|
|
158
187
|
* @param {unknown} environment - Server-resolved environment identity
|
|
@@ -311,6 +311,49 @@ function summarise(result) {
|
|
|
311
311
|
return lines;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
/**
|
|
315
|
+
* Reach one gate's verdict, and report how it was reached.
|
|
316
|
+
*
|
|
317
|
+
* The order of the three sources is the whole content of this function. A
|
|
318
|
+
* gate's own skip is decided first, because a skip comes from `needs` — a
|
|
319
|
+
* missing tool, an absent credential — which is a fact about this gate and not
|
|
320
|
+
* about the command. A gate that cannot run must say so rather than inherit a
|
|
321
|
+
* verdict from a sibling that could.
|
|
322
|
+
*
|
|
323
|
+
* A shared result is honoured next, and honoured even once the run is blocked.
|
|
324
|
+
* The command genuinely ran and its answer is known, so reporting NOT-RUN there
|
|
325
|
+
* would understate what was proved — the mirror image of overstating it, and
|
|
326
|
+
* just as untrue.
|
|
327
|
+
* @param {GateOutcome} gate The resolved gate.
|
|
328
|
+
* @param {{proved: Map<string, object>, blocked: boolean, exec: Function}} ctx Run state.
|
|
329
|
+
* @returns {{outcome: object, shared: object|undefined, ran: boolean}} The verdict.
|
|
330
|
+
*/
|
|
331
|
+
function verdictFor(gate, { proved, blocked, exec }) {
|
|
332
|
+
const own = classifyStatic(gate);
|
|
333
|
+
if (own) return { outcome: own, shared: undefined, ran: false };
|
|
334
|
+
|
|
335
|
+
const shared = gate.command ? proved.get(gate.command) : undefined;
|
|
336
|
+
if (shared) {
|
|
337
|
+
return {
|
|
338
|
+
outcome: {
|
|
339
|
+
...shared.outcome,
|
|
340
|
+
detail: `${shared.outcome.detail} (proved by the ${shared.id} run)`,
|
|
341
|
+
},
|
|
342
|
+
shared,
|
|
343
|
+
ran: false,
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
if (blocked) {
|
|
348
|
+
return {
|
|
349
|
+
outcome: { state: STATE.NOT_RUN, detail: "not run", code: null },
|
|
350
|
+
shared: undefined,
|
|
351
|
+
ran: false,
|
|
352
|
+
};
|
|
353
|
+
}
|
|
354
|
+
return { outcome: execute(gate, exec), shared: undefined, ran: true };
|
|
355
|
+
}
|
|
356
|
+
|
|
314
357
|
/**
|
|
315
358
|
* Run every gate declared at one moment.
|
|
316
359
|
*
|
|
@@ -336,17 +379,45 @@ export function runGates({
|
|
|
336
379
|
const results = [];
|
|
337
380
|
let blocked = false;
|
|
338
381
|
|
|
382
|
+
// One command proves every gate that names it, so it runs once.
|
|
383
|
+
//
|
|
384
|
+
// Two gates legitimately share a prover: a coverage-instrumented suite proves
|
|
385
|
+
// `test-correctness` by passing and `coverage-adequacy` by clearing its
|
|
386
|
+
// threshold. Running it twice cannot prove more than running it once, and it
|
|
387
|
+
// is not merely wasteful — measured here, the second run of an identical
|
|
388
|
+
// `test:cov` failed seconds after the first passed. A red that means nothing
|
|
389
|
+
// costs the register the same trust a false pass does, because it teaches
|
|
390
|
+
// whoever reads it to retry rather than look.
|
|
391
|
+
const proved = new Map();
|
|
392
|
+
|
|
339
393
|
// Each verdict is printed as it is reached, not batched at the end: a push
|
|
340
394
|
// gate can run for minutes, and an operator watching a hook needs to know
|
|
341
395
|
// which gate is being proved right now, not only what the tally was.
|
|
342
396
|
for (const gate of resolved) {
|
|
343
|
-
const outcome =
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
397
|
+
const { outcome, shared, ran } = verdictFor(gate, {
|
|
398
|
+
proved,
|
|
399
|
+
blocked,
|
|
400
|
+
exec,
|
|
401
|
+
});
|
|
402
|
+
|
|
403
|
+
// Only what this iteration actually executed is shareable, and `ran` says
|
|
404
|
+
// so explicitly rather than being inferred from the exit code. `execute`
|
|
405
|
+
// reports `code: null` for a command killed by a signal, so an exit-code
|
|
406
|
+
// test would treat a terminated run as never having happened and send the
|
|
407
|
+
// next gate to run it again — re-running a whole suite an operator has
|
|
408
|
+
// just interrupted.
|
|
409
|
+
if (ran && gate.command) {
|
|
410
|
+
proved.set(gate.command, { id: gate.id, outcome });
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
results.push({ ...gate, ...outcome, provedBy: shared?.id ?? null });
|
|
347
414
|
out(formatLine(outcome.state, gate, outcome.detail));
|
|
348
415
|
const unproved =
|
|
349
416
|
outcome.state === STATE.FAILED || outcome.state === STATE.UNPROVABLE;
|
|
417
|
+
// The strictest level wins when gates share a prover. Letting a required
|
|
418
|
+
// gate inherit only the pass, or letting a failure count only against the
|
|
419
|
+
// optional gate that ran first, would be the original defect again: a
|
|
420
|
+
// required gate satisfied by a run that failed.
|
|
350
421
|
if (unproved && gate.level === "required") blocked = true;
|
|
351
422
|
}
|
|
352
423
|
|
|
@@ -999,9 +999,48 @@ function validateLive(ref, contract = trackerContract()) {
|
|
|
999
999
|
}
|
|
1000
1000
|
}
|
|
1001
1001
|
|
|
1002
|
-
|
|
1002
|
+
/**
|
|
1003
|
+
* Punctuation that can hug a URL in prose or markdown, stripped before compare.
|
|
1004
|
+
*
|
|
1005
|
+
* A URL is recognised as a whitespace-delimited token, so anything a writer
|
|
1006
|
+
* wraps around it — `<url>`, a trailing full stop, a closing bracket — would
|
|
1007
|
+
* otherwise make an exact comparison fail against a backlink that is perfectly
|
|
1008
|
+
* valid. Being too strict here fails closed and merely annoys; being too loose
|
|
1009
|
+
* is the defect below.
|
|
1010
|
+
*/
|
|
1011
|
+
const URL_EDGES = /^[<([]+|[>)\].,;:]+$/g;
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* The URLs a comment offers as backlinks, as discrete tokens.
|
|
1015
|
+
* @param {string} text Comment body.
|
|
1016
|
+
* @returns {string[]} Whitespace-delimited tokens, trimmed of edge punctuation.
|
|
1017
|
+
*/
|
|
1018
|
+
function backlinkTokens(text) {
|
|
1019
|
+
return text.split(/\s+/).map(token => token.replace(URL_EDGES, ""));
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
/**
|
|
1023
|
+
* Whether a value carries a backlink to exactly this pull request.
|
|
1024
|
+
*
|
|
1025
|
+
* The comparison is token equality, not containment. `value.includes(prUrl)`
|
|
1026
|
+
* was a substring test against a URL ending in the PR number, so a comment
|
|
1027
|
+
* linking PR #123 satisfied the gate for PR #12 — `.../pull/12` is a prefix of
|
|
1028
|
+
* `.../pull/123`. That is a fail-open in the check whose entire job is proving
|
|
1029
|
+
* a change is bound to its own work item, and it fails silently: the check goes
|
|
1030
|
+
* green and reports the binding verified.
|
|
1031
|
+
*
|
|
1032
|
+
* Both native paths already compare with `===`. Only this fallback was loose,
|
|
1033
|
+
* and it is the path GitHub Issues actually uses, having no native PR-link
|
|
1034
|
+
* field. Exported so the comparison can be asserted directly — a permissive
|
|
1035
|
+
* comparison returns `true` rather than throwing, so nothing observable changes
|
|
1036
|
+
* without an assertion on the returned boolean.
|
|
1037
|
+
* @param {unknown} value Comment body, or a structure containing one.
|
|
1038
|
+
* @param {string} prUrl The pull request URL that must be linked.
|
|
1039
|
+
* @returns {boolean} True when this exact pull request is linked.
|
|
1040
|
+
*/
|
|
1041
|
+
export function textContainsBacklink(value, prUrl) {
|
|
1003
1042
|
if (typeof value === "string")
|
|
1004
|
-
return value.includes(MARKER) && value.includes(prUrl);
|
|
1043
|
+
return value.includes(MARKER) && backlinkTokens(value).includes(prUrl);
|
|
1005
1044
|
if (Array.isArray(value))
|
|
1006
1045
|
return value.some(item => textContainsBacklink(item, prUrl));
|
|
1007
1046
|
if (value && typeof value === "object")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lisa-owned-hash-ledger.d.ts","sourceRoot":"","sources":["../../src/core/lisa-owned-hash-ledger.ts"],"names":[],"mappings":"AACA,6EAA6E;AAE7E;;;;;;;GAOG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAC3C,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"lisa-owned-hash-ledger.d.ts","sourceRoot":"","sources":["../../src/core/lisa-owned-hash-ledger.ts"],"names":[],"mappings":"AACA,6EAA6E;AAE7E;;;;;;;GAOG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAC3C,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,CA2TjC,CAAC"}
|
|
@@ -128,6 +128,7 @@ export const LISA_OWNED_HASH_LEDGER = Object.freeze({
|
|
|
128
128
|
"1e46e6ca651e87e7814a4f486af5784ed2f7a8a48eadcaa7d3fef26e380929f9",
|
|
129
129
|
"46b7c2213112306af9702c910a9bcf485ea0b46154e46f0afe8fb8b5b0ba6c08",
|
|
130
130
|
"49dee610439f4f21aecb0420a0cc72f5d3595a36f2489970053096190b9909c4",
|
|
131
|
+
"6bcf8b88b1d5ade1aa7c7902ba12af1df7b0b13d4e69c49a24f76a92474c93ec",
|
|
131
132
|
"6da00221189ed0f8a2938f15e02bcc2633d44f5f05489979fbb94202bc45a6d4",
|
|
132
133
|
"e1e3f22b33267212b90f915f83821559d1a45cab5b16c7164b86bd6c7b53549b",
|
|
133
134
|
]),
|
|
@@ -165,6 +166,7 @@ export const LISA_OWNED_HASH_LEDGER = Object.freeze({
|
|
|
165
166
|
"scripts/lisa-destructive-guard.mjs": Object.freeze([
|
|
166
167
|
"4fb431a3c58f443e303d613934d023d9e95ddae5c42710bb7009f7c080c82a64",
|
|
167
168
|
"66ade2c9cc0554c4934ed94a44563fd9d648b37cacfa9a5d31f17ac4f181e5a3",
|
|
169
|
+
"f0f3c43bbb6d1e389135b0205a051e64891e539d4272df2a87841ee82a8b7a55",
|
|
168
170
|
]),
|
|
169
171
|
"scripts/lisa-enforcement-fallback.sh": Object.freeze([
|
|
170
172
|
"1bec5f3c284b3febdc471487ee6a23ffb72bd4e7b293f9e26b0188f32318c722",
|
|
@@ -267,8 +269,10 @@ export const LISA_OWNED_HASH_LEDGER = Object.freeze({
|
|
|
267
269
|
"scripts/lisa-run-gates.mjs": Object.freeze([
|
|
268
270
|
"235c541534fc0eca510135ac39b9fbd196965fbeb54d42a09fbf052da1c925cd",
|
|
269
271
|
"c705d400f51a3a08ada085fc1107c3dce558f9a717528fc1fe9315aa6b97a5e6",
|
|
272
|
+
"d078570b2a7964eb481cd05e118e2a6559968020392c6e570d90cec8f20c5487",
|
|
270
273
|
"e00f16cdc399c8ee61c7a3972469fbb4b662e0fff00bd9d3d6910f3f27a5f04c",
|
|
271
274
|
"e429308896cf0450b2e5dfae9a580dde1a8da351503998c07ca3506e8b2ffdce",
|
|
275
|
+
"ed643bb28356e9c3f7e351227e690763d6b5e275a78d232cd9dba2d1fc55cffe",
|
|
272
276
|
]),
|
|
273
277
|
"scripts/lisa-schema-validate.mjs": Object.freeze([
|
|
274
278
|
"2ace82daacdebbbb00a7eceb09fbe82cabec04330a083ca10417b2ee4e0a63eb",
|
|
@@ -281,6 +285,7 @@ export const LISA_OWNED_HASH_LEDGER = Object.freeze({
|
|
|
281
285
|
"4c263fef48c03b3b6c623ea8a6cd55505bfaf28197e5072226ea35f9f3d26885",
|
|
282
286
|
"5eb31c284e820a51312d4484f0669128007326af55ee515923fec33700d003a1",
|
|
283
287
|
"6a8be8577242588f14ab52b25b2a22b6def53aefa9513b4d3d7c49f4d8027079",
|
|
288
|
+
"83e7f1257bfee293bcdcdafef4272f40fcdca2d9e43ceb9df647c13c8277423d",
|
|
284
289
|
"9223856be4618fb1e3e731b259ae5bf5328decc322f0b4a0d0fd18d6b12cd45a",
|
|
285
290
|
"96a87c131606b3edd43e52485e68f8ffbf5c528cb4beb7a1185263519a9632ce",
|
|
286
291
|
"ab0dede91c5c8a07984ae13aa48ec70cdcd2fa691b59617bc4b57998dc79a51c",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lisa-owned-hash-ledger.js","sourceRoot":"","sources":["../../src/core/lisa-owned-hash-ledger.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"lisa-owned-hash-ledger.js","sourceRoot":"","sources":["../../src/core/lisa-owned-hash-ledger.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAs1EpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAs1EpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CA4pOjE,CAAC;AAEL,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAk6I/D,CAAC"}
|
|
@@ -6,7 +6,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
6
6
|
"all/copy-overwrite/scripts/check-state-classification.mjs": "b218927f64a3db4f37762b60014e29d85a46899f4a0d17fcecc7782ce48bc499",
|
|
7
7
|
"all/copy-overwrite/scripts/lib/invoked-as-script.mjs": "fbb9b88fc85a3e22f21af39e1c17acf67ff83fc6b5a6cdc8081bde333c48faa7",
|
|
8
8
|
"all/copy-overwrite/scripts/lisa-command-envelope.mjs": "014a94647efc636cbce961364a82f03c1f3c1e54a55e9d21508fded88dce49c4",
|
|
9
|
-
"all/copy-overwrite/scripts/lisa-destructive-guard.mjs": "
|
|
9
|
+
"all/copy-overwrite/scripts/lisa-destructive-guard.mjs": "f0f3c43bbb6d1e389135b0205a051e64891e539d4272df2a87841ee82a8b7a55",
|
|
10
10
|
"all/copy-overwrite/scripts/lisa-enforcement-fallback.sh": "68e1b78d5d4471fadbe2eb575ae46221838217290123a9910d76dba0f1c34131",
|
|
11
11
|
"all/copy-overwrite/scripts/lisa-floor-collisions.mjs": "2d11968f6852ab745cba939de03c6d6cb5f413975d2cfc8fc447bdd0b218e91a",
|
|
12
12
|
"all/copy-overwrite/scripts/lisa-gates.mjs": "fbd68cf571985d7cfccf0f280cfe8112955849126e44d27d55ad619f9abb79ef",
|
|
@@ -17,9 +17,9 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
17
17
|
"all/copy-overwrite/scripts/lisa-hooks/parity-safety-net.sh": "1d4fbe135f1bb4e861d286a6512ed201d4522250dfe3f9eba6584bc5ff166a95",
|
|
18
18
|
"all/copy-overwrite/scripts/lisa-hooks/sonar-secrets.sh": "18e63683064305dab1200456896cbb9384ab35ee6bc51d3789ffbba46d1b1081",
|
|
19
19
|
"all/copy-overwrite/scripts/lisa-reconcile-policy.mjs": "3c062d0b79961a9a93a822507e893dcdaa71d65d735557727d20464c2489d812",
|
|
20
|
-
"all/copy-overwrite/scripts/lisa-run-gates.mjs": "
|
|
20
|
+
"all/copy-overwrite/scripts/lisa-run-gates.mjs": "d078570b2a7964eb481cd05e118e2a6559968020392c6e570d90cec8f20c5487",
|
|
21
21
|
"all/copy-overwrite/scripts/lisa-schema-validate.mjs": "2ace82daacdebbbb00a7eceb09fbe82cabec04330a083ca10417b2ee4e0a63eb",
|
|
22
|
-
"all/copy-overwrite/scripts/lisa-work-item.mjs": "
|
|
22
|
+
"all/copy-overwrite/scripts/lisa-work-item.mjs": "83e7f1257bfee293bcdcdafef4272f40fcdca2d9e43ceb9df647c13c8277423d",
|
|
23
23
|
"all/copy-overwrite/scripts/schemas/lisa-command-envelope.v1.schema.json": "d153b7c2953a30f180e38f09e98240c63327f5196eeba9bdf545e5a1f125a879",
|
|
24
24
|
"all/copy-overwrite/scripts/schemas/lisa-state-contract.v1.schema.json": "6b7afe4ffeba8aaa53871d8855172f7eacde05953b1321145218ec638ff5c1c4",
|
|
25
25
|
"all/create-only/.agents/rules/README.md": "fd260fd9b2934d0d698a8098dfff07fedc071849d588e602d773666678c3d540",
|
|
@@ -355,7 +355,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
355
355
|
"plugins/src/base/hooks/sonar-secrets.sh": "bf4132e49ba18e2f7e941520c299c15aeeacfd220e489f3d2eb8397f2048157b",
|
|
356
356
|
"plugins/src/base/hooks/threshold-ratchet-compare.mjs": "90affbeaed0d65c032dccfc0bd4a4b26eda291f6b61aa8b12599f41842452e0a",
|
|
357
357
|
"plugins/src/base/hooks/threshold-ratchet-families.mjs": "8fa58cc7276add0b2edf1de92bdcc32d81d840811ef0614ddc724010b59a888c",
|
|
358
|
-
"plugins/src/base/hooks/threshold-ratchet.mjs": "
|
|
358
|
+
"plugins/src/base/hooks/threshold-ratchet.mjs": "693b16d982635eef3c2d7564069623058c22c09a5784ccb0db5003cd55cdc637",
|
|
359
359
|
"plugins/src/base/hooks/threshold-ratchet.sh": "b86f4d0b554e44fd119ad8a8920cd0ba6c9dbe779f7ee219d381cf0629453990",
|
|
360
360
|
"plugins/src/base/hooks/ticket-sync-reminder.sh": "212f80bcdfd9e3ec2254987c5a7186d1d2d38065b330ddcdc631f76df7c4a6c0",
|
|
361
361
|
"plugins/src/base/hooks/track-plan-sessions.sh": "8bc47dcad3aed628df0c9efbe7b6f3df87635b94b0c54c71e0bd52eceace563a",
|
|
@@ -1019,7 +1019,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1019
1019
|
"rails/copy-overwrite/ast-grep/utils/.gitkeep": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
1020
1020
|
"rails/copy-overwrite/config/initializers/version.rb": "703bdfcceb031f38d19ddebe7ae3d432051f0d444ab7467b406ddd8e451ec9c7",
|
|
1021
1021
|
"rails/copy-overwrite/lefthook.yml": "3ae82d0a6ad86708d8ceaa1f9a3bbe12ef64e8fa12a0248bed5e3180bb431c68",
|
|
1022
|
-
"rails/copy-overwrite/scripts/check-threshold-ratchet.mjs": "
|
|
1022
|
+
"rails/copy-overwrite/scripts/check-threshold-ratchet.mjs": "6bcf8b88b1d5ade1aa7c7902ba12af1df7b0b13d4e69c49a24f76a92474c93ec",
|
|
1023
1023
|
"rails/copy-overwrite/scripts/lisa-clean-git-env.sh": "d15af6f13eedbca41046070972380e69fc0af8f7d903aac12b8644389b9a0c91",
|
|
1024
1024
|
"rails/copy-overwrite/scripts/threshold-ratchet-compare.mjs": "cf99167b05d210afad01fb41fc4aed548c66ee0e9a7c4decb8afa1f180eb5640",
|
|
1025
1025
|
"rails/copy-overwrite/scripts/threshold-ratchet-families.mjs": "f50e35d11295a836bd5b6d818aed6daea68ff70bdffbbdf9f67b09984a2628da",
|
|
@@ -1124,7 +1124,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1124
1124
|
"tsconfig/phaser.json": "5919bceaa8b12c772407021522fa63bfdf73063c23dba4d4d427d77562db6e21",
|
|
1125
1125
|
"tsconfig/spec.json": "632851ffa0fc7185f8d78b508b1d31bf39440907fad3a91ad174cc4ab93383ab",
|
|
1126
1126
|
"tsconfig/typescript.json": "8cf66a6535640e0a723e24bdf7a2d8e58a634c451f0754875c7880811381a914",
|
|
1127
|
-
"typescript/copy-contents/.husky/commit-msg": "
|
|
1127
|
+
"typescript/copy-contents/.husky/commit-msg": "85336c4d2c5bf5e16dd1b12b8c80668363d64b22e3c2e123955cf00e357fc22d",
|
|
1128
1128
|
"typescript/copy-contents/.husky/post-checkout": "f3abc4528e12d3ad2bc48b236d19f105e2817595c744156a558c62ae5551ccfb",
|
|
1129
1129
|
"typescript/copy-contents/.husky/pre-commit": "c29bb23a8466dd7f1e04ecbd2df5faaa5eb286f261cff948b9451430c0ca716b",
|
|
1130
1130
|
"typescript/copy-contents/.husky/pre-push": "13da67af0060558dd0a81320efe2719ff23ca3e8488000479e063f5ae9025f2c",
|
|
@@ -1153,7 +1153,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1153
1153
|
"typescript/copy-overwrite/knip.json": "6eb93d705a2d645332fbae1dd42cf2d48f85978ebc265451a53790912f277d12",
|
|
1154
1154
|
"typescript/copy-overwrite/scripts/check-nightly-e2e-health.mjs": "5f47f02563671a25ad14dc69210f1f52e9141e0e53a27bafce52d41899aa9d21",
|
|
1155
1155
|
"typescript/copy-overwrite/scripts/check-skipped-required-checks.mjs": "5af5f112ba258c4874a65c72c8bed12165e75e4df407265eb46ee9c89c4e0e53",
|
|
1156
|
-
"typescript/copy-overwrite/scripts/check-threshold-ratchet.mjs": "
|
|
1156
|
+
"typescript/copy-overwrite/scripts/check-threshold-ratchet.mjs": "6bcf8b88b1d5ade1aa7c7902ba12af1df7b0b13d4e69c49a24f76a92474c93ec",
|
|
1157
1157
|
"typescript/copy-overwrite/scripts/check-verification-coverage.mjs": "0cddac03366644cdc99cc239e74520ac420d475b461a40a21728e43756872b07",
|
|
1158
1158
|
"typescript/copy-overwrite/scripts/lib/invoked-as-script.mjs": "fbb9b88fc85a3e22f21af39e1c17acf67ff83fc6b5a6cdc8081bde333c48faa7",
|
|
1159
1159
|
"typescript/copy-overwrite/scripts/lisa-mutation.mjs": "8e0bdb491dfaea04e88be1c1e2c6cc7cd34fa4ca18adddf5fecc43d7de8ffded",
|
|
@@ -7819,6 +7819,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7819
7819
|
"tests/unit/scripts/cross-pollinate.test.ts": true,
|
|
7820
7820
|
"tests/unit/scripts/cursor-artifact-helpers.ts": true,
|
|
7821
7821
|
"tests/unit/scripts/derived-artifact-staleness.test.ts": true,
|
|
7822
|
+
"tests/unit/scripts/destructive-capability-compound-names.test.ts": true,
|
|
7822
7823
|
"tests/unit/scripts/destructive-production-guard.test.ts": true,
|
|
7823
7824
|
"tests/unit/scripts/destructive-production-unreachable.test.ts": true,
|
|
7824
7825
|
"tests/unit/scripts/detect-stale-workflow-inputs-helpers.ts": true,
|
|
@@ -7849,6 +7850,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7849
7850
|
"tests/unit/scripts/lisa-run-gates-conditional-floor.test.ts": true,
|
|
7850
7851
|
"tests/unit/scripts/lisa-run-gates-fixtures.ts": true,
|
|
7851
7852
|
"tests/unit/scripts/lisa-run-gates-floor.test.ts": true,
|
|
7853
|
+
"tests/unit/scripts/lisa-run-gates-shared-prover.test.ts": true,
|
|
7852
7854
|
"tests/unit/scripts/lisa-run-gates.test.ts": true,
|
|
7853
7855
|
"tests/unit/scripts/lisa-work-item.test.ts": true,
|
|
7854
7856
|
"tests/unit/scripts/maestro-flake-classification.test.ts": true,
|
|
@@ -7880,11 +7882,13 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7880
7882
|
"tests/unit/scripts/state-classification.test.ts": true,
|
|
7881
7883
|
"tests/unit/scripts/threshold-ratchet-gates.test.ts": true,
|
|
7882
7884
|
"tests/unit/scripts/threshold-ratchet-promotion.test.ts": true,
|
|
7885
|
+
"tests/unit/scripts/threshold-ratchet-symlinked-entry.test.ts": true,
|
|
7883
7886
|
"tests/unit/scripts/threshold-ratchet-wiring.test.ts": true,
|
|
7884
7887
|
"tests/unit/scripts/threshold-ratchet.test.ts": true,
|
|
7885
7888
|
"tests/unit/scripts/upstream-evidence-manifest.test.ts": true,
|
|
7886
7889
|
"tests/unit/scripts/vacuous-required-checks.test.ts": true,
|
|
7887
7890
|
"tests/unit/scripts/verification-coverage.test.ts": true,
|
|
7891
|
+
"tests/unit/scripts/work-item-backlink-exactness.test.ts": true,
|
|
7888
7892
|
"tests/unit/scripts/work-item-github-failure-diagnosis.test.ts": true,
|
|
7889
7893
|
"tests/unit/scripts/work-item-tracker-unreachable.test.ts": true,
|
|
7890
7894
|
"tests/unit/secrets/automation-workflow.test.ts": true,
|