claude-crap 0.3.4 → 0.3.6
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 +29 -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/bundle-plugin.mjs +53 -2
- 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,35 @@ 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.6] - 2026-04-12
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Auto-sync plugin cache on build** — `npm run build:plugin` now
|
|
13
|
+
detects cached versions under `~/.claude/plugins/cache/` and syncs
|
|
14
|
+
the freshly built files in-place. Eliminates the stale-cache problem
|
|
15
|
+
where rebuilding had no effect until manual `/plugin install`.
|
|
16
|
+
- **PID file for dashboard port reuse** — dashboard writes
|
|
17
|
+
`.claude-crap/dashboard.pid` and kills stale processes on startup
|
|
18
|
+
so the port is always reclaimed (no more drift to 5118/5119).
|
|
19
|
+
- **Unused import** — removed leftover `createTcpServer` import.
|
|
20
|
+
|
|
21
|
+
## [0.3.5] - 2026-04-12
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **MCP server workspace root** — removed `CLAUDE_CRAP_PLUGIN_ROOT`
|
|
26
|
+
env var from `.mcp.json` so `score_project` scans the user's
|
|
27
|
+
workspace instead of the plugin cache directory.
|
|
28
|
+
- **ESLint false positives** — added Node.js globals for `.mjs`/`.cjs`,
|
|
29
|
+
disabled `no-undef` for TypeScript files, downgraded stylistic rules
|
|
30
|
+
from error to warn. Result: 0 error-level findings.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- **README slimmed from 571 to 215 lines** — verbose sections moved to
|
|
35
|
+
`docs/quality-gate.md` and `docs/contributing.md`.
|
|
36
|
+
|
|
8
37
|
## [0.3.4] - 2026-04-12
|
|
9
38
|
|
|
10
39
|
### Fixed
|