@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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aka",
3
- "version": "0.9.0",
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 ensures Node is available and installs the
689
- global CLI from the public npm registry). Run the line for their OS:
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/cli-latest/tools/installer/install.sh | sh
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/cli-latest/tools/installer/install.ps1 | iex
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 stable release **tag** (`cli-latest`), never `main` —
700
- each release points that tag at its published `cli-v*` version, and the bootstrap
701
- scripts it fetches hold the installer's pinned ref + checksum, so fetching them
702
- from a mutable branch would defeat the integrity gate. To pin an exact version
703
- instead, set `AKA_INSTALL_REF=cli-v<version>` before running the line. Until the
704
- first release is published the one-liner 404s (fail-closed).
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.0",
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/schema": "0.8.0",
35
- "@akasecurity/plugin-runtime": "0.8.0"
34
+ "@akasecurity/plugin-sdk": "0.8.0",
35
+ "@akasecurity/schema": "0.8.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup",