@trigguard/protocol 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +7 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,10 @@
1
- # `@trigguard/protocol`
1
+ # TrigGuard Protocol
2
2
 
3
- The TrigGuard protocol defines the **contract for deterministic authorization decisions** between AI systems and execution surfaces: vocabulary (`PERMIT`, `DENY`, `SILENCE`), enforcement semantics, and the `DecisionRecord` shape used across aligned products and tooling.
3
+ [![npm version](https://img.shields.io/npm/v/@trigguard/protocol)](https://www.npmjs.com/package/@trigguard/protocol)
4
4
 
5
- **This package is governance and types only** not runtime evaluation, policy engines, or business logic. Those live elsewhere in the monorepo and **conform** to this contract.
5
+ Canonical protocol definitions for TrigGuard governance decisions: vocabulary (`PERMIT`, `DENY`, `SILENCE`), enforcement semantics, and the `DecisionRecord` shape used across products and tooling.
6
+
7
+ **Package name:** `@trigguard/protocol` — types and contract snapshots; runtime evaluation and policy engines live in other packages and services. Integrations **conform** to this contract.
6
8
 
7
9
  ## Install
8
10
 
@@ -10,9 +12,9 @@ The TrigGuard protocol defines the **contract for deterministic authorization de
10
12
  npm install @trigguard/protocol
11
13
  ```
12
14
 
13
- *(Requires the package to be published to the npm registry under the `@trigguard` scope; see `docs/release/PROTOCOL_RELEASE.md`.)*
15
+ Published on the public registry under the `@trigguard` scope. For release process, see `docs/release/PROTOCOL_RELEASE.md` in the monorepo.
14
16
 
15
- Until publish is configured, depend on the repo:
17
+ **Develop inside the repo** (no registry), use a path or workspace:
16
18
 
17
19
  ```json
18
20
  "@trigguard/protocol": "file:../packages/protocol"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trigguard/protocol",
3
- "version": "0.1.1",
4
- "description": "Canonical TrigGuard protocol types and contract snapshots (governance layer, not business logic).",
3
+ "version": "0.1.2",
4
+ "description": "Shared TypeScript types and JSON contract snapshots for TrigGuard authorization decisions and records.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {