@decionis/agent-safe-pipeline 0.1.2 → 0.1.3-rc.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 +8 -2
  2. package/package.json +3 -1
package/README.md CHANGED
@@ -4,10 +4,16 @@ TypeScript reference implementation of Agent-Safe Pipeline: capture an immutable
4
4
 
5
5
  ## Install
6
6
 
7
- The package is versioned `0.1.2` but is not claimed as published until a registry release succeeds. Consume it from the workspace today:
7
+ Install the latest stable release:
8
8
 
9
9
  ```bash
10
- pnpm install --frozen-lockfile
10
+ npm install @decionis/agent-safe-pipeline
11
+ ```
12
+
13
+ To evaluate this prerelease explicitly:
14
+
15
+ ```bash
16
+ npm install @decionis/agent-safe-pipeline@0.1.3-rc.2
11
17
  ```
12
18
 
13
19
  Production credentials belong in the trusted executor process, never the agent runtime:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decionis/agent-safe-pipeline",
3
- "version": "0.1.2",
3
+ "version": "0.1.3-rc.2",
4
4
  "description": "An execution architecture where AI agents may propose actions but cannot authorize their own execution.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Decionis, Inc.",
@@ -41,6 +41,7 @@
41
41
  "@stryker-mutator/core": "10.0.0",
42
42
  "@stryker-mutator/vitest-runner": "10.0.0",
43
43
  "@vitest/coverage-v8": "^4.1.10",
44
+ "fast-check": "4.9.0",
44
45
  "vitest": "^4.1.10"
45
46
  },
46
47
  "publishConfig": {
@@ -50,6 +51,7 @@
50
51
  "scripts": {
51
52
  "build": "node ../../scripts/CleanBuildOutput.mjs && tsc -p tsconfig.build.json",
52
53
  "test": "vitest run --coverage",
54
+ "test:fuzz": "vitest run test/fuzz",
53
55
  "test:mutation": "stryker run",
54
56
  "test:performance": "vitest run test/performance",
55
57
  "typecheck": "tsc -p tsconfig.json --noEmit"