@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 +4 -6
- package/cli/lib/update.js +1 -1
- package/package.json +7 -6
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.
|
|
9
|
+
## What's New in v7.16
|
|
10
10
|
|
|
11
|
-
- **
|
|
12
|
-
- **
|
|
13
|
-
- **
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-bearded-bear/claude-craft",
|
|
3
|
-
"version": "7.
|
|
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": "^
|
|
57
|
-
"@commitlint/config-conventional": "^
|
|
58
|
-
"@vitest/coverage-v8": "^
|
|
59
|
-
"eslint": "^
|
|
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": "^
|
|
63
|
+
"vitest": "^4.0.0"
|
|
63
64
|
},
|
|
64
65
|
"files": [
|
|
65
66
|
"bundles/",
|