claude-crap 0.3.3 → 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 +36 -0
- package/README.md +116 -472
- package/dist/dashboard/server.d.ts.map +1 -1
- package/dist/dashboard/server.js +116 -3
- 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 +6 -2
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.mcp.json +2 -3
- package/plugin/bundle/launcher.mjs +112 -0
- package/plugin/bundle/mcp-server.mjs +120 -49
- package/plugin/bundle/mcp-server.mjs.map +3 -3
- package/plugin/eslint.config.mjs +27 -0
- package/plugin/hooks/lib/hook-io.mjs +1 -1
- package/plugin/hooks/pre-tool-use.mjs +1 -1
- package/plugin/launcher.mjs +112 -0
- package/plugin/package-lock.json +2714 -0
- package/plugin/package.json +5 -1
- package/scripts/bundle-plugin.mjs +30 -0
- package/scripts/doctor.mjs +2 -2
- package/src/dashboard/server.ts +144 -3
- package/src/sarif/sarif-store.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,42 @@ 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
|
+
|
|
24
|
+
## [0.3.4] - 2026-04-12
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- **Out-of-the-box MCP server startup** — added `launcher.mjs` bootstrap
|
|
29
|
+
wrapper that auto-installs runtime dependencies on first run. Fresh
|
|
30
|
+
git-based installs no longer fail with `ERR_MODULE_NOT_FOUND`.
|
|
31
|
+
- **Dashboard port conflict across sessions** — when port 5117 is
|
|
32
|
+
occupied by a stale process, the dashboard now probes up to 4
|
|
33
|
+
consecutive fallback ports (5118–5121) before giving up.
|
|
34
|
+
- **Deterministic installs** — `plugin/package-lock.json` is now
|
|
35
|
+
generated during `build:plugin` so all users resolve identical
|
|
36
|
+
dependency versions.
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- MCP server entry point in `.mcp.json` changed from `mcp-server.mjs`
|
|
41
|
+
to `launcher.mjs` (the launcher dynamically imports `mcp-server.mjs`
|
|
42
|
+
after ensuring dependencies exist).
|
|
43
|
+
|
|
8
44
|
## [0.3.3] - 2026-04-12
|
|
9
45
|
|
|
10
46
|
### Fixed
|