claudekit-cli 3.41.4 → 3.42.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.
package/README.md CHANGED
@@ -9,7 +9,9 @@ Command-line tool and web dashboard for managing ClaudeKit projects.
9
9
  ClaudeKit Config UI (`ck`) provides both CLI and web dashboard for managing ClaudeKit projects. It is built with Bun, TypeScript, and React for development, while the published CLI runs on plain Node.js so end users do not need Bun installed.
10
10
 
11
11
  **Key Features:**
12
- - **CLI Commands (16)**: new, init, config, projects, setup, skills, agents, commands, migrate, doctor, versions, update, uninstall, watch, content, easter-egg
12
+ - **CLI Commands (17)**: new, init, app, config, projects, setup, skills, agents, commands, migrate, doctor, versions, update, uninstall, watch, content, easter-egg
13
+ - **Desktop Launcher**: `ck app` downloads, installs, and launches the native Control Center on first run
14
+ - **Desktop Runtime Split**: Tauri desktop mode now boots the UI without the Express dashboard server for supported native reads; server-backed flows stay in `ck` terminal/web workflows
13
15
  - **Web Dashboard**: Interactive React UI via `ck config ui` for configuration and project management
14
16
  - **Hook Diagnostics Dashboard**: Inspect recent Claude hook activity and failures from `ck config` across global and project scopes
15
17
  - **Projects Registry**: Centralized registry at `~/.claudekit/projects.json` with file locking
@@ -93,6 +95,12 @@ ck --help
93
95
  # Open config dashboard immediately
94
96
  ck config
95
97
 
98
+ # Launch the desktop app (downloads it on first run)
99
+ ck app
100
+
101
+ # Force the existing web dashboard instead
102
+ ck app --web
103
+
96
104
  # Expose the dashboard intentionally to your LAN/Tailscale
97
105
  ck config --host 0.0.0.0 --no-open
98
106
 
@@ -102,6 +110,7 @@ ck skills --help
102
110
  ck agents --help
103
111
  ck commands --help
104
112
  ck migrate --help
113
+ ck app --help
105
114
  ```
106
115
 
107
116
  ### Config Dashboard Access
@@ -148,6 +157,10 @@ ck new --prefix
148
157
  # Offline installation (from local archive or directory)
149
158
  ck new --archive ~/downloads/engineer-v1.16.0.zip
150
159
  ck new --kit-path ~/extracted-kit/
160
+
161
+ # Direct repo downloads are also supported
162
+ ck new --archive ~/downloads/claudekit-engineer-main.zip
163
+ ck new --kit-path ~/downloads/claudekit-engineer-main/
151
164
  ```
152
165
 
153
166
  **Flags:**
@@ -158,6 +171,8 @@ ck new --kit-path ~/extracted-kit/
158
171
  - `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
159
172
  - `--kit-path <path>`: Use local kit directory instead of downloading
160
173
 
174
+ `--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.
175
+
161
176
  ### Initialize or Update Project
162
177
 
163
178
  **Note:** Run from project root.
@@ -188,6 +203,10 @@ ck init --exclude "*.local" --prefix
188
203
  # Offline installation (from local archive or directory)
189
204
  ck init --archive ~/downloads/engineer-v1.16.0.zip
190
205
  ck init --kit-path ~/extracted-kit/
206
+
207
+ # Direct repo downloads are also supported
208
+ ck init --archive ~/downloads/claudekit-engineer-main.zip
209
+ ck init --kit-path ~/downloads/claudekit-engineer-main/
191
210
  ```
192
211
 
193
212
  **Flags:**
@@ -199,6 +218,8 @@ ck init --kit-path ~/extracted-kit/
199
218
  - `--archive <path>`: Use local archive (zip/tar.gz) instead of downloading
200
219
  - `--kit-path <path>`: Use local kit directory instead of downloading
201
220
 
221
+ `--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.
222
+
202
223
  **Default Behavior with `-y` Flag:**
203
224
 
204
225
  | Prompt | Default |
@@ -635,6 +656,25 @@ bun test
635
656
  bun run test:integration
636
657
  ```
637
658
 
659
+ ## E2E Tests
660
+
661
+ Playwright E2E tests cover the `ck migrate` dashboard (3 scenarios). Tests run against the local dev server and use API mocking — no real filesystem state is modified.
662
+
663
+ **Prerequisites:** Node 18+ or Bun 1.0+, Chromium (installed automatically).
664
+
665
+ ```bash
666
+ # One-time browser setup (if not already installed)
667
+ ./node_modules/.bin/playwright install chromium
668
+
669
+ # Run all E2E specs
670
+ bun run test:e2e
671
+
672
+ # Interactive UI mode (watch + trace viewer)
673
+ bun run test:e2e:ui
674
+ ```
675
+
676
+ Note: The dev server starts automatically via `bun run dashboard:dev`. CI wiring is a separate follow-up (local-only for now).
677
+
638
678
  ## FAQ
639
679
 
640
680
  **Q: Do I need GitHub CLI?**