claudekit-cli 3.41.4-dev.24 → 3.41.4-dev.26
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 +10 -1
- package/dist/index.js +14253 -13932
- package/dist/ui/assets/index-BxikjjQn.css +1 -0
- package/dist/ui/assets/index-D0FJ8Qi4.js +287 -0
- package/dist/ui/index.html +2 -2
- package/package.json +3 -2
- package/dist/ui/assets/index-BHZ1pAhp.js +0 -287
- package/dist/ui/assets/index-h0qoQP7j.css +0 -1
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 (
|
|
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
|