@sigmashake/ssg 0.29.82 → 0.29.84
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 +2 -2
- package/package.json +19 -4
- package/public/assets/app.css +1 -1
- package/public/assets/app.js +40 -18
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ Pull curated rulesets from [`hub.sigmashake.com`](https://hub.sigmashake.com)
|
|
|
63
63
|
## Install
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
|
|
66
|
+
pnpm add -g @sigmashake/ssg
|
|
67
67
|
ssg --help
|
|
68
68
|
```
|
|
69
69
|
|
|
@@ -71,7 +71,7 @@ ssg --help
|
|
|
71
71
|
|
|
72
72
|
| Channel | Install |
|
|
73
73
|
|---------|---------|
|
|
74
|
-
| npm | `
|
|
74
|
+
| npm | `pnpm add -g @sigmashake/ssg` |
|
|
75
75
|
| PyPI | `pip install sigmashake` |
|
|
76
76
|
| Homebrew | `brew install sigmashakeinc/tap/ssg` |
|
|
77
77
|
| winget | `winget install SigmaShake.SSG` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigmashake/ssg",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.84",
|
|
4
4
|
"description": "AI Agent Governance CLI — evaluate tool calls against rules, block dangerous operations, and surface blocked commands",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@sigmashake/ssg-linux-x64": "0.29.
|
|
18
|
-
"@sigmashake/ssg-linux-arm64": "0.29.
|
|
17
|
+
"@sigmashake/ssg-linux-x64": "0.29.84",
|
|
18
|
+
"@sigmashake/ssg-linux-arm64": "0.29.84",
|
|
19
19
|
"@sigmashake/ssg-darwin-arm64": "0.29.82",
|
|
20
20
|
"@sigmashake/ssg-darwin-x64": "0.29.82",
|
|
21
21
|
"@sigmashake/ssg-win32-x64": "0.29.81"
|
|
@@ -42,7 +42,19 @@
|
|
|
42
42
|
"dev:client": "vite dev",
|
|
43
43
|
"typecheck:client": "tsc --noEmit -p tsconfig.client.json",
|
|
44
44
|
"test": "bun test",
|
|
45
|
+
"test:unit": "bun test test/engine.test.ts test/parser.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",
|
|
46
|
+
"test:integration": "bun test test/eval-integration.test.ts test/integration.test.ts test/notifications-integration.test.ts",
|
|
47
|
+
"test:component": "bun test test/daemon.test.ts test/server.test.ts test/server-stability.test.ts",
|
|
45
48
|
"test:e2e": "SSG_E2E=1 bun test test/dashboard-e2e.test.ts",
|
|
49
|
+
"test:api": "bun test test/handlers.test.ts test/server.test.ts test/json-license-endpoint.test.ts",
|
|
50
|
+
"test:stress": "bun test test/daemon-stress.test.ts test/serve-stress.test.ts test/stress",
|
|
51
|
+
"test:load": "bun test test/load",
|
|
52
|
+
"test:spike": "bun test test/spike",
|
|
53
|
+
"test:soak": "bun test test/soak",
|
|
54
|
+
"test:scalability": "bun test test/scalability",
|
|
55
|
+
"test:config": "bun test test/config.test.ts test/hook-config.test.ts test/workspace-settings.test.ts",
|
|
56
|
+
"lint:sec": "bun run sast:check",
|
|
57
|
+
"audit": "bun audit",
|
|
46
58
|
"test:e2e:agents": "bun run scripts/e2e-agents.ts",
|
|
47
59
|
"test:e2e:session-record": "bun run scripts/record-agent-session.ts",
|
|
48
60
|
"lint": "bun run src/cli.ts lint",
|
|
@@ -70,6 +82,7 @@
|
|
|
70
82
|
"bench": "bun test ./test/bench.perf.ts --timeout=120000",
|
|
71
83
|
"bench:regression": "bun test ./test/bench-regression.perf.ts --timeout=300000",
|
|
72
84
|
"bench:scaling": "bun test ./test/bench-scaling.perf.ts --timeout=180000",
|
|
85
|
+
"bench:honest": "bun test ./test/native-coverage.perf.ts --timeout=180000",
|
|
73
86
|
"build:rust": "cd native/rust && cargo build --release",
|
|
74
87
|
"test:rust": "cd native/rust && cargo test",
|
|
75
88
|
"build:rust-audit": "cd native/rust-audit && cargo build --release",
|
|
@@ -92,7 +105,9 @@
|
|
|
92
105
|
"check:rust-audit:darwin-arm64": "cd native/rust-audit && cargo check --target aarch64-apple-darwin",
|
|
93
106
|
"check:rust-audit:darwin-x64": "cd native/rust-audit && cargo check --target x86_64-apple-darwin",
|
|
94
107
|
"check:rust-audit:windows": "cd native/rust-audit && cargo zigbuild --target x86_64-pc-windows-gnu",
|
|
95
|
-
"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"
|
|
108
|
+
"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",
|
|
109
|
+
"test:regression": "bun test test/regression",
|
|
110
|
+
"test:configuration": "bun test test/configuration"
|
|
96
111
|
},
|
|
97
112
|
"keywords": [
|
|
98
113
|
"ai",
|