claudekit-cli 3.28.0 → 3.30.0-dev.1
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 -1
- package/dist/index.js +3382 -2780
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -216,6 +216,9 @@ ck versions --all
|
|
|
216
216
|
# Full health check (default)
|
|
217
217
|
ck doctor
|
|
218
218
|
|
|
219
|
+
# Verbose mode with execution timing and command details
|
|
220
|
+
ck doctor --verbose
|
|
221
|
+
|
|
219
222
|
# Generate shareable diagnostic report (prompts for gist upload)
|
|
220
223
|
ck doctor --report
|
|
221
224
|
|
|
@@ -229,7 +232,8 @@ ck doctor --check-only
|
|
|
229
232
|
ck doctor --json
|
|
230
233
|
|
|
231
234
|
# Combine flags
|
|
232
|
-
ck doctor --check-only --json
|
|
235
|
+
ck doctor --verbose --check-only --json
|
|
236
|
+
ck doctor --verbose --fix
|
|
233
237
|
```
|
|
234
238
|
|
|
235
239
|
**Health Checks:**
|