tamperward 1.4.2 → 1.4.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/README.md +4 -3
- package/dist/cli/index.js +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,8 @@ lowering coverage gates, rewriting snapshots, editing CI, or bypassing hooks wit
|
|
|
19
19
|
`--no-verify`. Tamperward treats the safety nets themselves as protected assets and
|
|
20
20
|
blocks the **class** of bypass — one ruleset, evaluated on the actual diff and commands
|
|
21
21
|
as a verdict, not a probability, enforced everywhere a change can be made: **inside the
|
|
22
|
-
agent's loop
|
|
22
|
+
agent's loop (a deny before the tool runs, and a sweep at end of turn), at the commit,
|
|
23
|
+
and at the merge.**
|
|
23
24
|
|
|
24
25
|
> Apache-2.0 · zero runtime model calls · every headline claim below is measured, with
|
|
25
26
|
> the pre-registered predictions (including the refuted ones) committed to this repo
|
|
@@ -30,8 +31,8 @@ agent's loop, at the commit, and at the merge.**
|
|
|
30
31
|
npx tamperward init
|
|
31
32
|
```
|
|
32
33
|
|
|
33
|
-
One idempotent command wires
|
|
34
|
-
you wrote, and `--dry-run` shows the plan first:
|
|
34
|
+
One idempotent command wires the policy and every enforcement point — it never
|
|
35
|
+
overwrites anything you wrote, and `--dry-run` shows the plan first:
|
|
35
36
|
|
|
36
37
|
| point | what it wires |
|
|
37
38
|
| --- | --- |
|
package/dist/cli/index.js
CHANGED
|
@@ -2313,9 +2313,10 @@ Formats:
|
|
|
2313
2313
|
tamperward hook claude PreToolUse gate (reads hook JSON on stdin)
|
|
2314
2314
|
tamperward sweep claude Stop sweep (re-scan the turn's working tree)
|
|
2315
2315
|
tamperward allow <rule> --reason "..." record a human sign-off (local audit ledger)
|
|
2316
|
-
tamperward init [--dry-run] wire
|
|
2317
|
-
|
|
2318
|
-
Idempotent; never
|
|
2316
|
+
tamperward init [--dry-run] wire the policy file plus every
|
|
2317
|
+
enforcement point: Claude Code hooks,
|
|
2318
|
+
pre-commit, CI. Idempotent; never
|
|
2319
|
+
overwrites your files.
|
|
2319
2320
|
|
|
2320
2321
|
Exit code: check \u2192 1 if any blocking finding. hook/sweep \u2192 always 0; a deny is
|
|
2321
2322
|
emitted as JSON on stdout (exit 2 makes Claude Code ignore the JSON).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tamperward",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "The deterministic agent-integrity gate. One ruleset, evaluated on the actual diff/commands as a verdict, enforced everywhere a change can be made.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "hexrift",
|