claudekit-cli 1.11.0 → 1.12.1

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
@@ -7,7 +7,7 @@ Command-line tool for bootstrapping and updating ClaudeKit projects.
7
7
  **ClaudeKit CLI** (`ck`) is a command-line tool for bootstrapping and updating projects from private GitHub repository releases. Built with Bun and TypeScript, it provides fast, secure, and user-friendly project setup and maintenance.
8
8
 
9
9
  **Key Features:**
10
- - Multi-tier GitHub authentication (gh CLI → env vars → keychain → prompt)
10
+ - Multi-tier GitHub authentication (`gh` CLI → env vars → keychain → prompt)
11
11
  - Streaming downloads with progress tracking
12
12
  - Smart file merging with conflict detection
13
13
  - Automatic skills directory migration (flat → categorized)
@@ -106,24 +106,42 @@ ck new --opencode
106
106
  ck new --gemini
107
107
  ```
108
108
 
109
- ### Update Existing Project
109
+ ### Initialize or Update Project
110
110
 
111
111
  **Note:** this command should be run from the root directory of your project.
112
112
 
113
+ **⚠️ 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.
114
+
113
115
  ```bash
114
- # Interactive mode
115
- ck update
116
+ # Interactive mode (recommended)
117
+ ck init
116
118
 
117
119
  # With options
118
- ck update --kit engineer
120
+ ck init --kit engineer
119
121
 
120
122
  # Specific version
121
- ck update --kit engineer --version v1.0.0
123
+ ck init --kit engineer --version v1.0.0
122
124
 
123
125
  # With exclude patterns
124
- ck update --exclude "local-config/**" --exclude "*.local"
126
+ ck init --exclude "local-config/**" --exclude "*.local"
127
+
128
+ # Global mode - use platform-specific user configuration
129
+ ck init --global
130
+ ck init -g --kit engineer
131
+
132
+ # Legacy (deprecated - use 'init' instead)
133
+ ck update # Shows deprecation warning
125
134
  ```
126
135
 
136
+ **Global vs Local Configuration:**
137
+
138
+ By default, ClaudeKit uses local configuration (`~/.claudekit`). For platform-specific user-scoped settings:
139
+
140
+ - **macOS/Linux**: `~/.config/claude/config.json`
141
+ - **Windows**: `%LOCALAPPDATA%\claude\config.json`
142
+
143
+ Global mode uses user-scoped directories (no sudo required), allowing separate configurations for different projects.
144
+
127
145
  **Automatic Skills Migration:**
128
146
  - Detects structure changes (flat → categorized)
129
147
  - Preserves all customizations via SHA-256 hashing
@@ -159,12 +177,17 @@ ck diagnose --verbose # Detailed diagnostics
159
177
  ### Other Commands
160
178
 
161
179
  ```bash
162
- # Show CLI version
180
+ # Show CLI version (shows local + global kit versions)
163
181
  ck --version
164
182
 
165
183
  # Show help
166
184
  ck --help
167
185
  ck -h
186
+
187
+ # Command-specific help
188
+ ck new --help
189
+ ck init --help
190
+ ck versions --help
168
191
  ```
169
192
 
170
193
  ### Debugging
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.11.0",
3
+ "version": "1.12.1",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {