@am_shork/attest 0.2.1 → 0.3.0
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/CHANGELOG.md +655 -79
- package/README.md +132 -18
- package/dist/cli/index.js +91 -21
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/json.d.ts +52 -5
- package/dist/cli/json.d.ts.map +1 -1
- package/dist/cli/json.js +50 -2
- package/dist/cli/json.js.map +1 -1
- package/dist/cli/report.d.ts +28 -1
- package/dist/cli/report.d.ts.map +1 -1
- package/dist/cli/report.js +100 -1
- package/dist/cli/report.js.map +1 -1
- package/dist/core/apply.d.ts +8 -0
- package/dist/core/apply.d.ts.map +1 -1
- package/dist/core/apply.js +10 -0
- package/dist/core/apply.js.map +1 -1
- package/dist/core/gate.d.ts +36 -10
- package/dist/core/gate.d.ts.map +1 -1
- package/dist/core/gate.js +59 -12
- package/dist/core/gate.js.map +1 -1
- package/dist/core/loader.d.ts +8 -0
- package/dist/core/loader.d.ts.map +1 -1
- package/dist/core/loader.js +1 -0
- package/dist/core/loader.js.map +1 -1
- package/dist/core/locate.d.ts +4 -0
- package/dist/core/locate.d.ts.map +1 -1
- package/dist/core/locate.js +8 -3
- package/dist/core/locate.js.map +1 -1
- package/dist/core/paths.d.ts +15 -0
- package/dist/core/paths.d.ts.map +1 -0
- package/dist/core/paths.js +36 -0
- package/dist/core/paths.js.map +1 -0
- package/dist/core/pipeline.d.ts +63 -2
- package/dist/core/pipeline.d.ts.map +1 -1
- package/dist/core/pipeline.js +190 -34
- package/dist/core/pipeline.js.map +1 -1
- package/dist/core/red-record.d.ts +50 -0
- package/dist/core/red-record.d.ts.map +1 -0
- package/dist/core/red-record.js +148 -0
- package/dist/core/red-record.js.map +1 -0
- package/dist/core/render.d.ts +1 -1
- package/dist/core/render.d.ts.map +1 -1
- package/dist/core/render.js +16 -2
- package/dist/core/render.js.map +1 -1
- package/dist/core/runner.d.ts.map +1 -1
- package/dist/core/runner.js +16 -6
- package/dist/core/runner.js.map +1 -1
- package/dist/core/skill.d.ts +23 -0
- package/dist/core/skill.d.ts.map +1 -0
- package/dist/core/skill.js +276 -0
- package/dist/core/skill.js.map +1 -0
- package/dist/core/static-registry.d.ts +28 -0
- package/dist/core/static-registry.d.ts.map +1 -1
- package/dist/core/static-registry.js +86 -25
- package/dist/core/static-registry.js.map +1 -1
- package/dist/core/status.d.ts +39 -0
- package/dist/core/status.d.ts.map +1 -0
- package/dist/core/status.js +64 -0
- package/dist/core/status.js.map +1 -0
- package/dist/core/targets.d.ts +52 -0
- package/dist/core/targets.d.ts.map +1 -0
- package/dist/core/targets.js +141 -0
- package/dist/core/targets.js.map +1 -0
- package/dist/core/types.d.ts +13 -0
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js.map +1 -1
- package/dist/core/validator.d.ts +11 -0
- package/dist/core/validator.d.ts.map +1 -1
- package/dist/core/validator.js +28 -12
- package/dist/core/validator.js.map +1 -1
- package/dist/core/write.d.ts +2 -0
- package/dist/core/write.d.ts.map +1 -0
- package/dist/core/write.js +21 -0
- package/dist/core/write.js.map +1 -0
- package/dist/runtime.d.ts +9 -1
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +10 -2
- package/dist/runtime.js.map +1 -1
- package/package.json +1 -1
package/dist/core/validator.js
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
// Structural validation + anti-drift heuristic (design §5.3, §6).
|
|
2
2
|
// Graded reporting: ERROR / WARNING / INFO, each with file + line + fix hint.
|
|
3
|
+
/**
|
|
4
|
+
* Uncovered requirements: intent exists but no scenario attests it (design §5.3).
|
|
5
|
+
*
|
|
6
|
+
* Exported because `check` and `cover` both report this, and `cover` used to
|
|
7
|
+
* report it only as a `covered: false` row — so a `--json` consumer following
|
|
8
|
+
* the documented rule ("branch on `ok` / `issues[].code`") got a false verdict
|
|
9
|
+
* with an empty `issues` array from exactly one command. Two commands stating
|
|
10
|
+
* one fact in two shapes is the same clerical agreement `declaredNotRunIssues`
|
|
11
|
+
* was extracted to remove.
|
|
12
|
+
*/
|
|
13
|
+
export function uncoveredIssues(registry, plan) {
|
|
14
|
+
const coveredIds = new Set(plan.scenarios.map((s) => s.reqId));
|
|
15
|
+
const issues = [];
|
|
16
|
+
for (const id of Object.keys(registry)) {
|
|
17
|
+
if (!coveredIds.has(id)) {
|
|
18
|
+
issues.push({
|
|
19
|
+
level: 'ERROR',
|
|
20
|
+
code: 'uncovered-requirement',
|
|
21
|
+
reqId: id,
|
|
22
|
+
message: `Requirement "${id}" has no scenario attesting it. Add a scenario, or mark it deferred.`,
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return issues;
|
|
27
|
+
}
|
|
3
28
|
/**
|
|
4
29
|
* Static structural validation (design §5.3). Emits ERROR-level issues for:
|
|
5
30
|
* - orphan-test: a scenario covers an unknown requirement id
|
|
@@ -12,7 +37,6 @@
|
|
|
12
37
|
export function validateStructure(registry, plan) {
|
|
13
38
|
const issues = [];
|
|
14
39
|
const knownIds = new Set(Object.keys(registry));
|
|
15
|
-
const coveredIds = new Set(plan.scenarios.map((s) => s.reqId));
|
|
16
40
|
// orphan-test: covers a requirement that does not exist.
|
|
17
41
|
for (const s of plan.scenarios) {
|
|
18
42
|
if (!knownIds.has(s.reqId)) {
|
|
@@ -26,17 +50,9 @@ export function validateStructure(registry, plan) {
|
|
|
26
50
|
});
|
|
27
51
|
}
|
|
28
52
|
}
|
|
29
|
-
// uncovered-requirement: intent exists but no scenario attests it.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
issues.push({
|
|
33
|
-
level: 'ERROR',
|
|
34
|
-
code: 'uncovered-requirement',
|
|
35
|
-
reqId: id,
|
|
36
|
-
message: `Requirement "${id}" has no scenario attesting it. Add a scenario, or mark it deferred.`,
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
}
|
|
53
|
+
// uncovered-requirement: intent exists but no scenario attests it. Shared
|
|
54
|
+
// with `cover`, so the two commands cannot drift apart.
|
|
55
|
+
issues.push(...uncoveredIssues(registry, plan));
|
|
40
56
|
// unbound-param: statement uses {param} but params does not define it.
|
|
41
57
|
// `Object.hasOwn`, never `in`: `'toString' in {}` is true, so an `in` probe
|
|
42
58
|
// silently accepts placeholders no author declared — and render.ts would then
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/core/validator.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,8EAA8E;AAI9E
|
|
1
|
+
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/core/validator.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"write.d.ts","sourceRoot":"","sources":["../../src/core/write.ts"],"names":[],"mappings":"AAeA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAM9E"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Writing a file that will be committed.
|
|
2
|
+
//
|
|
3
|
+
// Every file Attest writes is one a user commits — a rendering, the skill, a
|
|
4
|
+
// change's first-run record. A plain write that is interrupted leaves a
|
|
5
|
+
// truncated file on disk, and the failure mode is that someone commits the
|
|
6
|
+
// wreckage before anything notices. `rename` within a directory is atomic, so
|
|
7
|
+
// the destination is either the whole old file or the whole new one.
|
|
8
|
+
//
|
|
9
|
+
// Shared rather than owned by one caller: `render --out` had this argument to
|
|
10
|
+
// itself (0.1.7), and it applies unchanged to anything else written to a path
|
|
11
|
+
// under version control.
|
|
12
|
+
import { writeFile, rename } from 'node:fs/promises';
|
|
13
|
+
import { dirname, join } from 'node:path';
|
|
14
|
+
export async function writeAtomic(dest, content) {
|
|
15
|
+
// Same directory as the destination, so the rename cannot cross a filesystem
|
|
16
|
+
// boundary and stop being atomic. The pid keeps two concurrent runs apart.
|
|
17
|
+
const tmp = join(dirname(dest), `.attest.${process.pid}.tmp`);
|
|
18
|
+
await writeFile(tmp, content, 'utf8');
|
|
19
|
+
await rename(tmp, dest);
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=write.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"write.js","sourceRoot":"","sources":["../../src/core/write.ts"],"names":[],"mappings":"AAAA,yCAAyC;AACzC,EAAE;AACF,6EAA6E;AAC7E,wEAAwE;AACxE,2EAA2E;AAC3E,8EAA8E;AAC9E,qEAAqE;AACrE,EAAE;AACF,8EAA8E;AAC9E,8EAA8E;AAC9E,yBAAyB;AAEzB,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAE1C,MAAM,CAAC,KAAK,UAAU,WAAW,CAAC,IAAY,EAAE,OAAe;IAC7D,6EAA6E;IAC7E,2EAA2E;IAC3E,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,WAAW,OAAO,CAAC,GAAG,MAAM,CAAC,CAAC;IAC9D,MAAM,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;IACtC,MAAM,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;AAC1B,CAAC"}
|
package/dist/runtime.d.ts
CHANGED
|
@@ -6,6 +6,14 @@ export declare function requirement(id: string, body: () => void): void;
|
|
|
6
6
|
/**
|
|
7
7
|
* Declare a single verifiable scenario. Must be nested inside requirement().
|
|
8
8
|
* The assertion itself is delegated to Vitest `it` (design §3).
|
|
9
|
+
*
|
|
10
|
+
* `timeoutMs` is passed straight through to `it`. It exists because `verify`
|
|
11
|
+
* runs the suite **isolated** (§5.4) — no `vitest.config.ts` unless
|
|
12
|
+
* `--vitest-config` names one — so Vitest's 5-second default is what every
|
|
13
|
+
* scenario gets, and a scenario that drives a subprocess, a container or a
|
|
14
|
+
* build had no way to say otherwise. The alternative, raising the default for
|
|
15
|
+
* everyone, would hide a genuinely hung test; the one after that, a config file
|
|
16
|
+
* for the whole suite, sets one number for what is a property of one scenario.
|
|
9
17
|
*/
|
|
10
|
-
export declare function scenario(name: string, fn: () => void | Promise<void
|
|
18
|
+
export declare function scenario(name: string, fn: () => void | Promise<void>, timeoutMs?: number): void;
|
|
11
19
|
//# sourceMappingURL=runtime.d.ts.map
|
package/dist/runtime.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAQA;;;GAGG;AACH,wBAAgB,WAAW,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,IAAI,GAAG,IAAI,CAU9D;AAED
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAQA;;;GAGG;AACH,wBAAgB,WAAW,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,IAAI,GAAG,IAAI,CAU9D;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EAC9B,SAAS,CAAC,EAAE,MAAM,GACjB,IAAI,CAKN"}
|
package/dist/runtime.js
CHANGED
|
@@ -22,11 +22,19 @@ export function requirement(id, body) {
|
|
|
22
22
|
/**
|
|
23
23
|
* Declare a single verifiable scenario. Must be nested inside requirement().
|
|
24
24
|
* The assertion itself is delegated to Vitest `it` (design §3).
|
|
25
|
+
*
|
|
26
|
+
* `timeoutMs` is passed straight through to `it`. It exists because `verify`
|
|
27
|
+
* runs the suite **isolated** (§5.4) — no `vitest.config.ts` unless
|
|
28
|
+
* `--vitest-config` names one — so Vitest's 5-second default is what every
|
|
29
|
+
* scenario gets, and a scenario that drives a subprocess, a container or a
|
|
30
|
+
* build had no way to say otherwise. The alternative, raising the default for
|
|
31
|
+
* everyone, would hide a genuinely hung test; the one after that, a config file
|
|
32
|
+
* for the whole suite, sets one number for what is a property of one scenario.
|
|
25
33
|
*/
|
|
26
|
-
export function scenario(name, fn) {
|
|
34
|
+
export function scenario(name, fn, timeoutMs) {
|
|
27
35
|
if (!currentReqId) {
|
|
28
36
|
throw new Error(`scenario("${name}") must be nested inside requirement(...)`);
|
|
29
37
|
}
|
|
30
|
-
it(name, fn);
|
|
38
|
+
it(name, fn, timeoutMs);
|
|
31
39
|
}
|
|
32
40
|
//# sourceMappingURL=runtime.js.map
|
package/dist/runtime.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,4EAA4E;AAC5E,iEAAiE;AAEjE,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAEtC,IAAI,YAAY,GAAkB,IAAI,CAAC;AAEvC;;;GAGG;AACH,MAAM,UAAU,WAAW,CAAC,EAAU,EAAE,IAAgB;IACtD,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE;QACvB,MAAM,IAAI,GAAG,YAAY,CAAC;QAC1B,YAAY,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC;YACH,IAAI,EAAE,CAAC;QACT,CAAC;gBAAS,CAAC;YACT,YAAY,GAAG,IAAI,CAAC;QACtB,CAAC;IACH,CAAC,CAAC,CAAC;AACL,CAAC;AAED
|
|
1
|
+
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,4EAA4E;AAC5E,iEAAiE;AAEjE,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAEtC,IAAI,YAAY,GAAkB,IAAI,CAAC;AAEvC;;;GAGG;AACH,MAAM,UAAU,WAAW,CAAC,EAAU,EAAE,IAAgB;IACtD,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE;QACvB,MAAM,IAAI,GAAG,YAAY,CAAC;QAC1B,YAAY,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC;YACH,IAAI,EAAE,CAAC;QACT,CAAC;gBAAS,CAAC;YACT,YAAY,GAAG,IAAI,CAAC;QACtB,CAAC;IACH,CAAC,CAAC,CAAC;AACL,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,QAAQ,CACtB,IAAY,EACZ,EAA8B,EAC9B,SAAkB;IAElB,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,MAAM,IAAI,KAAK,CAAC,aAAa,IAAI,2CAA2C,CAAC,CAAC;IAChF,CAAC;IACD,EAAE,CAAC,IAAI,EAAE,EAAE,EAAE,SAAS,CAAC,CAAC;AAC1B,CAAC"}
|
package/package.json
CHANGED