@akasecurity/ai-tc-claude-code 0.8.2 → 0.9.0
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/README.md +11 -3
- package/commands/setup.md +563 -151
- package/package.json +5 -5
- package/scripts/apply-suppressions.js +821 -115
- package/scripts/backfill.js +364 -91
- package/scripts/filescan.js +341 -76
- package/scripts/firstrun.js +476 -107
- package/scripts/intro.js +328 -137
- package/scripts/onboard.js +406 -83
- package/scripts/package.json +1 -0
- package/scripts/post-tool-use.js +344 -77
- package/scripts/pre-tool-use.js +342 -76
- package/scripts/query.js +332 -66
- package/scripts/reconcile.js +329 -69
- package/scripts/remediate.js +26695 -0
- package/scripts/session-start.js +329 -69
- package/scripts/start-light.js +17542 -0
- package/scripts/statusline.js +334 -66
- package/scripts/stop.js +234 -51
- package/scripts/triage-rubric.md +10 -2
- package/scripts/user-prompt-submit.js +345 -79
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aka",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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
|
[](https://www.npmjs.com/package/@akasecurity/ai-tc-claude-code)
|
|
4
4
|
[](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
|
|
18
|
+
/plugin install ai-tc@akasecurity
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
Or let the `aka` CLI
|
|
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
|
-
|
|
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
|
|