@research-engineering/agentic-proofkit 0.1.153 → 0.1.155

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/NON_CLAIMS.md CHANGED
@@ -7,7 +7,8 @@ This repository state does not claim:
7
7
 
8
8
  - runtime implementation readiness;
9
9
  - package publication readiness;
10
- - public-source provenance for a package version unless that version's release
10
+ - public-source provenance for a package version unless that version was
11
+ released from an intentionally public source repository and its release
11
12
  assets, registry identity, and checksum manifests are artifact-closed;
12
13
  - source-code completeness;
13
14
  - production readiness;
@@ -76,7 +76,7 @@ Route ambiguous modernization work through the smallest matching family:
76
76
  | Does a `REQ-*` have a route to execution? | `requirement-bindings` or `proof-slice` | Proof bindings own route closure, while tests own executable behavior. |
77
77
  | Tests were discovered from an existing repository but are not yet admitted proof evidence. | `test-evidence-inventory --projection discovery-draft` | It accepts explicit caller-owned discovery facts and emits candidate-only inventory guidance with a non-strict candidate authority. Stop before treating candidates as semantic coverage; the consumer must materialize strict test inventory rows. |
78
78
  | Which checks should run for a change? | `selective-gate-plan` then `selective-gate-evidence` | Planning and receipt comparison stay separate from command execution. |
79
- | Does the selective plan need a text or secret scan? | Prefer `scanObligation` with `commandOwnership: "proofkit_text_policy"` for `text-policy`, `commandOwnership: "proofkit_secret_scan"` for `secret-scan`, or `commandOwnership: "caller_owned_external"` for an external scanner; legacy `secretScan` is a compatibility alias only. | Stop before treating any inventory command as repository-wide discovery. Proofkit admits scan obligations but does not execute scanner commands or prove repository-wide credential absence. |
79
+ | Does the selective plan need a text or secret scan? | Use `scanObligation` with `commandOwnership: "proofkit_text_policy"` for `text-policy`, `commandOwnership: "proofkit_secret_scan"` for `secret-scan`, or `commandOwnership: "caller_owned_external"` for an external scanner. | Stop before treating any inventory command as repository-wide discovery. Proofkit admits scan obligations but does not execute scanner commands or prove repository-wide credential absence. `secret-scan` suppressions must match exact finding class, path, and line; stale suppressions fail closed. |
80
80
 
81
81
  ## Agent Decision Procedure
82
82
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@research-engineering/agentic-proofkit",
3
3
  "description": "Reusable proof profile, report, graph, and witness-planning primitives.",
4
- "version": "0.1.153",
4
+ "version": "0.1.155",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "sideEffects": false,
@@ -569,7 +569,21 @@
569
569
  "allowedFlags": [
570
570
  "--input",
571
571
  "--input-pointer"
572
- ]
572
+ ],
573
+ "inputContract": {
574
+ "contractId": "proofkit.migration-parity-admission.input.v1",
575
+ "schemaVersion": 1,
576
+ "authority": "caller-owned migration parity evidence",
577
+ "requiredFields": [
578
+ "nonClaims",
579
+ "parityRecords",
580
+ "paritySetId",
581
+ "schemaVersion",
582
+ "sourceProofOwners",
583
+ "targetProofkitRefs"
584
+ ],
585
+ "nonClaim": "Migration parity admission does not approve old-owner deletion, execute native witnesses, authenticate evidence, or prove semantic equivalence."
586
+ }
573
587
  },
574
588
  {
575
589
  "command": "migration-plan",
@@ -583,7 +597,24 @@
583
597
  "allowedFlags": [
584
598
  "--input",
585
599
  "--input-pointer"
586
- ]
600
+ ],
601
+ "inputContract": {
602
+ "contractId": "proofkit.migration-plan.input.v1",
603
+ "schemaVersion": 1,
604
+ "authority": "caller-owned migration retirement planning facts",
605
+ "requiredFields": [
606
+ "followUpCommands",
607
+ "migrationId",
608
+ "nonClaims",
609
+ "parityEvidenceRefs",
610
+ "retainedOwners",
611
+ "retirementCandidates",
612
+ "schemaVersion",
613
+ "sourceProofOwners",
614
+ "targetProofkitRefs"
615
+ ],
616
+ "nonClaim": "Migration plans route caller-owned review work only and do not edit files, delete old owners, approve merge, or prove proof freshness."
617
+ }
587
618
  },
588
619
  {
589
620
  "command": "obligation-decision",
@@ -613,7 +644,35 @@
613
644
  "allowedFlags": [
614
645
  "--input",
615
646
  "--input-pointer"
616
- ]
647
+ ],
648
+ "inputContract": {
649
+ "contractId": "proofkit.package-runtime-dependency-admission.input.v1",
650
+ "schemaVersion": 1,
651
+ "authority": "caller-owned runtime dependency resolution and lockfile identity facts",
652
+ "requiredFields": [
653
+ "admissibleLocations",
654
+ "expectedDependencySpec",
655
+ "expectedLockfileIntegrity",
656
+ "expectedPackageName",
657
+ "expectedPackageVersion",
658
+ "nonClaims",
659
+ "packageResolution",
660
+ "reportId",
661
+ "schemaVersion"
662
+ ],
663
+ "packageResolutionRequiredFields": [
664
+ "dependencySpec",
665
+ "lockfileEntryPresent",
666
+ "lockfileIntegrity",
667
+ "packageName",
668
+ "packageRoot",
669
+ "packageVersion",
670
+ "realPackageRoot",
671
+ "resolvedEntryPoint"
672
+ ],
673
+ "lockfileIntegrity": "npm-style sha256, sha384, or sha512 integrity string admitted from caller-owned lockfile facts",
674
+ "nonClaim": "The command does not read lockfiles, resolve packages, authenticate registry access, execute witnesses, or prove proof freshness."
675
+ }
617
676
  },
618
677
  {
619
678
  "command": "pilot-admission",
@@ -1344,6 +1403,21 @@
1344
1403
  "missing files must not include contentBase64"
1345
1404
  ]
1346
1405
  },
1406
+ "suppressionRecord": {
1407
+ "optional": true,
1408
+ "requiredFields": [
1409
+ "findingClass",
1410
+ "line",
1411
+ "path",
1412
+ "reason",
1413
+ "suppressionId"
1414
+ ],
1415
+ "rules": [
1416
+ "suppressions match exact findingClass, path, and line",
1417
+ "unused suppressions fail closed",
1418
+ "suppression reason is report-visible caller text and is admitted through secret-like text rejection"
1419
+ ]
1420
+ },
1347
1421
  "nonClaim": "Secret scan does not discover repository files or replace provider secret scanning."
1348
1422
  },
1349
1423
  "outputContract": {
@@ -1355,6 +1429,10 @@
1355
1429
  "line",
1356
1430
  "path"
1357
1431
  ],
1432
+ "suppressionFields": [
1433
+ "suppressedFindings",
1434
+ "unusedSuppressions"
1435
+ ],
1358
1436
  "redactionRule": "matched secret-like values are never emitted to stdout reports",
1359
1437
  "nonClaim": "Findings are pattern detections, not credential validity proof."
1360
1438
  }
@@ -1428,7 +1506,11 @@
1428
1506
  "text_policy",
1429
1507
  "external_secret_scan"
1430
1508
  ],
1431
- "legacyAlias": "secretScan",
1509
+ "relationRules": [
1510
+ "proofkit_text_policy requires commandId text-policy and reason text_policy",
1511
+ "proofkit_secret_scan requires commandId secret-scan and reason secret_scan",
1512
+ "caller_owned_external requires reason external_secret_scan and must not use Proofkit-owned command ids text-policy or secret-scan"
1513
+ ],
1432
1514
  "nonClaim": "Selective gate planning admits scan obligations but does not execute scanner commands or prove repository-wide credential absence."
1433
1515
  }
1434
1516
  }