claudekit-cli 3.41.4-dev.5 → 3.41.4-dev.7
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 +12 -0
- package/dist/index.js +1486 -1366
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -148,6 +148,10 @@ ck new --prefix
|
|
|
148
148
|
# Offline installation (from local archive or directory)
|
|
149
149
|
ck new --archive ~/downloads/engineer-v1.16.0.zip
|
|
150
150
|
ck new --kit-path ~/extracted-kit/
|
|
151
|
+
|
|
152
|
+
# Direct repo downloads are also supported
|
|
153
|
+
ck new --archive ~/downloads/claudekit-engineer-main.zip
|
|
154
|
+
ck new --kit-path ~/downloads/claudekit-engineer-main/
|
|
151
155
|
```
|
|
152
156
|
|
|
153
157
|
**Flags:**
|
|
@@ -158,6 +162,8 @@ ck new --kit-path ~/extracted-kit/
|
|
|
158
162
|
- `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
|
|
159
163
|
- `--kit-path <path>`: Use local kit directory instead of downloading
|
|
160
164
|
|
|
165
|
+
`--archive` and `--kit-path` both accept direct repo downloads with a single wrapper directory, including GitHub "Download ZIP" archives and extracted repo folders that still contain `claudekit-engineer-main/` or similar at the top level.
|
|
166
|
+
|
|
161
167
|
### Initialize or Update Project
|
|
162
168
|
|
|
163
169
|
**Note:** Run from project root.
|
|
@@ -188,6 +194,10 @@ ck init --exclude "*.local" --prefix
|
|
|
188
194
|
# Offline installation (from local archive or directory)
|
|
189
195
|
ck init --archive ~/downloads/engineer-v1.16.0.zip
|
|
190
196
|
ck init --kit-path ~/extracted-kit/
|
|
197
|
+
|
|
198
|
+
# Direct repo downloads are also supported
|
|
199
|
+
ck init --archive ~/downloads/claudekit-engineer-main.zip
|
|
200
|
+
ck init --kit-path ~/downloads/claudekit-engineer-main/
|
|
191
201
|
```
|
|
192
202
|
|
|
193
203
|
**Flags:**
|
|
@@ -199,6 +209,8 @@ ck init --kit-path ~/extracted-kit/
|
|
|
199
209
|
- `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
|
|
200
210
|
- `--kit-path <path>`: Use local kit directory instead of downloading
|
|
201
211
|
|
|
212
|
+
`--archive` and `--kit-path` both accept direct repo downloads with a single wrapper directory, including GitHub "Download ZIP" archives and extracted repo folders that still contain `claudekit-engineer-main/` or similar at the top level.
|
|
213
|
+
|
|
202
214
|
**Default Behavior with `-y` Flag:**
|
|
203
215
|
|
|
204
216
|
| Prompt | Default |
|