@the-bearded-bear/claude-craft 7.4.0 → 7.5.0-next.bacd6e8
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 +5 -4
- package/cli/lib/doctor.js +13 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,11 +6,12 @@
|
|
|
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.4
|
|
10
10
|
|
|
11
|
-
- **
|
|
12
|
-
- **
|
|
13
|
-
- **
|
|
11
|
+
- **CLI `list`, `doctor`, `update` commands** — detailed inventory, environment diagnostics, and in-place refresh
|
|
12
|
+
- **help.js** now displays all 20 namespaces with descriptions
|
|
13
|
+
- **fs-utils extraction** — shared `countFiles`/`listDirs` utilities for DRY CLI modules
|
|
14
|
+
- **Documentation accuracy** — removed phantom namespaces, fixed stale paths
|
|
14
15
|
- See [CHANGELOG](CHANGELOG.md) for full details
|
|
15
16
|
|
|
16
17
|
> See [CHANGELOG.md](CHANGELOG.md) for previous versions.
|
package/cli/lib/doctor.js
CHANGED
|
@@ -78,7 +78,17 @@ function runDoctor(targetPath, deps = {}) {
|
|
|
78
78
|
failed++;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
// 5.
|
|
81
|
+
// 5. yq available (Mike Farah version)
|
|
82
|
+
const yqVer = exec('yq --version');
|
|
83
|
+
if (yqVer) {
|
|
84
|
+
console.log(` ${c.green}[OK]${c.reset} ${yqVer}`);
|
|
85
|
+
passed++;
|
|
86
|
+
} else {
|
|
87
|
+
console.log(` ${c.yellow}[WARN]${c.reset} yq not found (required for YAML config)`);
|
|
88
|
+
warned++;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// 6. .claude/ structure integrity
|
|
82
92
|
const claudeDir = path.join(targetPath, '.claude');
|
|
83
93
|
if (fs.existsSync(claudeDir)) {
|
|
84
94
|
console.log(` ${c.green}[OK]${c.reset} .claude/ directory exists`);
|
|
@@ -109,7 +119,7 @@ function runDoctor(targetPath, deps = {}) {
|
|
|
109
119
|
warned++;
|
|
110
120
|
}
|
|
111
121
|
|
|
112
|
-
//
|
|
122
|
+
// 7. Shell scripts have execute permissions
|
|
113
123
|
const scriptsDir = path.join(targetPath, 'Dev', 'scripts');
|
|
114
124
|
if (fs.existsSync(scriptsDir)) {
|
|
115
125
|
try {
|
|
@@ -136,7 +146,7 @@ function runDoctor(targetPath, deps = {}) {
|
|
|
136
146
|
}
|
|
137
147
|
}
|
|
138
148
|
|
|
139
|
-
//
|
|
149
|
+
// 8. i18n base dirs
|
|
140
150
|
const i18nBase = path.join(targetPath, 'Dev', 'i18n');
|
|
141
151
|
if (fs.existsSync(i18nBase)) {
|
|
142
152
|
const langs = listDirs(i18nBase);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-bearded-bear/claude-craft",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0-next.bacd6e8",
|
|
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",
|