claudekit-cli 3.41.4-dev.24 → 3.41.4-dev.25
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 +9 -1
- package/dist/index.js +14251 -13931
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,8 @@ 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
|
|
13
14
|
- **Web Dashboard**: Interactive React UI via `ck config ui` for configuration and project management
|
|
14
15
|
- **Hook Diagnostics Dashboard**: Inspect recent Claude hook activity and failures from `ck config` across global and project scopes
|
|
15
16
|
- **Projects Registry**: Centralized registry at `~/.claudekit/projects.json` with file locking
|
|
@@ -93,6 +94,12 @@ ck --help
|
|
|
93
94
|
# Open config dashboard immediately
|
|
94
95
|
ck config
|
|
95
96
|
|
|
97
|
+
# Launch the desktop app (downloads it on first run)
|
|
98
|
+
ck app
|
|
99
|
+
|
|
100
|
+
# Force the existing web dashboard instead
|
|
101
|
+
ck app --web
|
|
102
|
+
|
|
96
103
|
# Expose the dashboard intentionally to your LAN/Tailscale
|
|
97
104
|
ck config --host 0.0.0.0 --no-open
|
|
98
105
|
|
|
@@ -102,6 +109,7 @@ ck skills --help
|
|
|
102
109
|
ck agents --help
|
|
103
110
|
ck commands --help
|
|
104
111
|
ck migrate --help
|
|
112
|
+
ck app --help
|
|
105
113
|
```
|
|
106
114
|
|
|
107
115
|
### Config Dashboard Access
|