claudekit-cli 3.42.2-dev.9 → 4.0.0-dev.1
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 +5 -11
- package/cli-manifest.json +8 -54
- package/dist/index.js +55826 -56296
- package/dist/ui/assets/index-BR6gCrf6.js +318 -0
- package/dist/ui/assets/index-fz2_unLw.css +1 -0
- package/dist/ui/index.html +2 -2
- package/package.json +2 -13
- package/dist/ui/assets/index-CRtJwrzd.css +0 -1
- package/dist/ui/assets/index-DRPysmAa.js +0 -318
package/README.md
CHANGED
|
@@ -9,9 +9,7 @@ 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 (
|
|
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
|
|
12
|
+
- **CLI Commands (16)**: new, init, config, projects, setup, skills, agents, commands, migrate, doctor, versions, update, uninstall, watch, content, easter-egg
|
|
15
13
|
- **Web Dashboard**: Interactive React UI via `ck config ui` for configuration and project management
|
|
16
14
|
- **Hook Diagnostics Dashboard**: Inspect recent Claude hook activity and failures from `ck config` across global and project scopes
|
|
17
15
|
- **Projects Registry**: Centralized registry at `~/.claudekit/projects.json` with file locking
|
|
@@ -95,12 +93,6 @@ ck --help
|
|
|
95
93
|
# Open config dashboard immediately
|
|
96
94
|
ck config
|
|
97
95
|
|
|
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
|
-
|
|
104
96
|
# Expose the dashboard intentionally to your LAN/Tailscale
|
|
105
97
|
ck config --host 0.0.0.0 --no-open
|
|
106
98
|
|
|
@@ -110,7 +102,6 @@ ck skills --help
|
|
|
110
102
|
ck agents --help
|
|
111
103
|
ck commands --help
|
|
112
104
|
ck migrate --help
|
|
113
|
-
ck app --help
|
|
114
105
|
```
|
|
115
106
|
|
|
116
107
|
### Config Dashboard Access
|
|
@@ -302,7 +293,7 @@ ck doctor --verbose --fix
|
|
|
302
293
|
|
|
303
294
|
**Health Checks:**
|
|
304
295
|
- **System**: Node.js, npm, Python, pip, Claude CLI, git, gh CLI
|
|
305
|
-
- **ClaudeKit**: Global/project installation, versions, skills
|
|
296
|
+
- **ClaudeKit**: Global/project installation, versions, skills, skill listing budget, duplicate skill inventory
|
|
306
297
|
- **Auth**: GitHub CLI authentication, repository access
|
|
307
298
|
- **Project**: package.json, node_modules, lock files
|
|
308
299
|
- **Modules**: Dynamic skill dependency resolution
|
|
@@ -315,6 +306,9 @@ ck doctor --verbose --fix
|
|
|
315
306
|
| Corrupted node_modules | Reinstall dependencies |
|
|
316
307
|
| Missing global install | Run `ck init --global` |
|
|
317
308
|
| Missing skill deps | Install in skill directory |
|
|
309
|
+
| Missing/low Engineer skill listing budget | Ensure computed `skillListingBudgetFraction` and a valid ClaudeKit-recommended `skillListingMaxDescChars` ceiling in project settings |
|
|
310
|
+
|
|
311
|
+
`ck doctor` never writes `skillOverrides`, hides skills, or deletes duplicate skills automatically. It reports existing `skillOverrides` and inventory issues so all active project/global skills can stay user-invocable while listing pressure is managed through 200k-context-floor project settings and bounded descriptions.
|
|
318
312
|
|
|
319
313
|
**Exit Codes:**
|
|
320
314
|
- `0`: All checks pass or issues fixed
|
package/cli-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
3
|
-
"generatedAt": "2026-05-
|
|
2
|
+
"version": "4.0.0-dev.1",
|
|
3
|
+
"generatedAt": "2026-05-07T15:21:16.194Z",
|
|
4
4
|
"commands": {
|
|
5
5
|
"agents": {
|
|
6
6
|
"name": "agents",
|
|
@@ -577,58 +577,6 @@
|
|
|
577
577
|
}
|
|
578
578
|
]
|
|
579
579
|
},
|
|
580
|
-
"app": {
|
|
581
|
-
"name": "app",
|
|
582
|
-
"description": "Launch the ClaudeKit Control Center desktop app",
|
|
583
|
-
"usage": "ck app [options]",
|
|
584
|
-
"examples": [
|
|
585
|
-
{
|
|
586
|
-
"command": "ck app",
|
|
587
|
-
"description": "Launch the native desktop app, downloading it on first run"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"command": "ck app --web",
|
|
591
|
-
"description": "Open the existing web dashboard instead of the desktop app"
|
|
592
|
-
}
|
|
593
|
-
],
|
|
594
|
-
"optionGroups": [
|
|
595
|
-
{
|
|
596
|
-
"title": "Desktop Actions",
|
|
597
|
-
"options": [
|
|
598
|
-
{
|
|
599
|
-
"flags": "--web",
|
|
600
|
-
"description": "Open the browser dashboard instead of launching the desktop app"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"flags": "--update",
|
|
604
|
-
"description": "Install a newer desktop build before launch when one is available"
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"flags": "--path",
|
|
608
|
-
"description": "Print the installed path, or the target install path if absent"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"flags": "--uninstall",
|
|
612
|
-
"description": "Remove the installed desktop app and exit"
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
"flags": "--dev",
|
|
616
|
-
"description": "Force dev channel for this invocation"
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
"flags": "--stable",
|
|
620
|
-
"description": "Force stable channel for this invocation"
|
|
621
|
-
}
|
|
622
|
-
]
|
|
623
|
-
}
|
|
624
|
-
],
|
|
625
|
-
"sections": [
|
|
626
|
-
{
|
|
627
|
-
"title": "Notes",
|
|
628
|
-
"content": "`ck app` downloads the desktop app build for your platform when needed, then launches it. Use `ck config` when you need web-only dashboard flags such as `--host` or `--port`."
|
|
629
|
-
}
|
|
630
|
-
]
|
|
631
|
-
},
|
|
632
580
|
"backups": {
|
|
633
581
|
"name": "backups",
|
|
634
582
|
"description": "List, restore, and prune ClaudeKit recovery backups",
|
|
@@ -1105,6 +1053,12 @@
|
|
|
1105
1053
|
}
|
|
1106
1054
|
]
|
|
1107
1055
|
}
|
|
1056
|
+
],
|
|
1057
|
+
"sections": [
|
|
1058
|
+
{
|
|
1059
|
+
"title": "Engineer skill budget checks",
|
|
1060
|
+
"content": "`ck doctor` validates Claude Code skill listing settings for Engineer Kit projects, estimates active project/global skill listing pressure against a 200k context floor, reports descriptions over ClaudeKit's 512-char recommended cap, detects duplicate project/global skill names, reports existing `skillOverrides`, and warns when active project/global skills are explicitly not user-invocable. `ck doctor --fix` ensures the computed `skillListingBudgetFraction` and normalizes missing, invalid, or too-high `skillListingMaxDescChars` values to 512."
|
|
1061
|
+
}
|
|
1108
1062
|
]
|
|
1109
1063
|
},
|
|
1110
1064
|
"init": {
|