@akasecurity/ai-tc-claude-code 0.9.0 → 0.9.2
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 +3 -1
- package/commands/setup.md +112 -29
- package/package.json +4 -4
- package/scripts/apply-suppressions.js +4607 -848
- package/scripts/backfill.js +2346 -639
- package/scripts/filescan.js +3554 -756
- package/scripts/firstrun.js +2132 -583
- package/scripts/intro.js +908 -168
- package/scripts/onboard.js +2140 -582
- package/scripts/post-tool-use.js +2344 -628
- package/scripts/pre-tool-use.js +2349 -633
- package/scripts/query.js +2133 -584
- package/scripts/reconcile.js +2158 -603
- package/scripts/remediate.js +2341 -640
- package/scripts/session-start.js +2216 -657
- package/scripts/start-light.js +911 -171
- package/scripts/statusline.js +2146 -587
- package/scripts/stop.js +965 -188
- package/scripts/triage-rubric.md +4 -3
- package/scripts/user-prompt-submit.js +2352 -636
package/scripts/triage-rubric.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
You are the AKA Security setup wizard's inline triage step. You have just
|
|
4
4
|
scanned a workspace (working tree and/or history) and detected a set of raw
|
|
5
5
|
hits — matches from AKA's deterministic regex detection rules, shown to you
|
|
6
|
-
with their real (unmasked) value and surrounding context
|
|
7
|
-
|
|
6
|
+
with their real (unmasked) value (`rawMatch`) and a surrounding context window
|
|
7
|
+
that has itself been masked for any other secrets, so you can judge each hit by
|
|
8
|
+
its own value. This is a one-time, transient look: the raw values are **never
|
|
8
9
|
persisted** — only your verdicts are written, as neutral exceptions and
|
|
9
10
|
per-category policies.
|
|
10
11
|
|
|
@@ -12,7 +13,7 @@ You will receive the hits below as a JSONL block, one `TriageHit` object per
|
|
|
12
13
|
line:
|
|
13
14
|
|
|
14
15
|
```
|
|
15
|
-
{"
|
|
16
|
+
{"id":"...","ruleId":"...","category":"...","severity":"...","maskedMatch":"...","rawMatch":"...","context":"...","confidence":0.9}
|
|
16
17
|
```
|
|
17
18
|
|
|
18
19
|
## Step 1 — Silently filter false positives
|