claudekit-cli 1.12.1 → 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
@@ -135,10 +135,11 @@ ck update # Shows deprecation warning
135
135
 
136
136
  **Global vs Local Configuration:**
137
137
 
138
- By default, ClaudeKit uses local configuration (`~/.claudekit`). For platform-specific user-scoped settings:
138
+ By default, ClaudeKit will be installed in the current directory (`.claude` directory), or we used to call it project-scoped.
139
139
 
140
- - **macOS/Linux**: `~/.config/claude/config.json`
141
- - **Windows**: `%LOCALAPPDATA%\claude\config.json`
140
+ For platform-specific user-scoped (global) settings:
141
+ - **macOS/Linux**: `~/.claude`
142
+ - **Windows**: `%USERPROFILE%\.claude`
142
143
 
143
144
  Global mode uses user-scoped directories (no sudo required), allowing separate configurations for different projects.
144
145
 
@@ -198,6 +199,24 @@ ck new --verbose --log-file debug.log # Save to file
198
199
  CLAUDEKIT_VERBOSE=1 ck new # Via environment variable
199
200
  ```
200
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
+
201
220
  ## Authentication
202
221
 
203
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.1",
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",