claudekit-cli 3.20.0 → 3.22.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.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/dist/index.js +2771 -2327
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -11,6 +11,7 @@ ClaudeKit CLI (`ck`) is a command-line tool for bootstrapping and updating proje
11
11
  **Key Features:**
12
12
  - Multi-tier GitHub authentication (gh CLI → env vars → keychain → prompt)
13
13
  - Streaming downloads with progress tracking and platform optimizations
14
+ - **Offline installation** from local archives or directories
14
15
  - Smart file merging with conflict detection
15
16
  - Automatic skills directory migration with parallel processing
16
17
  - Secure credential storage using OS keychain
@@ -100,6 +101,10 @@ ck new --install-skills
100
101
 
101
102
  # Command prefix (/ck: namespace to avoid conflicts)
102
103
  ck new --prefix
104
+
105
+ # Offline installation (from local archive or directory)
106
+ ck new --archive ~/downloads/engineer-v1.16.0.zip
107
+ ck new --kit-path ~/extracted-kit/
103
108
  ```
104
109
 
105
110
  **Flags:**
@@ -107,6 +112,8 @@ ck new --prefix
107
112
  - `--prefix`: Move commands to /ck: namespace (/plan → /ck:plan)
108
113
  - `--beta`: Show pre-release versions in selection
109
114
  - `--opencode/--gemini`: Install optional packages
115
+ - `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
116
+ - `--kit-path <path>`: Use local kit directory instead of downloading
110
117
 
111
118
  ### Initialize or Update Project
112
119
 
@@ -134,6 +141,10 @@ ck init --fresh
134
141
 
135
142
  # With exclude patterns and prefix
136
143
  ck init --exclude "*.local" --prefix
144
+
145
+ # Offline installation (from local archive or directory)
146
+ ck init --archive ~/downloads/engineer-v1.16.0.zip
147
+ ck init --kit-path ~/extracted-kit/
137
148
  ```
138
149
 
139
150
  **Flags:**
@@ -142,6 +153,8 @@ ck init --exclude "*.local" --prefix
142
153
  - `--fresh`: Clean reinstall, removes .claude directory (requires "yes" confirmation)
143
154
  - `--beta`: Show pre-release versions
144
155
  - `--prefix`: Apply /ck: namespace to commands
156
+ - `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
157
+ - `--kit-path <path>`: Use local kit directory instead of downloading
145
158
 
146
159
  **Default Behavior with `-y` Flag:**
147
160