@sigmashake/ssg 0.29.138 → 0.29.140

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 CHANGED
@@ -77,7 +77,7 @@ ssg --help
77
77
  | winget | `winget install SigmaShake.SSG` |
78
78
  | Docker (OS-agnostic) | `docker run --rm -i ghcr.io/sigmashakeinc/ssg:latest eval < call.json` |
79
79
 
80
- The Docker image at `ghcr.io/sigmashakeinc/ssg` is also the install path for musl distros (Alpine, Chimera) and hosts running glibc < 2.24. See the [Docker guide](https://docs.sigmashake.com/intro) for usage.
80
+ The Docker image at `ghcr.io/sigmashakeinc/ssg` is also the install path for musl distros (Alpine, Chimera) and hosts running glibc < 2.24. See the [Docker guide](https://docs.sigmashake.com/getting-started) for usage.
81
81
 
82
82
  ## Quick start
83
83
 
@@ -107,7 +107,7 @@ Full reference and guides at **[docs.sigmashake.com](https://docs.sigmashake.com
107
107
  | Get started | Integrate |
108
108
  |---|---|
109
109
  | 🚀 [Getting started](https://docs.sigmashake.com/getting-started) | 🔌 [MCP server](https://docs.sigmashake.com/mcp) |
110
- | ⚡ [Intro](https://docs.sigmashake.com/intro) | 🤖 [Claude Code](https://docs.sigmashake.com/claude-code-integration) |
110
+ | ⚡ [Intro](https://docs.sigmashake.com/) | 🤖 [Claude Code](https://docs.sigmashake.com/claude-code-integration) |
111
111
  | 📺 [Dashboard](https://docs.sigmashake.com/dashboard) | 🧩 [Every adapter](https://docs.sigmashake.com/adapters) |
112
112
 
113
113
  | Author rules | Operate |
package/bin/ssg.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,170 +1,179 @@
1
- {
2
- "name": "@sigmashake/ssg",
3
- "version": "0.29.138",
4
- "description": "AI Agent Governance CLI — evaluate tool calls against rules, block dangerous operations, and surface blocked commands",
5
- "license": "SEE LICENSE IN LICENSE",
6
- "type": "module",
7
- "bin": {
8
- "ssg": "bin/ssg.cjs"
9
- },
10
- "files": [
11
- "bin/",
12
- "public/",
13
- "LICENSE",
14
- "README.md",
15
- "sbom.cdx.json"
16
- ],
17
- "optionalDependencies": {
18
- "@sigmashake/ssg-linux-x64": "0.29.136",
19
- "@sigmashake/ssg-linux-arm64": "0.29.136",
20
- "@sigmashake/ssg-darwin-arm64": "0.29.138",
21
- "@sigmashake/ssg-darwin-x64": "0.29.138",
22
- "@sigmashake/ssg-win32-x64": "0.29.137"
23
- },
24
- "scripts": {
25
- "postinstall": "node ./bin/cleanup-globals.cjs",
26
- "dev": "bun run scripts/dev.ts",
27
- "dev:server-only": "SSQA_ATTACH=${SSQA_ATTACH:-1} bun --watch src/serve-dev.ts",
28
- "dev:debug": "bun --inspect src/serve-dev.ts",
29
- "dev:debug-daemon": "bun --inspect src/cli.ts daemon",
30
- "build": "bun run build:client && bun build --compile src/cli.ts --outfile ssg",
31
- "build:linux": "bun build --compile --target=bun-linux-x64 src/cli.ts --outfile dist/ssg-linux-x64 && bun run scripts/stage-public-to-dist.ts",
32
- "build:macos-arm64": "bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile dist/ssg-darwin-arm64 && bun run scripts/stage-public-to-dist.ts",
33
- "build:macos-x64": "bun build --compile --target=bun-darwin-x64 src/cli.ts --outfile dist/ssg-darwin-x64 && bun run scripts/stage-public-to-dist.ts",
34
- "build:macos-universal": "bun run build:macos-arm64 && bun run build:macos-x64 && lipo -create dist/ssg-darwin-arm64 dist/ssg-darwin-x64 -output dist/ssg-darwin-universal && file dist/ssg-darwin-universal",
35
- "build:windows": "bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/ssg-win32-x64.exe && bun run scripts/stage-public-to-dist.ts",
36
- "build:windows-hookw": "bun build --compile --windows-hide-console --target=bun-windows-x64 src/cli.ts --outfile dist/ssg-hookw-win32-x64.exe && bun run scripts/patch-pe-subsystem.ts dist/ssg-hookw-win32-x64.exe && bun run scripts/assert-windowshide-effective.ts && bun run scripts/stage-public-to-dist.ts",
37
- "build:linux-arm64": "bun build --compile --target=bun-linux-arm64 src/cli.ts --outfile dist/ssg-linux-arm64 && bun run scripts/stage-public-to-dist.ts",
38
- "build:all": "bun run build:linux && bun run build:linux-arm64 && bun run build:macos-arm64 && bun run build:macos-x64 && bun run build:windows && bun run build:windows-hookw",
39
- "build:protected:all": "bash ../sigmashake-dist/scripts/build-protected.sh",
40
- "pub:platforms": "bash ../sigmashake-dist/scripts/publish-platforms.sh",
41
- "prepublishOnly": "bash ../sigmashake-dist/scripts/prepublish-guard.sh",
42
- "build:client": "tsc --noEmit -p tsconfig.client.json && vite build",
43
- "dev:client": "vite dev",
44
- "typecheck:client": "tsc --noEmit -p tsconfig.client.json",
45
- "release-check": "bun run scripts/release-check.ts",
46
- "ui-smoke": "bun run scripts/ui-smoke.ts",
47
- "check-version-drift": "bun run scripts/check-version-drift.ts",
48
- "typecheck-ratchet": "bun run scripts/typecheck-ratchet.ts",
49
- "test": "bun run scripts/test-isolated.ts",
50
- "test:bun": "bun test",
51
- "test:changed": "bun test --changed",
52
- "test:linux": "bun test test/linux",
53
- "test:mac": "bun test test/mac",
54
- "test:windows": "bun test test/windows",
55
- "test:unit": "bun test test/engine.test.ts test/parser.test.ts test/parser-fuzz.test.ts test/evaluate_operators.test.ts test/rule.test.ts test/html.test.ts test/sanitize.test.ts test/mutex.test.ts test/rwlock.test.ts test/safe-fetch.test.ts",
56
- "test:integration": "bun test test/eval-integration.test.ts test/integration.test.ts test/notifications-integration.test.ts",
57
- "test:component": "bun test test/daemon.test.ts test/server.test.ts test/server-stability.test.ts",
58
- "test:e2e": "SSG_E2E=1 bun test test/dashboard-e2e.test.ts",
59
- "test:api": "bun test test/handlers.test.ts test/server.test.ts test/json-license-endpoint.test.ts",
60
- "test:stress": "bun test test/daemon-stress.test.ts test/serve-stress.test.ts test/stress",
61
- "test:load": "bun test test/load",
62
- "test:spike": "bun test test/spike",
63
- "test:soak": "bun test test/soak",
64
- "test:scalability": "bun test test/scalability",
65
- "test:config": "bun test test/config.test.ts test/hook-config.test.ts test/workspace-settings.test.ts",
66
- "lint:sec": "bun run sast:check",
67
- "audit": "bun audit --prod",
68
- "test:e2e:agents": "bun run scripts/e2e-agents.ts",
69
- "test:e2e:session-record": "bun run scripts/record-agent-session.ts",
70
- "lint": "bun run src/cli.ts lint",
71
- "sast:check": "npx gts check src/shared/auth.ts src/shared/validate.ts src/shared/sanitize.ts src/shared/html.ts src/shared/platform.ts src/shared/daemon-metrics.ts src/engine/config.ts src/engine/evaluate.ts src/engine/parser.ts src/engine/db.ts src/engine/native.ts src/engine/adapter.ts src/engine/cost-ledger.ts src/server/store.ts src/server/router.ts src/server/handlers/core.ts src/commands/hook.ts",
72
- "gts-lint": "gts lint",
73
- "gts-fix": "gts fix",
74
- "compile": "tsc",
75
- "clean": "gts clean",
76
- "build:demo-recorder": "bun build --compile tools/demo-recorder/index.ts --outfile tools/demo-recorder/demo-recorder",
77
- "build:docs": "bun build --compile tools/docs/index.ts --outfile tools/docs/docs",
78
- "build:lsp": "bun build --compile tools/lsp/index.ts --outfile tools/lsp/ssg-lsp",
79
- "build:oracle": "bun build --compile tools/oracle/index.ts --outfile tools/oracle/oracle",
80
- "build:tools": "bun run build:demo-recorder && bun run build:docs && bun run build:lsp && bun run build:oracle",
81
- "ai-native:latency": "bun run tools/ai-native-latency.ts",
82
- "demo:record": "bun run tools/demo-recorder/index.ts --all",
83
- "demo:single": "bun run tools/demo-recorder/index.ts --ruleset",
84
- "demo:list": "bun run tools/demo-recorder/index.ts --list",
85
- "demo:dry-run": "bun run tools/demo-recorder/index.ts --all --dry-run",
86
- "demo:guided": "bash tools/demo-recorder/guided-demo.sh",
87
- "demo:guided:record": "bun run tools/demo-recorder/index.ts --all --guided",
88
- "demo:generate": "bun run tools/demo-recorder/cast-generator.ts --all",
89
- "demo:generate:single": "bun run tools/demo-recorder/cast-generator.ts --ruleset",
90
- "demo:generate:cast-only": "bun run tools/demo-recorder/cast-generator.ts --all --cast-only",
91
- "demo:generate:list": "bun run tools/demo-recorder/cast-generator.ts --list",
92
- "demo:generate:dry-run": "bun run tools/demo-recorder/cast-generator.ts --all --dry-run",
93
- "bench": "bun test ./test/bench.perf.ts --timeout=120000",
94
- "bench:regression": "bun test ./test/bench-regression.perf.ts --timeout=300000",
95
- "bench:scaling": "bun test ./test/bench-scaling.perf.ts --timeout=180000",
96
- "bench:honest": "bun test ./test/native-coverage.perf.ts --timeout=180000",
97
- "build:rust": "cd native/rust && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo build --release",
98
- "test:rust": "cd native/rust && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo test",
99
- "build:rust-audit": "cd native/rust-audit && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo build --release",
100
- "test:rust-audit": "cd native/rust-audit && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo test",
101
- "build:native": "bun run build:rust && cd native && bash ../../sigmashake-dist/scripts/power-gated.sh zig build -Doptimize=ReleaseFast",
102
- "build:native:linux-x64": "bash ../sigmashake-dist/scripts/build-native-target.sh linux-x64",
103
- "build:native:linux-arm64": "bash ../sigmashake-dist/scripts/build-native-target.sh linux-arm64",
104
- "build:native:darwin-arm64": "bash ../sigmashake-dist/scripts/build-native-target.sh darwin-arm64",
105
- "build:native:darwin-x64": "bash ../sigmashake-dist/scripts/build-native-target.sh darwin-x64",
106
- "build:native:windows": "bash ../sigmashake-dist/scripts/build-native-target.sh win32-x64",
107
- "build:native:all": "bash ../sigmashake-dist/scripts/build-native-all.sh",
108
- "build:native:audit:linux-x64": "cd native && mkdir -p zig-out/lib/linux-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-unknown-linux-gnu && cd .. && cp rust-audit/target/x86_64-unknown-linux-gnu/release/ssg-audit-server zig-out/lib/linux-x64/",
109
- "build:native:audit:linux-arm64": "cd native && mkdir -p zig-out/lib/linux-arm64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target aarch64-unknown-linux-gnu && cd .. && cp rust-audit/target/aarch64-unknown-linux-gnu/release/ssg-audit-server zig-out/lib/linux-arm64/",
110
- "build:native:audit:darwin-arm64": "cd native && mkdir -p zig-out/lib/darwin-arm64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target aarch64-apple-darwin && cd .. && cp rust-audit/target/aarch64-apple-darwin/release/ssg-audit-server zig-out/lib/darwin-arm64/",
111
- "build:native:audit:darwin-x64": "cd native && mkdir -p zig-out/lib/darwin-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-apple-darwin && cd .. && cp rust-audit/target/x86_64-apple-darwin/release/ssg-audit-server zig-out/lib/darwin-x64/",
112
- "build:native:audit:windows": "cd native && mkdir -p zig-out/lib/win32-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-pc-windows-gnu && cd .. && cp rust-audit/target/x86_64-pc-windows-gnu/release/ssg-audit-server.exe zig-out/lib/win32-x64/",
113
- "build:native:audit:all": "bun run build:native:audit:linux-x64 && bun run build:native:audit:linux-arm64 && bun run build:native:audit:darwin-arm64 && bun run build:native:audit:darwin-x64 && bun run build:native:audit:windows",
114
- "check:rust-audit:linux-x64": "cd native/rust-audit && cargo check --target x86_64-unknown-linux-gnu",
115
- "check:rust-audit:linux-arm64": "cd native/rust-audit && cargo check --target aarch64-unknown-linux-gnu",
116
- "check:rust-audit:darwin-arm64": "cd native/rust-audit && cargo check --target aarch64-apple-darwin",
117
- "check:rust-audit:darwin-x64": "cd native/rust-audit && cargo check --target x86_64-apple-darwin",
118
- "check:rust-audit:windows": "cd native/rust-audit && cargo zigbuild --target x86_64-pc-windows-gnu",
119
- "check:rust-audit:all": "bun run check:rust-audit:linux-x64 && bun run check:rust-audit:linux-arm64 && bun run check:rust-audit:darwin-arm64 && bun run check:rust-audit:darwin-x64 && bun run check:rust-audit:windows",
120
- "test:regression": "bun test test/regression",
121
- "test:configuration": "bun test test/configuration",
122
- "typecheck": "bun run typecheck:client && bun run compile"
123
- },
124
- "keywords": [
125
- "ai",
126
- "governance",
127
- "agent",
128
- "safety",
129
- "rules",
130
- "cli"
131
- ],
132
- "repository": {
133
- "type": "git",
134
- "url": "git+https://github.com/sigmashakeinc/ssg.git"
135
- },
136
- "publishConfig": {
137
- "access": "public"
138
- },
139
- "engines": {
140
- "bun": ">=1.3.11"
141
- },
142
- "devDependencies": {
143
- "@sigmashake/ssqa": "file:../sigmashake-ssqa",
144
- "@tailwindcss/vite": "4.2.2",
145
- "@types/node": "25.5.2",
146
- "@types/react": "19.2.14",
147
- "@types/react-dom": "19.2.3",
148
- "@vitejs/plugin-react": "6.0.1",
149
- "bun-types": "1.3.11",
150
- "eslint": "10.1.0",
151
- "eslint-config-prettier": "10.1.8",
152
- "eslint-plugin-node": "11.1.0",
153
- "eslint-plugin-prettier": "5.5.5",
154
- "gts": "7.0.0",
155
- "javascript-obfuscator": "4.1.1",
156
- "prettier": "3.8.1",
157
- "react": "19.2.4",
158
- "react-dom": "19.2.4",
159
- "tailwindcss": "4.2.2",
160
- "terser": "5.46.1",
161
- "typescript": "6.0.2",
162
- "typescript-eslint": "8.58.0",
163
- "urlpattern-polyfill": "10.1.0",
164
- "vite": "^8.0.13"
165
- },
166
- "overrides": {
167
- "tmp": "^0.2.4",
168
- "brace-expansion": "^5.0.6"
169
- }
170
- }
1
+ {
2
+ "name": "@sigmashake/ssg",
3
+ "version": "0.29.140",
4
+ "description": "AI Agent Governance CLI — evaluate tool calls against rules, block dangerous operations, and surface blocked commands",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "bin": {
8
+ "ssg": "bin/ssg.cjs"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "public/",
13
+ "LICENSE",
14
+ "README.md",
15
+ "sbom.cdx.json"
16
+ ],
17
+ "optionalDependencies": {
18
+ "@sigmashake/ssg-linux-x64": "0.29.140",
19
+ "@sigmashake/ssg-linux-arm64": "0.29.140",
20
+ "@sigmashake/ssg-darwin-arm64": "0.29.140",
21
+ "@sigmashake/ssg-darwin-x64": "0.29.140",
22
+ "@sigmashake/ssg-win32-x64": "0.29.140"
23
+ },
24
+ "scripts": {
25
+ "postinstall": "node ./bin/cleanup-globals.cjs",
26
+ "dev": "bun run scripts/dev.ts",
27
+ "dev:server-only": "SSQA_ATTACH=${SSQA_ATTACH:-1} bun --watch src/serve-dev.ts",
28
+ "dev:debug": "bun --inspect src/serve-dev.ts",
29
+ "dev:debug-daemon": "bun --inspect src/cli.ts daemon",
30
+ "build": "bun run build:client && bun build --compile src/cli.ts --outfile ssg",
31
+ "build:linux": "bun build --compile --target=bun-linux-x64 src/cli.ts --outfile dist/ssg-linux-x64 && bun run scripts/stage-public-to-dist.ts",
32
+ "build:macos-arm64": "bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile dist/ssg-darwin-arm64 && bun run scripts/stage-public-to-dist.ts",
33
+ "build:macos-x64": "bun build --compile --target=bun-darwin-x64 src/cli.ts --outfile dist/ssg-darwin-x64 && bun run scripts/stage-public-to-dist.ts",
34
+ "build:macos-universal": "bun run build:macos-arm64 && bun run build:macos-x64 && lipo -create dist/ssg-darwin-arm64 dist/ssg-darwin-x64 -output dist/ssg-darwin-universal && file dist/ssg-darwin-universal",
35
+ "build:windows": "bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/ssg-win32-x64.exe && bun run scripts/stage-public-to-dist.ts",
36
+ "build:windows-hookw": "bun build --compile --windows-hide-console --target=bun-windows-x64 src/cli.ts --outfile dist/ssg-hookw-win32-x64.exe && bun run scripts/patch-pe-subsystem.ts dist/ssg-hookw-win32-x64.exe && bun run scripts/assert-windowshide-effective.ts && bun run scripts/stage-public-to-dist.ts",
37
+ "build:linux-arm64": "bun build --compile --target=bun-linux-arm64 src/cli.ts --outfile dist/ssg-linux-arm64 && bun run scripts/stage-public-to-dist.ts",
38
+ "build:all": "bun run build:linux && bun run build:linux-arm64 && bun run build:macos-arm64 && bun run build:macos-x64 && bun run build:windows && bun run build:windows-hookw",
39
+ "build:protected:all": "bash ../sigmashake-dist/scripts/build-protected.sh",
40
+ "pub:platforms": "bash ../sigmashake-dist/scripts/publish-platforms.sh",
41
+ "prepublishOnly": "bash ../sigmashake-dist/scripts/prepublish-guard.sh",
42
+ "build:client": "tsc --noEmit -p tsconfig.client.json && vite build",
43
+ "dev:client": "vite dev",
44
+ "typecheck:client": "tsc --noEmit -p tsconfig.client.json",
45
+ "release-check": "bun run scripts/release-check.ts",
46
+ "ui-smoke": "bun run scripts/ui-smoke.ts",
47
+ "check-version-drift": "bun run scripts/check-version-drift.ts",
48
+ "typecheck-ratchet": "bun run scripts/typecheck-ratchet.ts",
49
+ "test": "bun run scripts/test-isolated.ts",
50
+ "test:bun": "bun test",
51
+ "test:changed": "bun test --changed",
52
+ "test:linux": "bun test test/linux",
53
+ "test:mac": "bun test test/mac",
54
+ "test:windows": "bun test test/windows",
55
+ "coverage": "bun test test/*.test.ts test/commands/*.test.ts test/api/*.test.ts test/component/*.test.ts test/integration/*.test.ts test/configuration/*.test.ts test/conformance/*.test.ts test/regression/*.test.ts test/mac/*.test.ts --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage",
56
+ "coverage:batch": "bun run scripts/coverage-batch.ts",
57
+ "coverage:mac": "bun run scripts/coverage-mac.ts --min=80",
58
+ "test:unit": "bun test test/engine.test.ts test/parser.test.ts test/parser-fuzz.test.ts test/evaluate_operators.test.ts test/rule.test.ts test/html.test.ts test/sanitize.test.ts test/mutex.test.ts test/rwlock.test.ts test/safe-fetch.test.ts",
59
+ "test:integration": "bun test test/eval-integration.test.ts test/integration.test.ts test/notifications-integration.test.ts",
60
+ "test:component": "bun test test/daemon.test.ts test/server.test.ts test/server-stability.test.ts",
61
+ "test:e2e": "SSG_E2E=1 bun test test/dashboard-e2e.test.ts",
62
+ "test:api": "bun test test/handlers.test.ts test/server.test.ts test/json-license-endpoint.test.ts",
63
+ "test:stress": "bun test test/daemon-stress.test.ts test/serve-stress.test.ts test/stress",
64
+ "test:load": "bun test test/load",
65
+ "test:spike": "bun test test/spike",
66
+ "test:soak": "bun test test/soak",
67
+ "test:scalability": "bun test test/scalability",
68
+ "test:config": "bun test test/config.test.ts test/hook-config.test.ts test/workspace-settings.test.ts",
69
+ "lint:sec": "bun run sast:check",
70
+ "audit": "bun audit --prod",
71
+ "test:e2e:agents": "bun run scripts/e2e-agents.ts",
72
+ "test:e2e:session-record": "bun run scripts/record-agent-session.ts",
73
+ "lint": "bun run src/cli.ts lint",
74
+ "sast:check": "npx gts check src/shared/auth.ts src/shared/validate.ts src/shared/sanitize.ts src/shared/html.ts src/shared/platform.ts src/shared/daemon-metrics.ts src/engine/config.ts src/engine/evaluate.ts src/engine/parser.ts src/engine/db.ts src/engine/native.ts src/engine/adapter.ts src/engine/cost-ledger.ts src/server/store.ts src/server/router.ts src/server/handlers/core.ts src/commands/hook.ts",
75
+ "gts-lint": "gts lint",
76
+ "gts-fix": "gts fix",
77
+ "compile": "tsc",
78
+ "clean": "gts clean",
79
+ "build:demo-recorder": "bun build --compile tools/demo-recorder/index.ts --outfile tools/demo-recorder/demo-recorder",
80
+ "build:docs": "bun build --compile tools/docs/index.ts --outfile tools/docs/docs",
81
+ "build:lsp": "bun build --compile tools/lsp/index.ts --outfile tools/lsp/ssg-lsp",
82
+ "build:oracle": "bun build --compile tools/oracle/index.ts --outfile tools/oracle/oracle",
83
+ "build:tools": "bun run build:demo-recorder && bun run build:docs && bun run build:lsp && bun run build:oracle",
84
+ "ai-native:latency": "bun run tools/ai-native-latency.ts",
85
+ "demo:record": "bun run tools/demo-recorder/index.ts --all",
86
+ "demo:single": "bun run tools/demo-recorder/index.ts --ruleset",
87
+ "demo:list": "bun run tools/demo-recorder/index.ts --list",
88
+ "demo:dry-run": "bun run tools/demo-recorder/index.ts --all --dry-run",
89
+ "demo:guided": "bash tools/demo-recorder/guided-demo.sh",
90
+ "demo:guided:record": "bun run tools/demo-recorder/index.ts --all --guided",
91
+ "demo:generate": "bun run tools/demo-recorder/cast-generator.ts --all",
92
+ "demo:generate:single": "bun run tools/demo-recorder/cast-generator.ts --ruleset",
93
+ "demo:generate:cast-only": "bun run tools/demo-recorder/cast-generator.ts --all --cast-only",
94
+ "demo:generate:list": "bun run tools/demo-recorder/cast-generator.ts --list",
95
+ "demo:generate:dry-run": "bun run tools/demo-recorder/cast-generator.ts --all --dry-run",
96
+ "bench": "bun test ./test/bench.perf.ts --timeout=120000",
97
+ "bench:regression": "bun test ./test/bench-regression.perf.ts --timeout=300000",
98
+ "bench:scaling": "bun test ./test/bench-scaling.perf.ts --timeout=180000",
99
+ "bench:honest": "bun test ./test/native-coverage.perf.ts --timeout=180000",
100
+ "build:rust": "cd native/rust && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo build --release",
101
+ "test:rust": "cd native/rust && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo test",
102
+ "build:rust-audit": "cd native/rust-audit && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo build --release",
103
+ "test:rust-audit": "cd native/rust-audit && bash ../../../sigmashake-dist/scripts/power-gated.sh cargo test",
104
+ "build:native": "bun run build:rust && cd native && bash ../../sigmashake-dist/scripts/power-gated.sh zig build -Doptimize=ReleaseFast",
105
+ "test:native:hook": "cd native && bash ../../sigmashake-dist/scripts/power-gated.sh zig build hook-test",
106
+ "build:native:linux-x64": "bash ../sigmashake-dist/scripts/build-native-target.sh linux-x64",
107
+ "build:native:linux-arm64": "bash ../sigmashake-dist/scripts/build-native-target.sh linux-arm64",
108
+ "build:native:darwin-arm64": "bash ../sigmashake-dist/scripts/build-native-target.sh darwin-arm64",
109
+ "build:native:darwin-x64": "bash ../sigmashake-dist/scripts/build-native-target.sh darwin-x64",
110
+ "build:native:windows": "bash ../sigmashake-dist/scripts/build-native-target.sh win32-x64",
111
+ "build:native:all": "bash ../sigmashake-dist/scripts/build-native-all.sh",
112
+ "build:native:audit:linux-x64": "cd native && mkdir -p zig-out/lib/linux-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-unknown-linux-gnu && cd .. && cp rust-audit/target/x86_64-unknown-linux-gnu/release/ssg-audit-server zig-out/lib/linux-x64/",
113
+ "build:native:audit:linux-arm64": "cd native && mkdir -p zig-out/lib/linux-arm64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target aarch64-unknown-linux-gnu && cd .. && cp rust-audit/target/aarch64-unknown-linux-gnu/release/ssg-audit-server zig-out/lib/linux-arm64/",
114
+ "build:native:audit:darwin-arm64": "cd native && mkdir -p zig-out/lib/darwin-arm64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target aarch64-apple-darwin && cd .. && cp rust-audit/target/aarch64-apple-darwin/release/ssg-audit-server zig-out/lib/darwin-arm64/",
115
+ "build:native:audit:darwin-x64": "cd native && mkdir -p zig-out/lib/darwin-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-apple-darwin && cd .. && cp rust-audit/target/x86_64-apple-darwin/release/ssg-audit-server zig-out/lib/darwin-x64/",
116
+ "build:native:audit:windows": "cd native && mkdir -p zig-out/lib/win32-x64 && cd rust-audit && cargo zigbuild --release --bin ssg-audit-server --target x86_64-pc-windows-gnu && cd .. && cp rust-audit/target/x86_64-pc-windows-gnu/release/ssg-audit-server.exe zig-out/lib/win32-x64/",
117
+ "build:native:audit:all": "bun run build:native:audit:linux-x64 && bun run build:native:audit:linux-arm64 && bun run build:native:audit:darwin-arm64 && bun run build:native:audit:darwin-x64 && bun run build:native:audit:windows",
118
+ "check:rust-audit:linux-x64": "cd native/rust-audit && cargo check --target x86_64-unknown-linux-gnu",
119
+ "check:rust-audit:linux-arm64": "cd native/rust-audit && cargo check --target aarch64-unknown-linux-gnu",
120
+ "check:rust-audit:darwin-arm64": "cd native/rust-audit && cargo check --target aarch64-apple-darwin",
121
+ "check:rust-audit:darwin-x64": "cd native/rust-audit && cargo check --target x86_64-apple-darwin",
122
+ "check:rust-audit:windows": "cd native/rust-audit && cargo zigbuild --target x86_64-pc-windows-gnu",
123
+ "check:rust-audit:all": "bun run check:rust-audit:linux-x64 && bun run check:rust-audit:linux-arm64 && bun run check:rust-audit:darwin-arm64 && bun run check:rust-audit:darwin-x64 && bun run check:rust-audit:windows",
124
+ "test:regression": "bun test test/regression",
125
+ "test:configuration": "bun test test/configuration",
126
+ "typecheck": "bun run typecheck:client && bun run compile",
127
+ "test:chaos": "bun test test/chaos/",
128
+ "test:failover": "bun test test/failover/",
129
+ "test:dr": "bun test test/dr/",
130
+ "test:dast": "bun test test/dast/",
131
+ "test:pen": "bun test test/pen/"
132
+ },
133
+ "keywords": [
134
+ "ai",
135
+ "governance",
136
+ "agent",
137
+ "safety",
138
+ "rules",
139
+ "cli"
140
+ ],
141
+ "repository": {
142
+ "type": "git",
143
+ "url": "git+https://github.com/sigmashakeinc/ssg.git"
144
+ },
145
+ "publishConfig": {
146
+ "access": "public"
147
+ },
148
+ "engines": {
149
+ "bun": ">=1.3.11"
150
+ },
151
+ "devDependencies": {
152
+ "@sigmashake/ssqa": "file:../sigmashake-ssqa",
153
+ "@tailwindcss/vite": "4.2.2",
154
+ "@types/node": "25.5.2",
155
+ "@types/react": "19.2.14",
156
+ "@types/react-dom": "19.2.3",
157
+ "@vitejs/plugin-react": "6.0.1",
158
+ "bun-types": "1.3.11",
159
+ "eslint": "10.1.0",
160
+ "eslint-config-prettier": "10.1.8",
161
+ "eslint-plugin-node": "11.1.0",
162
+ "eslint-plugin-prettier": "5.5.5",
163
+ "gts": "7.0.0",
164
+ "javascript-obfuscator": "4.1.1",
165
+ "prettier": "3.8.1",
166
+ "react": "19.2.4",
167
+ "react-dom": "19.2.4",
168
+ "tailwindcss": "4.2.2",
169
+ "terser": "5.46.1",
170
+ "typescript": "6.0.2",
171
+ "typescript-eslint": "8.58.0",
172
+ "urlpattern-polyfill": "10.1.0",
173
+ "vite": "^8.0.13"
174
+ },
175
+ "overrides": {
176
+ "tmp": "^0.2.4",
177
+ "brace-expansion": "^5.0.6"
178
+ }
179
+ }