claudekit-cli 3.42.2 → 4.0.0-dev.10

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,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 (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
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
@@ -330,6 +324,7 @@ Remove ClaudeKit installations from your system:
330
324
  ck uninstall # Interactive mode - prompts for scope and confirmation
331
325
  ck uninstall --local # Uninstall only local installation (current project)
332
326
  ck uninstall --global # Uninstall only global installation (~/.claude/)
327
+ ck uninstall -g --kit marketing # Remove only global Marketing kit
333
328
  ck uninstall -l -y # Local only, skip confirmation
334
329
  ck uninstall -g -y # Global only, skip confirmation
335
330
  ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
@@ -340,7 +335,11 @@ ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
340
335
  - **Local only**: Remove from current project (`.claude/`)
341
336
  - **Global only**: Remove from user directory (`~/.claude/`)
342
337
  - **Both**: Remove all ClaudeKit installations
338
+ - When multiple kits are installed in the selected scope, interactive uninstall prompts for:
339
+ - **Marketing kit only** or **Engineer kit only**: Remove one kit and preserve the other
340
+ - **All ClaudeKit kits**: Remove the full selected installation scope
343
341
  - Use `--local` or `--global` flags to skip the prompt
342
+ - Use `--kit engineer` or `--kit marketing` to skip the kit prompt
344
343
 
345
344
  **What it does:**
346
345
  - Detects local `.claude` directory in current project
package/cli-manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "3.42.2",
3
- "generatedAt": "2026-04-28T17:31:58.552Z",
2
+ "version": "4.0.0-dev.10",
3
+ "generatedAt": "2026-05-11T02:47:50.969Z",
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",
@@ -728,7 +676,7 @@
728
676
  "examples": [
729
677
  {
730
678
  "command": "ck commands --name plan --agent codex",
731
- "description": "Install one slash command to Codex"
679
+ "description": "Install one command to Codex as a project skill"
732
680
  },
733
681
  {
734
682
  "command": "ck commands --list",
@@ -791,6 +739,12 @@
791
739
  }
792
740
  ]
793
741
  }
742
+ ],
743
+ "sections": [
744
+ {
745
+ "title": "Codex Scope Note",
746
+ "content": "Codex imports external commands as skills. Project installs write `.agents/skills/source-command-*/SKILL.md`; `--global` writes `~/.agents/skills/source-command-*/SKILL.md`."
747
+ }
794
748
  ]
795
749
  },
796
750
  "config": {
@@ -1105,6 +1059,12 @@
1105
1059
  }
1106
1060
  ]
1107
1061
  }
1062
+ ],
1063
+ "sections": [
1064
+ {
1065
+ "title": "Engineer skill budget checks",
1066
+ "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."
1067
+ }
1108
1068
  ]
1109
1069
  },
1110
1070
  "init": {
@@ -1320,6 +1280,18 @@
1320
1280
  {
1321
1281
  "title": "Content Selection",
1322
1282
  "options": [
1283
+ {
1284
+ "flags": "--only-agents",
1285
+ "description": "Migrate agents only"
1286
+ },
1287
+ {
1288
+ "flags": "--only-commands",
1289
+ "description": "Migrate commands only"
1290
+ },
1291
+ {
1292
+ "flags": "--only-skills",
1293
+ "description": "Migrate skills only"
1294
+ },
1323
1295
  {
1324
1296
  "flags": "--config",
1325
1297
  "description": "Migrate CLAUDE.md config only"
@@ -1332,6 +1304,18 @@
1332
1304
  "flags": "--hooks",
1333
1305
  "description": "Migrate .claude/hooks only"
1334
1306
  },
1307
+ {
1308
+ "flags": "--skip-agents",
1309
+ "description": "Skip agents migration"
1310
+ },
1311
+ {
1312
+ "flags": "--skip-commands",
1313
+ "description": "Skip commands migration"
1314
+ },
1315
+ {
1316
+ "flags": "--skip-skills",
1317
+ "description": "Skip skills migration (preserve symlinks/custom layouts)"
1318
+ },
1335
1319
  {
1336
1320
  "flags": "--skip-config",
1337
1321
  "description": "Skip config migration"
@@ -1354,7 +1338,7 @@
1354
1338
  "sections": [
1355
1339
  {
1356
1340
  "title": "Gotchas",
1357
- "content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic"
1341
+ "content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic\n Codex commands migrate as skills: project scope writes .agents/skills, global scope writes ~/.agents/skills"
1358
1342
  }
1359
1343
  ]
1360
1344
  },
@@ -1944,6 +1928,10 @@
1944
1928
  "description": "Remove ClaudeKit installations (ownership-aware)",
1945
1929
  "usage": "ck uninstall [options]",
1946
1930
  "examples": [
1931
+ {
1932
+ "command": "ck uninstall --global --kit marketing",
1933
+ "description": "Remove only the global Marketing kit and preserve Engineer"
1934
+ },
1947
1935
  {
1948
1936
  "command": "ck uninstall --local --yes",
1949
1937
  "description": "Remove local installation without confirmation"