claudekit-cli 3.42.1 → 3.42.2-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
package/cli-manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "3.42.1",
3
- "generatedAt": "2026-04-28T16:11:23.449Z",
2
+ "version": "3.42.2-dev.10",
3
+ "generatedAt": "2026-05-04T18:54:15.233Z",
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",
@@ -1320,6 +1268,18 @@
1320
1268
  {
1321
1269
  "title": "Content Selection",
1322
1270
  "options": [
1271
+ {
1272
+ "flags": "--only-agents",
1273
+ "description": "Migrate agents only"
1274
+ },
1275
+ {
1276
+ "flags": "--only-commands",
1277
+ "description": "Migrate commands only"
1278
+ },
1279
+ {
1280
+ "flags": "--only-skills",
1281
+ "description": "Migrate skills only"
1282
+ },
1323
1283
  {
1324
1284
  "flags": "--config",
1325
1285
  "description": "Migrate CLAUDE.md config only"
@@ -1332,6 +1292,18 @@
1332
1292
  "flags": "--hooks",
1333
1293
  "description": "Migrate .claude/hooks only"
1334
1294
  },
1295
+ {
1296
+ "flags": "--skip-agents",
1297
+ "description": "Skip agents migration"
1298
+ },
1299
+ {
1300
+ "flags": "--skip-commands",
1301
+ "description": "Skip commands migration"
1302
+ },
1303
+ {
1304
+ "flags": "--skip-skills",
1305
+ "description": "Skip skills migration (preserve symlinks/custom layouts)"
1306
+ },
1335
1307
  {
1336
1308
  "flags": "--skip-config",
1337
1309
  "description": "Skip config migration"