claude-crap 0.3.4 → 0.3.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.
- package/CHANGELOG.md +16 -0
- package/README.md +116 -472
- package/dist/dashboard/server.d.ts.map +1 -1
- package/dist/dashboard/server.js +112 -48
- package/dist/dashboard/server.js.map +1 -1
- package/dist/sarif/sarif-store.d.ts.map +1 -1
- package/dist/sarif/sarif-store.js +1 -1
- package/dist/sarif/sarif-store.js.map +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.mcp.json +1 -2
- package/plugin/bundle/mcp-server.mjs +119 -85
- package/plugin/bundle/mcp-server.mjs.map +3 -3
- package/plugin/eslint.config.mjs +12 -0
- package/plugin/hooks/lib/hook-io.mjs +1 -1
- package/plugin/hooks/pre-tool-use.mjs +1 -1
- package/plugin/package-lock.json +2 -2
- package/plugin/package.json +1 -1
- package/scripts/doctor.mjs +2 -2
- package/src/dashboard/server.ts +137 -61
- package/src/sarif/sarif-store.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.5] - 2026-04-12
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **MCP server workspace root** — removed `CLAUDE_CRAP_PLUGIN_ROOT`
|
|
13
|
+
env var from `.mcp.json` so `score_project` scans the user's
|
|
14
|
+
workspace instead of the plugin cache directory.
|
|
15
|
+
- **ESLint false positives** — added Node.js globals for `.mjs`/`.cjs`,
|
|
16
|
+
disabled `no-undef` for TypeScript files, downgraded stylistic rules
|
|
17
|
+
from error to warn. Result: 0 error-level findings.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **README slimmed from 571 to 215 lines** — verbose sections moved to
|
|
22
|
+
`docs/quality-gate.md` and `docs/contributing.md`.
|
|
23
|
+
|
|
8
24
|
## [0.3.4] - 2026-04-12
|
|
9
25
|
|
|
10
26
|
### Fixed
|