code-auditor-mcp 3.0.1 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,14 +5,15 @@ Architectural invariants enforced inside your AI agent's edit loop. When the age
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install code-auditor-mcp
8
+ claude plugin marketplace add BenAHammond/code-auditor-mcp
9
+ claude plugin install code-auditor
9
10
  ```
10
11
 
11
- Then tell your agent to set it up:
12
+ The hook auto-installs the auditor on first use via npx — no npm commands needed. That gives you the hook, MCP server, and `/code-auditor` skill. Then tell your agent to set it up:
12
13
 
13
14
  ## Prompt examples
14
15
 
15
- **"Add a Claude Code hook that runs `code-audit changed --stdin --json --fail-on critical` on Write and Edit."**
16
+ **"Index the codebase and run a full audit. Create tasks from any violations."**
16
17
 
17
18
  **"Create a `.codeauditor.json` that bans lodash imports and prevents `src/languages/` from importing anything in `src/analyzers/`."**
18
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-auditor-mcp",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Architectural invariants and code quality analysis, enforced inside your AI agent's edit loop. MCP server + CLI + Claude Code plugin. TypeScript, JavaScript, Go.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",