chainwall 2.2.3 → 2.2.5

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.
Files changed (2) hide show
  1. package/README.md +12 -63
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- <img src=".github/images/banner.png" width="700" alt="CHAINWALL">
3
+ <img src="https://raw.githubusercontent.com/consulalialpric/chainwall/main/.github/images/banner.jpg" width="700" alt="CHAINWALL">
4
4
 
5
5
  <br><br>
6
6
 
@@ -31,7 +31,7 @@ chainwall
31
31
  That's it. Two commands. The interactive dashboard opens and walks you through everything — scan for secrets, audit your AI tools, monitor runtime behavior, and configure protection. No flags to memorize, no config files to write.
32
32
 
33
33
  <p align="center">
34
- <img src=".github/images/dashboard.png" width="680" alt="ChainWall Dashboard">
34
+ <img src="https://raw.githubusercontent.com/consulalialpric/chainwall/main/.github/images/dashboard.png" width="680" alt="ChainWall Dashboard">
35
35
  </p>
36
36
 
37
37
  > [!TIP]
@@ -78,7 +78,7 @@ ChainWall closes the gap. Scan what's exposed, see which tools can reach it, and
78
78
  ## See It in Action
79
79
 
80
80
  <p align="center">
81
- <img src=".github/images/demo.gif" width="680" alt="ChainWall TUI Demo">
81
+ <img src="https://raw.githubusercontent.com/consulalialpric/chainwall/main/.github/images/demo.gif" width="680" alt="ChainWall TUI Demo">
82
82
  </p>
83
83
 
84
84
  ---
@@ -90,7 +90,7 @@ ChainWall closes the gap. Scan what's exposed, see which tools can reach it, and
90
90
  ChainWall walks your filesystem and matches every file against 241 detection patterns — credentials, private keys, crypto seeds, PII, dangerous commands, supply chain attacks, and cryptojacking. Entropy validation filters out false positives so you only see real secrets. System-level scans target the specific locations where credentials actually live: `~/.aws`, `~/.ssh`, `~/.gnupg`, browser profiles, and more.
91
91
 
92
92
  <p align="center">
93
- <img src=".github/images/scan.png" width="640" alt="ChainWall scan results">
93
+ <img src="https://raw.githubusercontent.com/consulalialpric/chainwall/main/.github/images/scan.png" width="640" alt="ChainWall scan results">
94
94
  </p>
95
95
 
96
96
  ### Audit
@@ -100,7 +100,7 @@ The auditor detects every AI tool on your machine — 18 tools across three acce
100
100
  Sections like MCP Servers, VS Code Extensions, and Environment Variables show "None found." when your system is clean — that's the goal. If something is lurking, ChainWall will surface it.
101
101
 
102
102
  <p align="center">
103
- <img src=".github/images/audit.png" width="640" alt="ChainWall audit results">
103
+ <img src="https://raw.githubusercontent.com/consulalialpric/chainwall/main/.github/images/audit.png" width="640" alt="ChainWall audit results">
104
104
  </p>
105
105
 
106
106
  ### Monitor
@@ -131,9 +131,7 @@ chainwall init # install real-time protection hooks (one-time setup)
131
131
  > [!NOTE]
132
132
  > `chainwall init` only needs to run once per project to deploy hooks. After that, just launch `chainwall` for the full dashboard.
133
133
 
134
- <details>
135
- <summary><b>Platform guide</b></summary>
136
- <br>
134
+ ### Platform Guide
137
135
 
138
136
  <table>
139
137
  <tr>
@@ -177,8 +175,6 @@ chainwall init # install real-time protection hooks (one-time setup)
177
175
  </tr>
178
176
  </table>
179
177
 
180
- </details>
181
-
182
178
  <details>
183
179
  <summary><b>Install from source</b></summary>
184
180
  <br>
@@ -416,57 +412,12 @@ This registers the MCP server in Claude Desktop and Cursor automatically.
416
412
 
417
413
  Add the `chainwall` server to your MCP client config:
418
414
 
419
- <table>
420
- <tr>
421
- <td width="60">
422
-
423
- <img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/apple/apple-original.svg" width="36" alt="macOS">
424
-
425
- </td>
426
- <td>
427
-
428
- **Claude Desktop** — `~/Library/Application Support/Claude/claude_desktop_config.json`
429
-
430
- </td>
431
- </tr>
432
- <tr>
433
- <td>
434
-
435
- <img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg" width="36" alt="Linux">
436
-
437
- </td>
438
- <td>
439
-
440
- **Claude Desktop** — `~/.config/Claude/claude_desktop_config.json`
441
-
442
- </td>
443
- </tr>
444
- </table>
445
-
446
- ```jsonc
447
- {
448
- "mcpServers": {
449
- "chainwall": {
450
- "command": "chainwall-mcp"
451
- }
452
- }
453
- }
454
- ```
455
-
456
- <table>
457
- <tr>
458
- <td width="60">
459
-
460
- <img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg" width="36" alt="Cursor">
461
-
462
- </td>
463
- <td>
464
-
465
- **Cursor** — `~/.cursor/mcp.json`
466
-
467
- </td>
468
- </tr>
469
- </table>
415
+ | Client | Config path |
416
+ |--------|------------|
417
+ | Claude Desktop (macOS) | `~/Library/Application Support/Claude/claude_desktop_config.json` |
418
+ | Claude Desktop (Linux) | `~/.config/Claude/claude_desktop_config.json` |
419
+ | Cursor | `~/.cursor/mcp.json` |
420
+ | Windsurf / other | Any MCP config — just needs `chainwall-mcp` on PATH |
470
421
 
471
422
  ```jsonc
472
423
  {
@@ -478,8 +429,6 @@ Add the `chainwall` server to your MCP client config:
478
429
  }
479
430
  ```
480
431
 
481
- For **Windsurf** or other MCP clients, use the same JSON — the only requirement is that `chainwall-mcp` is on your PATH (installed via `npm install -g chainwall`).
482
-
483
432
  ### Direct usage
484
433
 
485
434
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chainwall",
3
- "version": "2.2.3",
3
+ "version": "2.2.5",
4
4
  "description": "Antivirus for AI agents — scan your machine, see what's exposed, block threats",
5
5
  "type": "module",
6
6
  "bin": {