@darkelogix/openclaw-trusted-mode 1.0.2 → 1.0.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/CHANGELOG.md CHANGED
@@ -12,6 +12,9 @@ Terminology and acronyms: [`GLOSSARY.md`](./GLOSSARY.md).
12
12
  ## Unreleased
13
13
  - Add gateway/environment fields to the published Trusted Mode Check PDP requests so live Guard Pro runtime validation works against quota-aware runtime bundles.
14
14
 
15
+ ## v1.0.3
16
+ - Include the signed attestation pack files in the public npm package so Trusted Mode Check can verify local attestation out of the box.
17
+
15
18
  ## v1.0.2
16
19
  - Publish the gateway/environment-aware Trusted Mode Check flow so governed runtime validation uses the same tenant, gateway, and environment context as the customer runtime.
17
20
 
@@ -0,0 +1,21 @@
1
+ {
2
+ "pack_id": "trusted_mode_attest",
3
+ "pack_version": "v1.0.0",
4
+ "schema_version": "2026-03-01",
5
+ "issued_at": "2026-03-01T00:00:00Z",
6
+ "checks": [
7
+ "attestation_pack_signature",
8
+ "deny_high_impact",
9
+ "allow_low_impact",
10
+ "signature_failure"
11
+ ],
12
+ "output_contract": {
13
+ "status_values": ["ENFORCED_OK", "LOCKDOWN_ONLY", "UNSAFE"],
14
+ "axis_scores": [
15
+ "interception_proof",
16
+ "fail_safe_posture",
17
+ "integrity",
18
+ "certified_compatibility"
19
+ ]
20
+ }
21
+ }
@@ -0,0 +1 @@
1
+ sha256:6d58bfc4a02e6efeb0607864951deeb03a5d71bd4790c1d3aea9524e71456e08
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darkelogix/openclaw-trusted-mode",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MIT-licensed OpenClaw Trusted Mode plugin with standalone hardening and optional SDE-backed governance",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -50,7 +50,9 @@
50
50
  "START_HERE.md",
51
51
  "GLOSSARY.md",
52
52
  "SELF_SERVICE_FAQ.md",
53
- "CHANGELOG.md"
53
+ "CHANGELOG.md",
54
+ "attestation/trusted_mode_attest_v1.json",
55
+ "attestation/trusted_mode_attest_v1.sig"
54
56
  ],
55
57
  "scripts": {
56
58
  "build": "tsc",