@sigmashake/ssg 0.9.1 → 0.10.0

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 (1) hide show
  1. package/package.json +18 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigmashake/ssg",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "description": "AI Agent Governance CLI — evaluate tool calls against rules, block dangerous operations, and surface blocked commands",
5
5
  "type": "module",
6
6
  "bin": {
@@ -46,7 +46,23 @@
46
46
  "demo:list": "bun run tools/demo-recorder/index.ts --list",
47
47
  "demo:dry-run": "bun run tools/demo-recorder/index.ts --all --dry-run",
48
48
  "demo:guided": "bash tools/demo-recorder/guided-demo.sh",
49
- "demo:guided:record": "bun run tools/demo-recorder/index.ts --all --guided"
49
+ "demo:guided:record": "bun run tools/demo-recorder/index.ts --all --guided",
50
+ "demo:generate": "bun run tools/demo-recorder/cast-generator.ts --all",
51
+ "demo:generate:single": "bun run tools/demo-recorder/cast-generator.ts --ruleset",
52
+ "demo:generate:cast-only": "bun run tools/demo-recorder/cast-generator.ts --all --cast-only",
53
+ "demo:generate:list": "bun run tools/demo-recorder/cast-generator.ts --list",
54
+ "demo:generate:dry-run": "bun run tools/demo-recorder/cast-generator.ts --all --dry-run",
55
+ "bench": "bun test test/bench.perf.ts --timeout=120000",
56
+ "bench:regression": "bun test test/bench-regression.perf.ts --timeout=120000",
57
+ "build:rust": "cd native/rust && cargo build --release",
58
+ "test:rust": "cd native/rust && cargo test",
59
+ "build:native": "bun run build:rust && cd native && zig build -Doptimize=ReleaseFast",
60
+ "build:native:linux-x64": "cd native/rust && cargo build --release --target x86_64-unknown-linux-gnu && cd .. && zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu",
61
+ "build:native:linux-arm64": "cd native/rust && cargo build --release --target aarch64-unknown-linux-gnu && cd .. && zig build -Doptimize=ReleaseFast -Dtarget=aarch64-linux-gnu",
62
+ "build:native:darwin-arm64": "cd native/rust && cargo build --release --target aarch64-apple-darwin && cd .. && zig build -Doptimize=ReleaseFast -Dtarget=aarch64-macos",
63
+ "build:native:darwin-x64": "cd native/rust && cargo build --release --target x86_64-apple-darwin && cd .. && zig build -Doptimize=ReleaseFast -Dtarget=x86_64-macos",
64
+ "build:native:windows": "cd native/rust && cargo build --release --target x86_64-pc-windows-gnu && cd .. && zig build -Doptimize=ReleaseFast -Dtarget=x86_64-windows-gnu",
65
+ "build:native:all": "bun run build:native:linux-x64 && bun run build:native:linux-arm64 && bun run build:native:darwin-arm64 && bun run build:native:darwin-x64 && bun run build:native:windows"
50
66
  },
51
67
  "keywords": [
52
68
  "ai",