@the-bearded-bear/claude-craft 7.15.0 → 7.16.0-next.6f39d2e

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/README.md CHANGED
@@ -6,13 +6,11 @@
6
6
 
7
7
  A comprehensive framework for AI-assisted development with [Claude Code](https://claude.ai/code). Install standardized rules, agents, and commands for your projects across multiple technology stacks.
8
8
 
9
- ## What's New in v7.14
9
+ ## What's New in v7.16
10
10
 
11
- - **Context management best practices** — new rule `12-context-management.md` covering Anthropic's #1 recommendation: context window as THE critical resource
12
- - **MCP & Plugin security** — security rule updated with MCP vetting checklist, malicious payload warnings (Snyk 2026), hooks enforcement guidance
13
- - **Hook templates** — 4 ready-to-use templates: auto-format, protect-files, context-reinject, security-block
14
- - **Parallel worktrees** — new skill documenting Boris Cherny's productivity pattern for concurrent Claude sessions
15
- - **Verification loops** — guidance on specification-implementation-verification pattern (2-3x quality improvement)
11
+ - **Claude Code 2.1.46-2.1.47 compatibility** — MCP connectors, VS Code Plan Preview auto-updates, multi-line input, `last_assistant_message` hook inputs, statusline `added_dirs`
12
+ - **Performance focus** — ~500ms faster startup, `@` file mention pre-warming, O(n²) memory fix for long sessions, resume picker now shows 50 sessions
13
+ - **45+ bug fixes** — Unicode curly quotes, parallel write resilience, large sessions in /resume, plan mode after compaction, background agents, git worktrees support
16
14
  - See [CHANGELOG](CHANGELOG.md) for full details
17
15
 
18
16
  > See [CHANGELOG.md](CHANGELOG.md) for previous versions.
package/cli/lib/update.js CHANGED
@@ -34,7 +34,7 @@ function runUpdate(targetPath, options, cliRoot) {
34
34
  }
35
35
 
36
36
  // Determine techs to update
37
- let techsToUpdate = [];
37
+ let techsToUpdate;
38
38
 
39
39
  if (options.tech) {
40
40
  // Explicit --tech flag
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-bearded-bear/claude-craft",
3
- "version": "7.15.0",
3
+ "version": "7.16.0-next.6f39d2e",
4
4
  "description": "A comprehensive framework for AI-assisted development with Claude Code. Install standardized rules, agents, and commands for your projects.",
5
5
  "type": "module",
6
6
  "main": "cli/index.js",
@@ -53,13 +53,14 @@
53
53
  "node": ">=20.0.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@commitlint/cli": "^19.0.0",
57
- "@commitlint/config-conventional": "^19.0.0",
58
- "@vitest/coverage-v8": "^3.2.4",
59
- "eslint": "^9.0.0",
56
+ "@commitlint/cli": "^20.0.0",
57
+ "@commitlint/config-conventional": "^20.0.0",
58
+ "@vitest/coverage-v8": "^4.0.0",
59
+ "@eslint/js": "^10.0.0",
60
+ "eslint": "^10.0.0",
60
61
  "eslint-config-prettier": "^10.0.0",
61
62
  "prettier": "^3.4.0",
62
- "vitest": "^3.0.0"
63
+ "vitest": "^4.0.0"
63
64
  },
64
65
  "files": [
65
66
  "bundles/",