@akasecurity/ai-tc-claude-code 0.8.2 → 0.9.0-rc1

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.8.2",
3
+ "version": "0.9.0-rc1",
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/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
  [![npm](https://img.shields.io/npm/v/@akasecurity/ai-tc-claude-code?style=flat-square&labelColor=232F3E&color=00E0B8)](https://www.npmjs.com/package/@akasecurity/ai-tc-claude-code)
4
4
  [![Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-232F3E?style=flat-square)](https://github.com/akasecurity/ai-tc/blob/main/LICENSE)
5
5
 
6
+ **AKA Security — We secure agent harnesses at the source.**
7
+
6
8
  The Claude Code plugin for **[AI Traffic Control](https://github.com/akasecurity/ai-tc)** (`ai-tc`). It hooks into a Claude Code session and inspects its traffic — prompts, tool calls, tool results, file reads — scanning each event against your rule packs and applying inline **warn / redact / block** policies. Every event is recorded to a local SQLite store at `~/.aka/data/aka.db`.
7
9
 
8
10
  Detection runs entirely on your machine. There's no account and no backend — nothing leaves your computer to be scanned.
@@ -13,17 +15,23 @@ This package is distributed through the **Claude Code plugin marketplace**, not
13
15
 
14
16
  ```text
15
17
  /plugin marketplace add akasecurity/marketplace
16
- /plugin install aka@akasecurity
18
+ /plugin install ai-tc@akasecurity
17
19
  ```
18
20
 
19
- Or let the `aka` CLI do it for you:
21
+ Or let the `aka` CLI install the plugin for you:
20
22
 
21
23
  ```bash
22
24
  npm install -g @akasecurity/cli
23
25
  aka plugins install claude-code
24
26
  ```
25
27
 
26
- Then run `aka init` to scaffold the local store, and `aka dashboard` to view findings.
28
+ Either way, finish onboarding by running `/aka:setup` from inside Claude Code:
29
+
30
+ ```text
31
+ /aka:setup
32
+ ```
33
+
34
+ If you installed via the CLI, `aka init` scaffolds the local store and `aka dashboard` views findings.
27
35
 
28
36
  ## What it registers
29
37