@akasecurity/ai-tc-claude-code 0.9.0 → 0.9.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/.claude-plugin/plugin.json +1 -1
- package/commands/setup.md +11 -10
- package/package.json +4 -4
- package/scripts/apply-suppressions.js +1235 -181
- package/scripts/backfill.js +1385 -174
- package/scripts/filescan.js +2641 -333
- package/scripts/firstrun.js +1241 -174
- package/scripts/intro.js +820 -147
- package/scripts/onboard.js +1224 -170
- package/scripts/post-tool-use.js +1405 -179
- package/scripts/pre-tool-use.js +1405 -179
- package/scripts/query.js +1242 -175
- package/scripts/reconcile.js +1238 -171
- package/scripts/remediate.js +1390 -179
- package/scripts/session-start.js +1263 -186
- package/scripts/start-light.js +823 -150
- package/scripts/statusline.js +1255 -178
- package/scripts/stop.js +837 -154
- package/scripts/user-prompt-submit.js +1405 -179
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aka",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "AI Traffic Control — inspect and govern AI prompts in Claude Code. Detection runs locally; events are recorded to a local SQLite store on your machine.",
|
|
5
5
|
"homepage": "https://github.com/akasecurity/ai-tc",
|
|
6
6
|
"author": { "name": "AKA Security" }
|
package/commands/setup.md
CHANGED
|
@@ -685,23 +685,24 @@ interface + terminal dashboard and on-demand scans."
|
|
|
685
685
|
- **Not now** — "skip — you can add it anytime with the one-liner below"
|
|
686
686
|
|
|
687
687
|
**Yes, add it** is the install authorization — run the bootstrap installer
|
|
688
|
-
directly, with no second picker (it
|
|
689
|
-
|
|
688
|
+
directly, with no second picker (it downloads the self-contained `aka` binary for
|
|
689
|
+
their platform — no Node.js or npm required — and links it onto PATH). Run the
|
|
690
|
+
line for their OS:
|
|
690
691
|
|
|
691
692
|
```bash
|
|
692
693
|
# macOS / Linux
|
|
693
|
-
curl -fsSL https://raw.githubusercontent.com/akasecurity/ai-tc/
|
|
694
|
+
curl -fsSL https://raw.githubusercontent.com/akasecurity/ai-tc/bin-latest/tools/installer/install.sh | sh
|
|
694
695
|
|
|
695
696
|
# Windows (PowerShell)
|
|
696
|
-
irm https://raw.githubusercontent.com/akasecurity/ai-tc/
|
|
697
|
+
irm https://raw.githubusercontent.com/akasecurity/ai-tc/bin-latest/tools/installer/install.ps1 | iex
|
|
697
698
|
```
|
|
698
699
|
|
|
699
|
-
The one-liner pins to the
|
|
700
|
-
each release
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
instead, set `AKA_INSTALL_REF=
|
|
704
|
-
|
|
700
|
+
The one-liner pins to the latest published binary release **tag** (`bin-latest`),
|
|
701
|
+
never `main` — each binary release (`bin-v*`) moves that tag to its commit, and
|
|
702
|
+
the installer verifies the downloaded binary against the release's `SHA256SUMS`
|
|
703
|
+
(fail-closed), so a corrupted or tampered download is refused. To pin an exact
|
|
704
|
+
version instead, set `AKA_INSTALL_REF=bin-v<version>` before running the line. If
|
|
705
|
+
no `bin-v*` release exists yet the one-liner fails closed rather than guessing.
|
|
705
706
|
|
|
706
707
|
After it completes, point them at `aka init` then `aka dashboard`. If they chose
|
|
707
708
|
**Not now**, show the one-liner once so they can add it later, and move on —
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akasecurity/ai-tc-claude-code",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "AI Traffic Control — inspect and govern AI prompts in Claude Code",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"vitest": "^4.1.10",
|
|
29
29
|
"zod": "^4.0.0",
|
|
30
30
|
"@akasecurity/eslint-config": "0.8.0",
|
|
31
|
-
"@akasecurity/plugin-sdk": "0.8.0",
|
|
32
31
|
"@akasecurity/persistence": "0.8.0",
|
|
32
|
+
"@akasecurity/plugin-runtime": "0.8.0",
|
|
33
33
|
"@akasecurity/scanner": "0.8.0",
|
|
34
|
-
"@akasecurity/
|
|
35
|
-
"@akasecurity/
|
|
34
|
+
"@akasecurity/plugin-sdk": "0.8.0",
|
|
35
|
+
"@akasecurity/schema": "0.8.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsup",
|