claudekit-cli 1.12.3 → 1.13.0

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
@@ -62,15 +62,6 @@ yarn global add claudekit-cli
62
62
  pnpm add -g claudekit-cli
63
63
  ```
64
64
 
65
- ### From Source
66
-
67
- ```bash
68
- git clone https://github.com/mrgoonie/claudekit-cli
69
- cd claudekit-cli
70
- bun install
71
- bun link
72
- ```
73
-
74
65
  After installation, verify it's working:
75
66
 
76
67
  ```bash
@@ -169,12 +160,41 @@ ck versions --all
169
160
 
170
161
  ### Diagnostics & Doctor
171
162
 
163
+ The `ck doctor` command checks system dependencies required for ClaudeKit skills and offers to install them automatically.
164
+
172
165
  ```bash
173
- ck diagnose # Check auth, access, releases
174
- ck doctor # Show setup overview, component counts
175
- ck diagnose --verbose # Detailed diagnostics
166
+ # Interactive mode - checks and offers to install missing dependencies
167
+ ck doctor
168
+
169
+ # Non-interactive mode (CI/CD) - shows status only
170
+ CI=true ck doctor
171
+ NON_INTERACTIVE=1 ck doctor
172
+
173
+ # Also available: authentication and access diagnostics
174
+ ck diagnose # Check auth, access, releases
175
+ ck diagnose --verbose # Detailed diagnostics
176
176
  ```
177
177
 
178
+ **What it checks:**
179
+ - Claude CLI (optional, v1.0.0+)
180
+ - Python (required, v3.8.0+)
181
+ - pip (required, any version)
182
+ - Node.js (required, v16.0.0+)
183
+ - npm (required, any version)
184
+ - Global and project ClaudeKit setup
185
+ - Component counts (agents, commands, workflows, skills)
186
+
187
+ **Auto-installation support:**
188
+ - **macOS**: Homebrew, installer script
189
+ - **Linux**: apt, dnf, pacman, installer script
190
+ - **Windows**: PowerShell script
191
+ - Cross-platform with WSL support
192
+
193
+ **Security notes:**
194
+ - All installations require user confirmation in interactive mode
195
+ - Manual installation instructions provided as fallback
196
+ - No automatic installation in CI/CD environments
197
+
178
198
  ### Other Commands
179
199
 
180
200
  ```bash
@@ -272,9 +292,9 @@ sudo apt install gh
272
292
  Run diagnostics to check for common issues:
273
293
 
274
294
  ```bash
295
+ ck doctor # Check dependencies and offer installation
275
296
  ck diagnose # Check authentication, access, releases
276
297
  ck new --verbose # Enable detailed logging
277
- ck doctor # Show setup overview
278
298
  ```
279
299
 
280
300
  **Common Issues:**
Binary file
package/bin/ck-darwin-x64 CHANGED
Binary file
package/bin/ck-linux-x64 CHANGED
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "1.12.3",
3
+ "version": "1.13.0",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {