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 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