claudekit-cli 1.12.2 → 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
@@ -199,6 +219,24 @@ ck new --verbose --log-file debug.log # Save to file
199
219
  CLAUDEKIT_VERBOSE=1 ck new # Via environment variable
200
220
  ```
201
221
 
222
+ ### Update Notifications
223
+
224
+ The `ck --version` command checks for newer versions of your installed ClaudeKit and displays a notification if an update is available. The check is cached for 7 days to minimize API calls.
225
+
226
+ **Disable Update Notifications:**
227
+ ```bash
228
+ # Set environment variable to disable
229
+ NO_UPDATE_NOTIFIER=1 ck --version
230
+
231
+ # Windows (permanent)
232
+ [System.Environment]::SetEnvironmentVariable("NO_UPDATE_NOTIFIER", "1", [System.EnvironmentVariableTarget]::User)
233
+
234
+ # macOS/Linux (add to ~/.bashrc or ~/.zshrc)
235
+ export NO_UPDATE_NOTIFIER=1
236
+ ```
237
+
238
+ **Cache Location:** `~/.claudekit/cache/version-check.json` (Windows: `%USERPROFILE%\.claudekit\cache\`)
239
+
202
240
  ## Authentication
203
241
 
204
242
  The CLI requires GitHub authentication to download releases from private repositories.
@@ -254,9 +292,9 @@ sudo apt install gh
254
292
  Run diagnostics to check for common issues:
255
293
 
256
294
  ```bash
295
+ ck doctor # Check dependencies and offer installation
257
296
  ck diagnose # Check authentication, access, releases
258
297
  ck new --verbose # Enable detailed logging
259
- ck doctor # Show setup overview
260
298
  ```
261
299
 
262
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.2",
3
+ "version": "1.13.0",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {
@@ -49,13 +49,14 @@
49
49
  "author": "ClaudeKit",
50
50
  "license": "MIT",
51
51
  "engines": {
52
- "bun": ">=1.0.0"
52
+ "bun": ">=1.3.2"
53
53
  },
54
54
  "dependencies": {
55
55
  "@clack/prompts": "^0.7.0",
56
56
  "@octokit/rest": "^22.0.0",
57
57
  "cac": "^6.7.14",
58
58
  "cli-progress": "^3.12.0",
59
+ "compare-versions": "^6.1.1",
59
60
  "extract-zip": "^2.0.1",
60
61
  "fs-extra": "^11.2.0",
61
62
  "ignore": "^5.3.2",