claudekit-cli 1.12.2 → 1.12.3

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
@@ -199,6 +199,24 @@ ck new --verbose --log-file debug.log # Save to file
199
199
  CLAUDEKIT_VERBOSE=1 ck new # Via environment variable
200
200
  ```
201
201
 
202
+ ### Update Notifications
203
+
204
+ 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.
205
+
206
+ **Disable Update Notifications:**
207
+ ```bash
208
+ # Set environment variable to disable
209
+ NO_UPDATE_NOTIFIER=1 ck --version
210
+
211
+ # Windows (permanent)
212
+ [System.Environment]::SetEnvironmentVariable("NO_UPDATE_NOTIFIER", "1", [System.EnvironmentVariableTarget]::User)
213
+
214
+ # macOS/Linux (add to ~/.bashrc or ~/.zshrc)
215
+ export NO_UPDATE_NOTIFIER=1
216
+ ```
217
+
218
+ **Cache Location:** `~/.claudekit/cache/version-check.json` (Windows: `%USERPROFILE%\.claudekit\cache\`)
219
+
202
220
  ## Authentication
203
221
 
204
222
  The CLI requires GitHub authentication to download releases from private repositories.
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.12.3",
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",