@sigmashake/ssg 0.11.0 → 0.12.1
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 +14 -0
- package/package.json +17 -2
package/README.md
CHANGED
|
@@ -80,10 +80,24 @@ CLI → Engine (Parser/Evaluate/DB) → Decision
|
|
|
80
80
|
| `ssg push` | Push local `.rules` files to edge API |
|
|
81
81
|
| `ssg init` | Initialize `.sigmashake/` directory |
|
|
82
82
|
| `ssg lint` | Validate `.rules` file syntax |
|
|
83
|
+
| `ssg format` | Format `.rules` files (normalize + split oversized rules) |
|
|
84
|
+
| `ssg new` | Scaffold a new `.rules` file |
|
|
85
|
+
| `ssg man` | Print `.rules` DSL syntax reference |
|
|
83
86
|
| `ssg list` | Show all loaded rules |
|
|
84
87
|
| `ssg status` | Check setup and dashboard health |
|
|
88
|
+
| `ssg setup` | Interactive setup wizard (re-runnable) |
|
|
85
89
|
| `ssg test-rule` | Test rule matching with `--explain` trace |
|
|
86
90
|
| `ssg metrics` | Show session metrics (evals, blocked) |
|
|
91
|
+
| `ssg blocked` | Show blocked/forced commands from this session |
|
|
92
|
+
| `ssg usage` | Show eval usage, storage, and plan limits |
|
|
93
|
+
| `ssg dedupe` | Detect duplicate rules (exact/structural/semantic) |
|
|
94
|
+
| `ssg flight` | Flight recorder stats (latency, memory, CPU) |
|
|
95
|
+
| `ssg profile` | Eval latency profiling |
|
|
96
|
+
| `ssg daemon` | Persistent eval daemon (Unix socket, ~5ms eval) |
|
|
97
|
+
| `ssg install` | Install ssg binary to `~/.local/bin` |
|
|
98
|
+
| `ssg publish` | Publish local `.rules` to GitHub and hub |
|
|
99
|
+
| `ssg certify` | Run scenario files and produce certification report |
|
|
100
|
+
| `ssg insights` | Analyze conversation history for governance patterns |
|
|
87
101
|
|
|
88
102
|
## Rule Syntax
|
|
89
103
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigmashake/ssg",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.1",
|
|
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": {
|
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
"build:protected:all": "bash ../sigmashake-dist/scripts/build-protected.sh",
|
|
31
31
|
"pub:platforms": "bash ../sigmashake-dist/scripts/publish-platforms.sh",
|
|
32
32
|
"prepublishOnly": "bun run build:protected:all",
|
|
33
|
+
"build:client": "vite build",
|
|
34
|
+
"dev:client": "vite dev",
|
|
35
|
+
"typecheck:client": "tsc --noEmit -p tsconfig.client.json",
|
|
33
36
|
"test": "bun test",
|
|
34
37
|
"lint": "bun run src/cli.ts lint",
|
|
35
38
|
"gts-lint": "gts lint",
|
|
@@ -81,18 +84,30 @@
|
|
|
81
84
|
"access": "public"
|
|
82
85
|
},
|
|
83
86
|
"devDependencies": {
|
|
87
|
+
"@tailwindcss/vite": "4.2.2",
|
|
84
88
|
"@types/node": "25.5.2",
|
|
89
|
+
"@types/react": "19.2.14",
|
|
90
|
+
"@types/react-dom": "19.2.3",
|
|
91
|
+
"@vitejs/plugin-react": "6.0.1",
|
|
85
92
|
"bun-types": "1.3.11",
|
|
93
|
+
"class-variance-authority": "0.7.1",
|
|
94
|
+
"clsx": "2.1.1",
|
|
86
95
|
"eslint": "10.1.0",
|
|
87
96
|
"eslint-config-prettier": "10.1.8",
|
|
88
97
|
"eslint-plugin-node": "11.1.0",
|
|
89
98
|
"eslint-plugin-prettier": "5.5.5",
|
|
90
99
|
"gts": "7.0.0",
|
|
100
|
+
"lucide-react": "0.577.0",
|
|
91
101
|
"prettier": "3.8.1",
|
|
102
|
+
"react": "19.2.4",
|
|
103
|
+
"react-dom": "19.2.4",
|
|
104
|
+
"tailwind-merge": "3.5.0",
|
|
105
|
+
"tailwindcss": "4.2.2",
|
|
92
106
|
"terser": "^5.46.1",
|
|
93
107
|
"typescript": "6.0.2",
|
|
94
108
|
"typescript-eslint": "8.58.0",
|
|
95
|
-
"urlpattern-polyfill": "10.1.0"
|
|
109
|
+
"urlpattern-polyfill": "10.1.0",
|
|
110
|
+
"vite": "8.0.1"
|
|
96
111
|
},
|
|
97
112
|
"dependencies": {}
|
|
98
113
|
}
|