node9-ai 1.20.0 โ 1.20.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/README.md +9 -9
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<h1 align="center">๐ก๏ธ Node9</h1>
|
|
2
|
-
<p align="center"><strong>What did your AI agent actually do? Find out
|
|
2
|
+
<p align="center"><strong>What did your AI agent actually do? Find out.</strong></p>
|
|
3
3
|
<p align="center">
|
|
4
4
|
<a href="https://www.npmjs.com/package/node9-ai"><img src="https://img.shields.io/npm/v/node9-ai.svg" alt="npm version" /></a>
|
|
5
5
|
<a href="https://www.npmjs.com/package/node9-ai"><img src="https://img.shields.io/npm/dm/node9-ai.svg" alt="monthly downloads" /></a>
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
<a href="https://huggingface.co/spaces/Node9ai/node9-security-demo"><img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-sm.svg" alt="Try on HF Spaces" /></a>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
|
-
Node9 sits between your AI agent and the tools it can use โ recording every action,
|
|
11
|
+
Node9 sits between your AI agent and the tools it can use โ recording every action, intervening on risky ones, and showing you what happened both live and in retrospect.
|
|
12
12
|
|
|
13
13
|
Works with **Claude Code ยท Codex CLI ยท Gemini CLI ยท Cursor ยท Windsurf ยท any MCP server**.
|
|
14
14
|
|
|
15
15
|
## What Node9 does
|
|
16
16
|
|
|
17
|
-
-
|
|
17
|
+
- ๐ก **Review or block** risky commands before they run โ `rm -rf`, `git push --force`, `DROP TABLE`, credential reads, `curl | bash`
|
|
18
18
|
- ๐ **Scan** what your AI has already been doing โ loops, leaked secrets, blocked operations across every session
|
|
19
19
|
- ๐ **Catch credential leaks** โ AWS keys, GitHub tokens, JWTs, GCP API keys, PEM private keys flagged in tool args, file contents, and shell config
|
|
20
20
|
- ๐ญ **Map your blast radius** โ every SSH key, AWS credential, and `.env` file an AI agent on this machine could reach right now
|
|
@@ -22,7 +22,7 @@ Works with **Claude Code ยท Codex CLI ยท Gemini CLI ยท Cursor ยท Windsurf ยท any
|
|
|
22
22
|
## Live monitoring
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
<img src="https://github.com/user-attachments/assets/
|
|
25
|
+
<img src="https://github.com/user-attachments/assets/997b7b42-b251-4046-b9c5-e000f8b5a481" width="720" alt="Node9 monitor dashboard" />
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
`node9 monitor` opens an interactive terminal dashboard with two views:
|
|
@@ -97,10 +97,10 @@ node9 shield list # show all shields + status
|
|
|
97
97
|
|
|
98
98
|
## Always on โ no config needed
|
|
99
99
|
|
|
100
|
-
- **Git** โ
|
|
101
|
-
- **SQL** โ
|
|
102
|
-
- **Shell** โ
|
|
103
|
-
- **DLP** โ
|
|
100
|
+
- **Git** โ catches `git push --force`, `git reset --hard`, `git clean -fd`
|
|
101
|
+
- **SQL** โ catches `DELETE` / `UPDATE` without `WHERE`, `DROP TABLE`, `TRUNCATE`
|
|
102
|
+
- **Shell** โ catches `curl | bash`, unauthorized `sudo`
|
|
103
|
+
- **DLP** โ flags AWS keys, GitHub tokens, Stripe keys, PEM private keys in any tool argument, file contents, or shell config (`~/.zshrc`, `~/.bashrc`)
|
|
104
104
|
- **Response DLP** โ background scanner reads Claude's conversation history and alerts you if Claude _wrote_ a secret in its response text
|
|
105
105
|
- **Auto-undo** โ git snapshot before every AI file edit โ `node9 undo` to revert
|
|
106
106
|
- **Skills pinning** โ SHA-256 verification of installed Claude skills / plugins between sessions
|
|
@@ -167,7 +167,7 @@ Node9 surfaces the signal. Here are the patterns worth knowing:
|
|
|
167
167
|
|
|
168
168
|
| Signal | Likely meaning |
|
|
169
169
|
| ---------------------------------------------- | -------------------------------------------------------------------------------------------------- |
|
|
170
|
-
| `Would have blocked` โฅ 5 in a week | Agent is attempting
|
|
170
|
+
| `Would have blocked` โฅ 5 in a week | Agent is attempting high-impact ops; shields are worth reviewing |
|
|
171
171
|
| Single `review-git-push` rule >50% of findings | Your own rule is firing as intended โ not a risk, just supervision |
|
|
172
172
|
| DLP finding in `user-prompt` tool | You pasted a secret into your own prompt โ rotate the key |
|
|
173
173
|
| Agent Loop ร50+ on same file | Agent stuck in edit/test/fix cycle โ check context or slow down |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node9-ai",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "Security layer for AI coding agents โ intercepts dangerous tool calls before they execute",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"node9-ai": "bin/node9.js"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@node9/proxy": "1.20.
|
|
28
|
+
"@node9/proxy": "1.20.1"
|
|
29
29
|
},
|
|
30
30
|
"type": "module",
|
|
31
31
|
"engines": {
|