claudekit-cli 1.15.0 → 1.16.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
@@ -73,14 +73,14 @@ ck --version
73
73
  ### Create a New Project
74
74
 
75
75
  ```bash
76
- # Interactive mode
76
+ # Interactive mode (with version selection prompt)
77
77
  ck new
78
78
 
79
79
  # With options
80
80
  ck new --dir my-project --kit engineer
81
81
 
82
- # Specific version
83
- ck new --kit engineer --version v1.0.0
82
+ # Show beta versions in selection prompt
83
+ ck new --kit engineer --beta
84
84
 
85
85
  # With exclude patterns
86
86
  ck new --kit engineer --exclude "*.log" --exclude "temp/**"
@@ -155,14 +155,14 @@ The `--prefix` flag reorganizes slash commands to use a `/ck:` namespace, moving
155
155
  **⚠️ Deprecation Notice:** The `update` command has been renamed to `init`. The `update` command still works but will show a deprecation warning. Please use `init` instead.
156
156
 
157
157
  ```bash
158
- # Interactive mode (recommended)
158
+ # Interactive mode with version selection (recommended)
159
159
  ck init
160
160
 
161
161
  # With options
162
162
  ck init --kit engineer
163
163
 
164
- # Specific version
165
- ck init --kit engineer --version v1.0.0
164
+ # Show beta versions in selection prompt
165
+ ck init --kit engineer --beta
166
166
 
167
167
  # With exclude patterns
168
168
  ck init --exclude "local-config/**" --exclude "*.local"
@@ -251,6 +251,10 @@ The `ck doctor` command checks system dependencies required for ClaudeKit skills
251
251
  # Interactive mode - checks and offers to install missing dependencies
252
252
  ck doctor
253
253
 
254
+ # Check only global installation status (skip project-specific checks)
255
+ ck doctor --global
256
+ ck doctor -g
257
+
254
258
  # Non-interactive mode (CI/CD) - shows status only
255
259
  CI=true ck doctor
256
260
  NON_INTERACTIVE=1 ck doctor
@@ -324,6 +328,21 @@ ck new --verbose --log-file debug.log # Save to file
324
328
  CLAUDEKIT_VERBOSE=1 ck new # Via environment variable
325
329
  ```
326
330
 
331
+ ### Cache Configuration
332
+
333
+ Release data is cached locally to improve performance. You can configure the cache TTL:
334
+
335
+ ```bash
336
+ # Set custom cache TTL (in seconds, default: 3600 = 1 hour)
337
+ CK_CACHE_TTL=7200 ck versions # Cache for 2 hours
338
+ CK_CACHE_TTL=0 ck versions # Disable caching (always fetch fresh)
339
+
340
+ # Permanent configuration (add to ~/.bashrc or ~/.zshrc)
341
+ export CK_CACHE_TTL=1800 # 30 minutes
342
+ ```
343
+
344
+ **Cache Location:** `~/.claudekit/cache/releases/`
345
+
327
346
  ### Update Notifications
328
347
 
329
348
  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.
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.15.0",
3
+ "version": "1.16.0",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {