@codyswann/lisa 3.48.5 → 3.48.7
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-commit-msg-gates.mjs +251 -0
- package/dist/core/lisa-owned-hash-ledger.d.ts.map +1 -1
- package/dist/core/lisa-owned-hash-ledger.js +4 -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 +13 -4
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- 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-cursor/.claude-plugin/plugin.json +1 -1
- 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/scripts/check-derived-artifacts.mjs +22 -4
- package/scripts/generate-upstream-evidence-manifest.mjs +10 -1
- package/scripts/lib/upstream-manifest-staleness.mjs +235 -0
- package/scripts/lisa-commit-msg-gates.mjs +12 -0
- package/typescript/copy-contents/.husky/commit-msg +28 -1
- package/typescript/copy-overwrite/.prettierignore +1 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// This file is managed by Lisa and IS replaced on each `lisa` run.
|
|
3
|
+
// Do not edit directly — durable changes belong upstream in Lisa.
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @file Name every gate family that runs at the commit-msg moment.
|
|
7
|
+
*
|
|
8
|
+
* ## The defect this removes
|
|
9
|
+
*
|
|
10
|
+
* More than one INDEPENDENT gate family bites at `commit-msg`, and until this
|
|
11
|
+
* file existed only one of them introduced itself. `lisa-work-item.mjs` prints
|
|
12
|
+
* a five-gate checklist on any traceability refusal — deliberately scoped to
|
|
13
|
+
* the traceability contract, which is the only contract it owns. At the same
|
|
14
|
+
* moment the hook also runs commitlint and an AI co-authorship check, and
|
|
15
|
+
* neither said so until it fired. An operator could satisfy every requirement
|
|
16
|
+
* the checklist named and still be refused, twice, for reasons nothing had
|
|
17
|
+
* mentioned. Measured: two sessions in one day each cleared the named gates and
|
|
18
|
+
* were bounced by the co-authorship trailer.
|
|
19
|
+
*
|
|
20
|
+
* ## Why it is a third file rather than a sixth line
|
|
21
|
+
*
|
|
22
|
+
* The obvious fix — append the co-authorship gate to `gateSummary` — was
|
|
23
|
+
* rejected upstream and the reasoning is worth keeping. `gateSummary` lives in
|
|
24
|
+
* `lisa-work-item.mjs`, which does not own the co-authorship check, cannot
|
|
25
|
+
* verify it, and cannot know whether a given host project installs it. A
|
|
26
|
+
* checklist that confidently names a gate a project does not have is worse than
|
|
27
|
+
* one that stays silent, for the same reason the traceability checklist reads
|
|
28
|
+
* role names from the resolved contract instead of hardcoding Lisa's defaults.
|
|
29
|
+
* And folding an unrelated family into a list headed "All five gates" makes the
|
|
30
|
+
* count wrong in a new direction, which is the precise defect that list exists
|
|
31
|
+
* to remove.
|
|
32
|
+
*
|
|
33
|
+
* So this module is owned by neither check. It answers one question — what runs
|
|
34
|
+
* at commit-msg in THIS project — and both families call it on refusal.
|
|
35
|
+
*
|
|
36
|
+
* ## Why the answer is read off the hook rather than declared
|
|
37
|
+
*
|
|
38
|
+
* The families are detected from the INVOCATIONS in the project's own
|
|
39
|
+
* `commit-msg` hook: `validate-commit`, `commitlint --edit`, the co-authorship
|
|
40
|
+
* `grep`. That is the file that is doing the refusing, so it is the only
|
|
41
|
+
* honest authority on what a commit here must survive.
|
|
42
|
+
*
|
|
43
|
+
* A marker comment the hook declares would read more cleanly and was the first
|
|
44
|
+
* design. It fails on the case that matters: a host that deletes a block keeps
|
|
45
|
+
* whatever the block was declared to be somewhere else, and an installed hook
|
|
46
|
+
* predating the marker declares nothing at all — so the summary would either
|
|
47
|
+
* name a gate that no longer runs or name none of them. Detecting the call
|
|
48
|
+
* degrades the right way in both directions.
|
|
49
|
+
*
|
|
50
|
+
* Every candidate hook path is read and the results unioned, because "the
|
|
51
|
+
* commit-msg hook" is not one path: husky 8 points git straight at
|
|
52
|
+
* `.husky/commit-msg`, husky 9 interposes `.husky/_/commit-msg`, and a project
|
|
53
|
+
* using neither has `.git/hooks/commit-msg`. Reading only the one git invoked
|
|
54
|
+
* would answer "no families" for the husky 9 shim, which contains no gate at
|
|
55
|
+
* all.
|
|
56
|
+
*
|
|
57
|
+
* Usage:
|
|
58
|
+
* lisa-commit-msg-gates.mjs list [--hook <path>] [--refused <family-id>]
|
|
59
|
+
*
|
|
60
|
+
* Always exits 0. This runs only on a refusal that has already decided to fail
|
|
61
|
+
* the commit; it must never be the reason a commit is refused, and it must
|
|
62
|
+
* never turn a refusal into a crash.
|
|
63
|
+
*/
|
|
64
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
65
|
+
import { join } from "node:path";
|
|
66
|
+
|
|
67
|
+
import { invokedAsScript } from "./lib/invoked-as-script.mjs";
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* The gate families that can run at `commit-msg`, in the order the hook runs
|
|
71
|
+
* them — which is the order an operator meets them, one refusal at a time.
|
|
72
|
+
*
|
|
73
|
+
* `detect` matches the ENFORCING invocation, never prose. The co-authorship
|
|
74
|
+
* block in particular carries a long comment that names the trailer it checks
|
|
75
|
+
* for; a project that deleted the check and left the comment would still be
|
|
76
|
+
* told the gate runs, which is the failure this whole file exists to remove.
|
|
77
|
+
*
|
|
78
|
+
* `id` is the registry gate id where the registry has one. `ai-coauthorship`
|
|
79
|
+
* has none — no declaration in `.lisa.config.json` governs it — and that is
|
|
80
|
+
* recorded here rather than papered over with an invented name.
|
|
81
|
+
*/
|
|
82
|
+
export const FAMILIES = Object.freeze([
|
|
83
|
+
Object.freeze({
|
|
84
|
+
id: "traceability",
|
|
85
|
+
title: "Work-Item traceability",
|
|
86
|
+
detect: /validate-commit/,
|
|
87
|
+
requirement:
|
|
88
|
+
"Every commit message carries one matching `Work-Item:` trailer for a live tracker item. Its own refusal prints the full five-gate checklist.",
|
|
89
|
+
}),
|
|
90
|
+
Object.freeze({
|
|
91
|
+
id: "commit-conformance",
|
|
92
|
+
title: "Conventional commit format",
|
|
93
|
+
detect: /commitlint[\s\S]{0,40}--edit/,
|
|
94
|
+
requirement:
|
|
95
|
+
"The subject reads `<type>(<optional scope>): <subject>`, and the body obeys the project's commitlint rules.",
|
|
96
|
+
}),
|
|
97
|
+
Object.freeze({
|
|
98
|
+
id: "ai-coauthorship",
|
|
99
|
+
title: "AI co-authorship",
|
|
100
|
+
detect: /grep[^\n]{0,20}-Eiq[^\n]{0,10}"Co-authored-by:/i,
|
|
101
|
+
requirement:
|
|
102
|
+
"The message carries a `Co-authored-by:` trailer naming a supported coding agent — Claude, Codex, or OpenCode. OpenCode also needs `AI-Agent`, `AI-Model` and `AI-Effort` trailers.",
|
|
103
|
+
}),
|
|
104
|
+
]);
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Where a `commit-msg` hook can live, cwd-relative.
|
|
108
|
+
*
|
|
109
|
+
* git runs hooks from the repository root, so relative paths are the right
|
|
110
|
+
* spelling and they keep this readable in the diagnostics a test asserts on.
|
|
111
|
+
*/
|
|
112
|
+
const HOOK_NAME = "commit-msg";
|
|
113
|
+
const HOOK_CANDIDATES = Object.freeze([
|
|
114
|
+
join(".husky", HOOK_NAME),
|
|
115
|
+
join(".husky", "_", HOOK_NAME),
|
|
116
|
+
join(".git", "hooks", HOOK_NAME),
|
|
117
|
+
]);
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Read every commit-msg hook this project has.
|
|
121
|
+
* @param {string | null} explicitPath - A hook path the caller knows, or null.
|
|
122
|
+
* @returns {string[]} Hook sources; empty when none can be read.
|
|
123
|
+
*/
|
|
124
|
+
export function readHookSources(explicitPath) {
|
|
125
|
+
const paths = explicitPath
|
|
126
|
+
? [explicitPath, ...HOOK_CANDIDATES]
|
|
127
|
+
: [...HOOK_CANDIDATES];
|
|
128
|
+
const seen = new Set();
|
|
129
|
+
const sources = [];
|
|
130
|
+
for (const path of paths) {
|
|
131
|
+
if (seen.has(path)) continue;
|
|
132
|
+
seen.add(path);
|
|
133
|
+
if (!existsSync(path)) continue;
|
|
134
|
+
try {
|
|
135
|
+
sources.push(readFileSync(path, "utf8"));
|
|
136
|
+
} catch {
|
|
137
|
+
// Unreadable is the same as absent for this purpose. A permissions error
|
|
138
|
+
// on one candidate must not cost the operator the families the others
|
|
139
|
+
// would have named.
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
return sources;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Which families any of these hook sources actually installs.
|
|
147
|
+
* @param {string[]} sources - Hook sources.
|
|
148
|
+
* @returns {object[]} Families present, in registry order.
|
|
149
|
+
*/
|
|
150
|
+
export function detectFamilies(sources) {
|
|
151
|
+
return FAMILIES.filter(family =>
|
|
152
|
+
sources.some(source => family.detect.test(source))
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Wrap one requirement to a readable width under a hanging indent.
|
|
158
|
+
* @param {string} text - The requirement sentence.
|
|
159
|
+
* @param {number} width - Column to wrap at.
|
|
160
|
+
* @returns {string[]} Wrapped lines, without the indent.
|
|
161
|
+
*/
|
|
162
|
+
function wrap(text, width) {
|
|
163
|
+
const lines = [];
|
|
164
|
+
let line = "";
|
|
165
|
+
for (const word of text.split(" ")) {
|
|
166
|
+
if (line.length > 0 && line.length + 1 + word.length > width) {
|
|
167
|
+
lines.push(line);
|
|
168
|
+
line = word;
|
|
169
|
+
continue;
|
|
170
|
+
}
|
|
171
|
+
line = line.length === 0 ? word : `${line} ${word}`;
|
|
172
|
+
}
|
|
173
|
+
if (line.length > 0) lines.push(line);
|
|
174
|
+
return lines;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/** Width the requirement sentences wrap at, under a five-space indent. */
|
|
178
|
+
const WRAP_WIDTH = 68;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* The operator-facing summary.
|
|
182
|
+
*
|
|
183
|
+
* It says the count, says that clearing one proves nothing about the rest, and
|
|
184
|
+
* marks the family that just refused — which is the question an operator
|
|
185
|
+
* reading a wall of hook output actually has. It names ONLY the families
|
|
186
|
+
* detected, so a project that installs one of them is never told it has three.
|
|
187
|
+
* @param {object[]} families - Families this project installs.
|
|
188
|
+
* @param {string | null} refusedId - Family that refused this commit, if known.
|
|
189
|
+
* @returns {string} The summary, or "" when nothing was detected.
|
|
190
|
+
*/
|
|
191
|
+
export function summary(families, refusedId) {
|
|
192
|
+
if (families.length === 0) return "";
|
|
193
|
+
const plural = families.length === 1 ? "family runs" : "families run";
|
|
194
|
+
const lines = [
|
|
195
|
+
"",
|
|
196
|
+
"──────────────────────────────────────────────────────────────",
|
|
197
|
+
`${families.length} gate ${plural} at the commit-msg moment in this project, and a`,
|
|
198
|
+
"commit must satisfy every one of them. The first refusal stops the",
|
|
199
|
+
"commit, so clearing this one proves nothing about the others.",
|
|
200
|
+
"",
|
|
201
|
+
];
|
|
202
|
+
families.forEach((family, index) => {
|
|
203
|
+
const mark = family.id === refusedId ? " ← refused this commit" : "";
|
|
204
|
+
lines.push(` ${index + 1}. ${family.title}${mark}`);
|
|
205
|
+
for (const wrapped of wrap(family.requirement, WRAP_WIDTH)) {
|
|
206
|
+
lines.push(` ${wrapped}`);
|
|
207
|
+
}
|
|
208
|
+
});
|
|
209
|
+
lines.push(
|
|
210
|
+
"",
|
|
211
|
+
"Read off what this project's commit-msg hook actually runs, so a",
|
|
212
|
+
"family it does not install is never named here.",
|
|
213
|
+
"──────────────────────────────────────────────────────────────"
|
|
214
|
+
);
|
|
215
|
+
return lines.join("\n");
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Read a `--flag value` pair out of an argument list.
|
|
220
|
+
* @param {string[]} argv - Arguments.
|
|
221
|
+
* @param {string} flag - Flag to read, including its leading dashes.
|
|
222
|
+
* @returns {string | null} The value, or null when absent.
|
|
223
|
+
*/
|
|
224
|
+
function flagValue(argv, flag) {
|
|
225
|
+
const index = argv.indexOf(flag);
|
|
226
|
+
if (index < 0 || index + 1 >= argv.length) return null;
|
|
227
|
+
return argv[index + 1];
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Print the summary for this project.
|
|
232
|
+
*
|
|
233
|
+
* Never throws and never exits non-zero: see the file remarks. The caller is a
|
|
234
|
+
* hook that has already decided to refuse, and a diagnostic that can fail is a
|
|
235
|
+
* diagnostic that turns a clear refusal into a stack trace.
|
|
236
|
+
* @param {string[]} [argv] - Arguments after the command name.
|
|
237
|
+
*/
|
|
238
|
+
export function runCli(argv = process.argv.slice(2)) {
|
|
239
|
+
try {
|
|
240
|
+
const families = detectFamilies(readHookSources(flagValue(argv, "--hook")));
|
|
241
|
+
const text = summary(families, flagValue(argv, "--refused"));
|
|
242
|
+
if (text.length > 0) process.stdout.write(`${text}\n`);
|
|
243
|
+
} catch {
|
|
244
|
+
// Silence is the correct degradation. The refusal the caller is about to
|
|
245
|
+
// print is the message that matters.
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
if (invokedAsScript(import.meta.url)) {
|
|
250
|
+
runCli();
|
|
251
|
+
}
|
|
@@ -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,CA+cjC,CAAC"}
|
|
@@ -220,6 +220,10 @@ export const LISA_OWNED_HASH_LEDGER = Object.freeze({
|
|
|
220
220
|
"6b198f088cd3cd862d4357fbb069b1ad5d3afeb7be594f2bf1ff603b092a8354",
|
|
221
221
|
"e06cb11f1418fe94564cea527a22b039f53b7ab10c1cd182264a31e52bba9fa8",
|
|
222
222
|
]),
|
|
223
|
+
"scripts/lisa-commit-msg-gates.mjs": Object.freeze([
|
|
224
|
+
"5d587fd849cef02e9706d084ac2b508f3885da0ba59b76311e3b666f4fbff01e",
|
|
225
|
+
"99422b4912cd660ddeb5ec5ab9fc333e57fa5763e711117a00b06dd2eda0bbb7",
|
|
226
|
+
]),
|
|
223
227
|
"scripts/lisa-destructive-guard.mjs": Object.freeze([
|
|
224
228
|
"4fb431a3c58f443e303d613934d023d9e95ddae5c42710bb7009f7c080c82a64",
|
|
225
229
|
"66ade2c9cc0554c4934ed94a44563fd9d648b37cacfa9a5d31f17ac4f181e5a3",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lisa-owned-hash-ledger.js","sourceRoot":"","sources":["../../src/core/lisa-owned-hash-ledger.ts"],"names":[],"mappings":"AAAA,mEAAmE;AACnE,6EAA6E;AAE7E;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAE/B,MAAM,CAAC,MAAM,CAAC;IAChB,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC;QACtC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,0BAA0B,EAAE,MAAM,CAAC,MAAM,CAAC;QACxC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,0BAA0B,EAAE,MAAM,CAAC,MAAM,CAAC;QACxC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,0BAA0B,EAAE,MAAM,CAAC,MAAM,CAAC;QACxC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,0BAA0B,EAAE,MAAM,CAAC,MAAM,CAAC;QACxC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,+BAA+B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC7C,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,uBAAuB,EAAE,MAAM,CAAC,MAAM,CAAC;QACrC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC;QACtC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC;QACtC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,0BAA0B,EAAE,MAAM,CAAC,MAAM,CAAC;QACxC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,yBAAyB,EAAE,MAAM,CAAC,MAAM,CAAC;QACvC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,gCAAgC,EAAE,MAAM,CAAC,MAAM,CAAC;QAC9C,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,gCAAgC,EAAE,MAAM,CAAC,MAAM,CAAC;QAC9C,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,sCAAsC,EAAE,MAAM,CAAC,MAAM,CAAC;QACpD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,2CAA2C,EAAE,MAAM,CAAC,MAAM,CAAC;QACzD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wCAAwC,EAAE,MAAM,CAAC,MAAM,CAAC;QACtD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,qCAAqC,EAAE,MAAM,CAAC,MAAM,CAAC;QACnD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,yCAAyC,EAAE,MAAM,CAAC,MAAM,CAAC;QACvD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,uCAAuC,EAAE,MAAM,CAAC,MAAM,CAAC;QACrD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wCAAwC,EAAE,MAAM,CAAC,MAAM,CAAC;QACtD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC;QACjD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,+BAA+B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC7C,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC;QACjD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,oCAAoC,EAAE,MAAM,CAAC,MAAM,CAAC;QAClD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,sCAAsC,EAAE,MAAM,CAAC,MAAM,CAAC;QACpD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,sCAAsC,EAAE,MAAM,CAAC,MAAM,CAAC;QACpD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC;QACjD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC;QACtC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,iDAAiD,EAAE,MAAM,CAAC,MAAM,CAAC;QAC/D,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,oDAAoD,EAAE,MAAM,CAAC,MAAM,CAAC;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,gDAAgD,EAAE,MAAM,CAAC,MAAM,CAAC;QAC9D,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,uCAAuC,EAAE,MAAM,CAAC,MAAM,CAAC;QACrD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,gDAAgD,EAAE,MAAM,CAAC,MAAM,CAAC;QAC9D,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,yCAAyC,EAAE,MAAM,CAAC,MAAM,CAAC;QACvD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,qCAAqC,EAAE,MAAM,CAAC,MAAM,CAAC;QACnD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wCAAwC,EAAE,MAAM,CAAC,MAAM,CAAC;QACtD,kEAAkE;KACnE,CAAC;IACF,2BAA2B,EAAE,MAAM,CAAC,MAAM,CAAC;QACzC,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,8BAA8B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC5C,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC;QACjD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,4BAA4B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC1C,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,kCAAkC,EAAE,MAAM,CAAC,MAAM,CAAC;QAChD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,4BAA4B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC1C,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,4BAA4B,EAAE,MAAM,CAAC,MAAM,CAAC;QAC1C,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wCAAwC,EAAE,MAAM,CAAC,MAAM,CAAC;QACtD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,sDAAsD,EAAE,MAAM,CAAC,MAAM,CAAC;QACpE,kEAAkE;KACnE,CAAC;IACF,oDAAoD,EAAE,MAAM,CAAC,MAAM,CAAC;QAClE,kEAAkE;KACnE,CAAC;IACF,uCAAuC,EAAE,MAAM,CAAC,MAAM,CAAC;QACrD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;IACF,wCAAwC,EAAE,MAAM,CAAC,MAAM,CAAC;QACtD,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;QAClE,kEAAkE;KACnE,CAAC;CACH,CAAC,CAAC;AACH,sEAAsE"}
|
|
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,
|
|
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,CAg3EpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CA+2OjE,CAAC;AAEL,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAk6I/D,CAAC"}
|
|
@@ -7,6 +7,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
7
7
|
"all/copy-overwrite/scripts/lib/gate-failure-diagnosis.mjs": "503b51e9239411d07ce6b51dbe2b3079bb12e94bf7c0310e76247af19ff667e6",
|
|
8
8
|
"all/copy-overwrite/scripts/lib/invoked-as-script.mjs": "fbb9b88fc85a3e22f21af39e1c17acf67ff83fc6b5a6cdc8081bde333c48faa7",
|
|
9
9
|
"all/copy-overwrite/scripts/lisa-command-envelope.mjs": "014a94647efc636cbce961364a82f03c1f3c1e54a55e9d21508fded88dce49c4",
|
|
10
|
+
"all/copy-overwrite/scripts/lisa-commit-msg-gates.mjs": "5d587fd849cef02e9706d084ac2b508f3885da0ba59b76311e3b666f4fbff01e",
|
|
10
11
|
"all/copy-overwrite/scripts/lisa-destructive-guard.mjs": "f0f3c43bbb6d1e389135b0205a051e64891e539d4272df2a87841ee82a8b7a55",
|
|
11
12
|
"all/copy-overwrite/scripts/lisa-enforcement-fallback.sh": "b4cc14d5dc02c790ea3e51b0134b9c3d5e4a0e8ef08a652817f7485a0badde17",
|
|
12
13
|
"all/copy-overwrite/scripts/lisa-environment-prepare.mjs": "f936bc8a038a7901ade1ba58cc52e5f5a8b8b2a52a9f0c1516567cc80eb02ccb",
|
|
@@ -1067,7 +1068,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1067
1068
|
"scripts/build-plugins.sh": "00a3207bb5a485bfee80fb71be6e9577979fd156b15a85517e88a2f9261bc9f4",
|
|
1068
1069
|
"scripts/check-conflict-markers.mjs": "3a2ab8dde9deab3e8ee750d5678b6653751abad2eb8f961500585ba38f502047",
|
|
1069
1070
|
"scripts/check-delivery-deletion-conflicts.mjs": "e7fe0064ad82a4dba17436657630a46891568a3d18930eb172fe9ee3f54196aa",
|
|
1070
|
-
"scripts/check-derived-artifacts.mjs": "
|
|
1071
|
+
"scripts/check-derived-artifacts.mjs": "86cca46aa7f055ae149b5a378d56d2c4e5dbbbe48e020b79883e21cae50c5956",
|
|
1071
1072
|
"scripts/check-duplicate-versions.mjs": "26b26351dd2735dfd8d9a2436b89e876ce2ed93871d0b264f611215dd03d70ae",
|
|
1072
1073
|
"scripts/check-learnings-budget.ts": "007430c2d6938efcc79ccbfd5717ebe2c7cf66b4de9a21a3e67b8db7f3600349",
|
|
1073
1074
|
"scripts/check-plugins-sync.sh": "3a99cbff0e8ec5e7c944690eae003a6d51b51c85436d77bd37faea4d553728af",
|
|
@@ -1093,7 +1094,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1093
1094
|
"scripts/generate-copilot-plugin-artifacts.mjs": "7af923118c49101e6ba46da73a8eee8aee9b797e074618aa5345913e638d7cdb",
|
|
1094
1095
|
"scripts/generate-cursor-plugin-artifacts.mjs": "45d3bde7b6c55310f0d9436dd68a1bdeefb6fa817be4d15ef745421b39a2cf47",
|
|
1095
1096
|
"scripts/generate-lisa-owned-hash-ledger.mjs": "4e7a6dd9325fff77faec49c1dcbf8a8cfeb987052eeed89885deb4f7b0a107bc",
|
|
1096
|
-
"scripts/generate-upstream-evidence-manifest.mjs": "
|
|
1097
|
+
"scripts/generate-upstream-evidence-manifest.mjs": "a33bd0ee344782a9b2f400f5adfeecd9e7e201b61b073a9e85cc69311b8721e0",
|
|
1097
1098
|
"scripts/github-status-check.sh": "c6a4a13ff5cf689fcbd7a6aca718f9e7d46d54ccb6687f662b055c1ca20e792f",
|
|
1098
1099
|
"scripts/install-claude-plugins.sh": "0e96ebbae1e59304bb432286eccba38900a6008b80f2c53a1ec2c95801d4087c",
|
|
1099
1100
|
"scripts/internal-agy-skill-policy.json": "c2ce87d2eeebfdc9f24d6486425c010cf9289376f8a459f4767ca22d2bf8670d",
|
|
@@ -1107,8 +1108,10 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1107
1108
|
"scripts/lib/per-agent-hook-filter.mjs": "04ea61ea616614fb545024f98ab27fb08af3f0331da06bb60943d6262e264000",
|
|
1108
1109
|
"scripts/lib/reusable-workflow-contract.d.mts": "791f01b55dd7a6b5d9a5f4cb9c44167caa146c2fc3c31a2ae4c2d8a350adc2f1",
|
|
1109
1110
|
"scripts/lib/reusable-workflow-contract.mjs": "134ee2a327290f066f1eb318b5ed53c711557c3e10ed462c00ff5c97cfb20863",
|
|
1111
|
+
"scripts/lib/upstream-manifest-staleness.mjs": "c69fc5ba10228b7f4f8d0068db27ee8a289143094fa8718b14af83f4af31f76d",
|
|
1110
1112
|
"scripts/lisa-assert-eas-profile.mjs": "624e40d7f33ca17208fc6b7a19320a785cff19da5d2ff8062b67a432b2a34022",
|
|
1111
1113
|
"scripts/lisa-commit-and-pr-local.sh": "605409c3ce6ec38ad3275604291a1ceae98f7807a605654263bc14f811c03903",
|
|
1114
|
+
"scripts/lisa-commit-msg-gates.mjs": "f961cb70a525e7b0a94b8ca7a76d1e2bb5b1929d5477417e159dbf58312ce0d8",
|
|
1112
1115
|
"scripts/lisa-enforcement-fallback.sh": "c065e1fb3b07addc2c6d14d4436bd9c64aa3d0112e6d9dbea4561cc8072895df",
|
|
1113
1116
|
"scripts/lisa-github-environments.sh": "0a76e92f108519abaf3e29991299ec3b0db20ea533e69e6d2a53d802dba9c370",
|
|
1114
1117
|
"scripts/lisa-github-repo-settings.sh": "4afbccdfb08c62ba13afee42ec8561a28facf87c61f6f4b80000115328364d54",
|
|
@@ -1143,7 +1146,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1143
1146
|
"tsconfig/phaser.json": "5919bceaa8b12c772407021522fa63bfdf73063c23dba4d4d427d77562db6e21",
|
|
1144
1147
|
"tsconfig/spec.json": "632851ffa0fc7185f8d78b508b1d31bf39440907fad3a91ad174cc4ab93383ab",
|
|
1145
1148
|
"tsconfig/typescript.json": "8cf66a6535640e0a723e24bdf7a2d8e58a634c451f0754875c7880811381a914",
|
|
1146
|
-
"typescript/copy-contents/.husky/commit-msg": "
|
|
1149
|
+
"typescript/copy-contents/.husky/commit-msg": "1885cc0f655a5a336078db510ceb8854582c628cb813c14fd052a1f6aa3bab07",
|
|
1147
1150
|
"typescript/copy-contents/.husky/post-checkout": "f3abc4528e12d3ad2bc48b236d19f105e2817595c744156a558c62ae5551ccfb",
|
|
1148
1151
|
"typescript/copy-contents/.husky/pre-commit": "e37bf7e8e49139fd726bda6bfeb69dd30008d8e5d14fa562a3ff4f541f217e6f",
|
|
1149
1152
|
"typescript/copy-contents/.husky/pre-push": "fb2bb88b1be0993eeb2c5198757797a8806e2a4ca53ce52ea88346124e7d1a1a",
|
|
@@ -1152,7 +1155,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1152
1155
|
"typescript/copy-overwrite/.github/GITHUB_ACTIONS.md": "e968bd4474853f7ff2d03aa5c80a7dc5a6aa2b02eb84b2d1b97da88949d64106",
|
|
1153
1156
|
"typescript/copy-overwrite/.lintstagedrc.json": "60bf2d5e86bf9d72f04b8b14368591f104674ff80046fe8bd82e4174ca1523fd",
|
|
1154
1157
|
"typescript/copy-overwrite/.nvmrc": "0775c6feb7638122e8b68d611cd709bf270f7b5adb5d0d2baa9afab8a6c0fc42",
|
|
1155
|
-
"typescript/copy-overwrite/.prettierignore": "
|
|
1158
|
+
"typescript/copy-overwrite/.prettierignore": "92fa6096492cb508be2bdc0d6f9c1a155143a1147b9031b96757ed5f2e8fb99c",
|
|
1156
1159
|
"typescript/copy-overwrite/.prettierrc.json": "a20621f79a064486fba53cc0ea3000a2ece3f312ff38495c6a6606a27d2a727c",
|
|
1157
1160
|
"typescript/copy-overwrite/.versionrc": "96d51e3087892bb795788dbd0ca3e5ebe7b67252e58adae5bbc469eaf424af35",
|
|
1158
1161
|
"typescript/copy-overwrite/.yamllint": "685de50b905e024ac8882cdf6443850e96a44744ac03366cae636ceb384dd4e0",
|
|
@@ -1209,6 +1212,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1209
1212
|
/** Exact paths tracked by the public Lisa repository at generation time. */
|
|
1210
1213
|
export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
1211
1214
|
".agents/rules/never-name-downstream-projects.md": true,
|
|
1215
|
+
".agents/rules/regenerating-derived-artifacts.md": true,
|
|
1212
1216
|
".agents/skills/claude-code-action/SKILL.md": true,
|
|
1213
1217
|
".agents/skills/claude-code-action/references/inputs.md": true,
|
|
1214
1218
|
".agents/skills/harness-parity-council/SKILL.md": true,
|
|
@@ -1343,6 +1347,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
1343
1347
|
"all/copy-overwrite/scripts/lib/gate-failure-diagnosis.mjs": true,
|
|
1344
1348
|
"all/copy-overwrite/scripts/lib/invoked-as-script.mjs": true,
|
|
1345
1349
|
"all/copy-overwrite/scripts/lisa-command-envelope.mjs": true,
|
|
1350
|
+
"all/copy-overwrite/scripts/lisa-commit-msg-gates.mjs": true,
|
|
1346
1351
|
"all/copy-overwrite/scripts/lisa-destructive-guard.mjs": true,
|
|
1347
1352
|
"all/copy-overwrite/scripts/lisa-enforcement-fallback.sh": true,
|
|
1348
1353
|
"all/copy-overwrite/scripts/lisa-environment-prepare.mjs": true,
|
|
@@ -7065,8 +7070,10 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7065
7070
|
"scripts/lib/per-agent-hook-filter.mjs": true,
|
|
7066
7071
|
"scripts/lib/reusable-workflow-contract.d.mts": true,
|
|
7067
7072
|
"scripts/lib/reusable-workflow-contract.mjs": true,
|
|
7073
|
+
"scripts/lib/upstream-manifest-staleness.mjs": true,
|
|
7068
7074
|
"scripts/lisa-assert-eas-profile.mjs": true,
|
|
7069
7075
|
"scripts/lisa-commit-and-pr-local.sh": true,
|
|
7076
|
+
"scripts/lisa-commit-msg-gates.mjs": true,
|
|
7070
7077
|
"scripts/lisa-enforcement-fallback.sh": true,
|
|
7071
7078
|
"scripts/lisa-github-environments.sh": true,
|
|
7072
7079
|
"scripts/lisa-github-repo-settings.sh": true,
|
|
@@ -7896,6 +7903,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7896
7903
|
"tests/unit/hooks/block-shell-json-parsing.test.ts": true,
|
|
7897
7904
|
"tests/unit/hooks/blocking-hook-exit.test.ts": true,
|
|
7898
7905
|
"tests/unit/hooks/cleanup-stale-worktrees.test.ts": true,
|
|
7906
|
+
"tests/unit/hooks/commit-msg-gate-families.test.ts": true,
|
|
7899
7907
|
"tests/unit/hooks/commit-msg.test.ts": true,
|
|
7900
7908
|
"tests/unit/hooks/enforce-config-extensions.test.ts": true,
|
|
7901
7909
|
"tests/unit/hooks/enforce-team-first.test.ts": true,
|
|
@@ -8083,6 +8091,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
8083
8091
|
"tests/unit/scripts/threshold-ratchet-wiring.test.ts": true,
|
|
8084
8092
|
"tests/unit/scripts/threshold-ratchet.test.ts": true,
|
|
8085
8093
|
"tests/unit/scripts/upstream-evidence-manifest.test.ts": true,
|
|
8094
|
+
"tests/unit/scripts/upstream-manifest-staleness.test.ts": true,
|
|
8086
8095
|
"tests/unit/scripts/vacuous-required-checks.test.ts": true,
|
|
8087
8096
|
"tests/unit/scripts/verification-coverage.test.ts": true,
|
|
8088
8097
|
"tests/unit/scripts/work-item-backlink-exactness.test.ts": true,
|