claudekit-cli 3.41.4-dev.5 → 3.41.4-dev.50

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.
@@ -0,0 +1,2155 @@
1
+ {
2
+ "version": "3.41.4-dev.50",
3
+ "generatedAt": "2026-04-24T15:26:38.683Z",
4
+ "commands": {
5
+ "agents": {
6
+ "name": "agents",
7
+ "description": "Install, uninstall, and manage Claude Code agents across providers",
8
+ "usage": "ck agents [options]",
9
+ "examples": [
10
+ {
11
+ "command": "ck agents --name maintainer --agent codex",
12
+ "description": "Install one agent to Codex"
13
+ },
14
+ {
15
+ "command": "ck agents --list --installed",
16
+ "description": "Show installed agents and locations"
17
+ }
18
+ ],
19
+ "optionGroups": [
20
+ {
21
+ "title": "Mode Options",
22
+ "options": [
23
+ {
24
+ "flags": "-l, --list",
25
+ "description": "List available agents from source"
26
+ },
27
+ {
28
+ "flags": "--installed",
29
+ "description": "When used with --list, show installed agents instead"
30
+ },
31
+ {
32
+ "flags": "-u, --uninstall",
33
+ "description": "Uninstall agent(s) from providers"
34
+ },
35
+ {
36
+ "flags": "--sync",
37
+ "description": "Sync registry with filesystem (clean orphaned entries)"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "title": "Installation Options",
43
+ "options": [
44
+ {
45
+ "flags": "-n, --name <agent>",
46
+ "description": "Agent name to install or uninstall"
47
+ },
48
+ {
49
+ "flags": "-a, --agent <provider>",
50
+ "description": "Target provider(s), can be specified multiple times"
51
+ },
52
+ {
53
+ "flags": "-g, --global",
54
+ "description": "Install globally instead of project-level"
55
+ },
56
+ {
57
+ "flags": "--all",
58
+ "description": "Install to all supported providers"
59
+ },
60
+ {
61
+ "flags": "-y, --yes",
62
+ "description": "Skip confirmation prompts"
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "title": "Uninstall Options",
68
+ "options": [
69
+ {
70
+ "flags": "--force",
71
+ "description": "Force uninstall even if not tracked in registry"
72
+ }
73
+ ]
74
+ }
75
+ ]
76
+ },
77
+ "api": {
78
+ "name": "api",
79
+ "description": "Interact with ClaudeKit API and proxy services",
80
+ "usage": "ck api [action] [service] [path] [options]",
81
+ "examples": [
82
+ {
83
+ "command": "ck api status",
84
+ "description": "Validate your API key and check rate limit status"
85
+ },
86
+ {
87
+ "command": "ck api vidcap summary https://youtu.be/abc123",
88
+ "description": "Generate an AI summary of a YouTube video"
89
+ }
90
+ ],
91
+ "optionGroups": [
92
+ {
93
+ "title": "Output Options",
94
+ "options": [
95
+ {
96
+ "flags": "--json",
97
+ "description": "Output raw JSON instead of formatted display"
98
+ }
99
+ ]
100
+ }
101
+ ],
102
+ "subcommands": [
103
+ {
104
+ "name": "status",
105
+ "description": "Validate API key and check rate limit",
106
+ "usage": "ck api status [--json]",
107
+ "examples": [],
108
+ "optionGroups": [
109
+ {
110
+ "title": "Output Options",
111
+ "options": [
112
+ {
113
+ "flags": "--json",
114
+ "description": "Output raw JSON instead of formatted display"
115
+ }
116
+ ]
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ "name": "services",
122
+ "description": "List available proxy services",
123
+ "usage": "ck api services [--json]",
124
+ "examples": [],
125
+ "optionGroups": [
126
+ {
127
+ "title": "Output Options",
128
+ "options": [
129
+ {
130
+ "flags": "--json",
131
+ "description": "Output raw JSON instead of formatted display"
132
+ }
133
+ ]
134
+ }
135
+ ]
136
+ },
137
+ {
138
+ "name": "setup",
139
+ "description": "Configure and store your ClaudeKit API key",
140
+ "usage": "ck api setup [--key <key>] [--force] [--json]",
141
+ "examples": [],
142
+ "optionGroups": [
143
+ {
144
+ "title": "Setup Options",
145
+ "options": [
146
+ {
147
+ "flags": "--key <key>",
148
+ "description": "API key to store"
149
+ },
150
+ {
151
+ "flags": "--force",
152
+ "description": "Force re-setup even if key already exists"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "title": "Output Options",
158
+ "options": [
159
+ {
160
+ "flags": "--json",
161
+ "description": "Output raw JSON instead of formatted display"
162
+ }
163
+ ]
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "proxy",
169
+ "description": "Generic HTTP proxy to any ClaudeKit-backed service",
170
+ "usage": "ck api proxy <service> <path> [options]",
171
+ "examples": [],
172
+ "optionGroups": [
173
+ {
174
+ "title": "Proxy Options",
175
+ "options": [
176
+ {
177
+ "flags": "--method <method>",
178
+ "description": "HTTP method for the request",
179
+ "defaultValue": "GET"
180
+ },
181
+ {
182
+ "flags": "--body <json>",
183
+ "description": "Request body as JSON string"
184
+ },
185
+ {
186
+ "flags": "--query <json>",
187
+ "description": "Query params as JSON string"
188
+ }
189
+ ]
190
+ },
191
+ {
192
+ "title": "Output Options",
193
+ "options": [
194
+ {
195
+ "flags": "--json",
196
+ "description": "Output raw JSON instead of formatted display"
197
+ }
198
+ ]
199
+ }
200
+ ]
201
+ },
202
+ {
203
+ "name": "vidcap",
204
+ "description": "Video metadata and AI processing via YouTube",
205
+ "usage": "ck api vidcap <action> <url|query>",
206
+ "examples": [],
207
+ "optionGroups": [
208
+ {
209
+ "title": "Vidcap Options",
210
+ "options": [
211
+ {
212
+ "flags": "--locale <locale>",
213
+ "description": "Locale for summary/caption output",
214
+ "defaultValue": "en"
215
+ },
216
+ {
217
+ "flags": "--max-results <n>",
218
+ "description": "Max results for search action"
219
+ },
220
+ {
221
+ "flags": "--second <s>",
222
+ "description": "Timestamp in seconds for screenshot action"
223
+ },
224
+ {
225
+ "flags": "--order <order>",
226
+ "description": "Sort order for comments (time/relevance)"
227
+ }
228
+ ]
229
+ },
230
+ {
231
+ "title": "Output Options",
232
+ "options": [
233
+ {
234
+ "flags": "--json",
235
+ "description": "Output raw JSON instead of formatted display"
236
+ }
237
+ ]
238
+ }
239
+ ],
240
+ "subcommands": [
241
+ {
242
+ "name": "info",
243
+ "description": "Fetch video metadata (title, duration, channel)",
244
+ "usage": "ck api vidcap info <url>",
245
+ "examples": [],
246
+ "optionGroups": [
247
+ {
248
+ "title": "Output Options",
249
+ "options": [
250
+ {
251
+ "flags": "--json",
252
+ "description": "Output raw JSON"
253
+ }
254
+ ]
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "name": "search",
260
+ "description": "Search YouTube for videos matching a query",
261
+ "usage": "ck api vidcap search <query>",
262
+ "examples": [],
263
+ "optionGroups": [
264
+ {
265
+ "title": "Search Options",
266
+ "options": [
267
+ {
268
+ "flags": "--max-results <n>",
269
+ "description": "Maximum number of results"
270
+ }
271
+ ]
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "name": "summary",
277
+ "description": "Generate an AI summary of a video",
278
+ "usage": "ck api vidcap summary <url>",
279
+ "examples": [],
280
+ "optionGroups": [
281
+ {
282
+ "title": "Summary Options",
283
+ "options": [
284
+ {
285
+ "flags": "--locale <locale>",
286
+ "description": "Locale for summary text",
287
+ "defaultValue": "en"
288
+ }
289
+ ]
290
+ }
291
+ ]
292
+ },
293
+ {
294
+ "name": "caption",
295
+ "description": "Extract captions/transcript from a video",
296
+ "usage": "ck api vidcap caption <url>",
297
+ "examples": [],
298
+ "optionGroups": [
299
+ {
300
+ "title": "Caption Options",
301
+ "options": [
302
+ {
303
+ "flags": "--locale <locale>",
304
+ "description": "Locale for caption text",
305
+ "defaultValue": "en"
306
+ }
307
+ ]
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "name": "screenshot",
313
+ "description": "Capture a frame from a video at a specific timestamp",
314
+ "usage": "ck api vidcap screenshot <url>",
315
+ "examples": [],
316
+ "optionGroups": [
317
+ {
318
+ "title": "Screenshot Options",
319
+ "options": [
320
+ {
321
+ "flags": "--second <s>",
322
+ "description": "Timestamp in seconds"
323
+ }
324
+ ]
325
+ }
326
+ ]
327
+ },
328
+ {
329
+ "name": "comments",
330
+ "description": "Fetch comments for a video",
331
+ "usage": "ck api vidcap comments <url>",
332
+ "examples": [],
333
+ "optionGroups": [
334
+ {
335
+ "title": "Comment Options",
336
+ "options": [
337
+ {
338
+ "flags": "--order <order>",
339
+ "description": "Sort order: time or relevance"
340
+ },
341
+ {
342
+ "flags": "--max-results <n>",
343
+ "description": "Maximum number of comments"
344
+ }
345
+ ]
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "name": "media",
351
+ "description": "Download media or extract media URLs from a video",
352
+ "usage": "ck api vidcap media <url>",
353
+ "examples": [],
354
+ "optionGroups": [
355
+ {
356
+ "title": "Output Options",
357
+ "options": [
358
+ {
359
+ "flags": "--json",
360
+ "description": "Output raw JSON"
361
+ }
362
+ ]
363
+ }
364
+ ]
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "name": "reviewweb",
370
+ "description": "Web scraping and SEO analysis via the ClaudeKit proxy",
371
+ "usage": "ck api reviewweb <action> <url|domain|keyword>",
372
+ "examples": [],
373
+ "optionGroups": [
374
+ {
375
+ "title": "Review Options",
376
+ "options": [
377
+ {
378
+ "flags": "--format <fmt>",
379
+ "description": "Summary format: bullet or paragraph"
380
+ },
381
+ {
382
+ "flags": "--max-length <n>",
383
+ "description": "Maximum summary length in characters"
384
+ },
385
+ {
386
+ "flags": "--instructions <text>",
387
+ "description": "Extraction instructions (extract action)"
388
+ },
389
+ {
390
+ "flags": "--template <json>",
391
+ "description": "JSON template for structured extraction"
392
+ },
393
+ {
394
+ "flags": "--type <type>",
395
+ "description": "Link type filter: web/image/file/all"
396
+ },
397
+ {
398
+ "flags": "--country <code>",
399
+ "description": "Country code for SEO commands"
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "title": "Output Options",
405
+ "options": [
406
+ {
407
+ "flags": "--json",
408
+ "description": "Output raw JSON instead of formatted display"
409
+ }
410
+ ]
411
+ }
412
+ ],
413
+ "subcommands": [
414
+ {
415
+ "name": "scrape",
416
+ "description": "Scrape raw HTML content from a URL",
417
+ "usage": "ck api reviewweb scrape <url>",
418
+ "examples": [],
419
+ "optionGroups": [
420
+ {
421
+ "title": "Output Options",
422
+ "options": [
423
+ {
424
+ "flags": "--json",
425
+ "description": "Output raw JSON"
426
+ }
427
+ ]
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "name": "summarize",
433
+ "description": "AI-generated summary of a web page",
434
+ "usage": "ck api reviewweb summarize <url>",
435
+ "examples": [],
436
+ "optionGroups": [
437
+ {
438
+ "title": "Summary Options",
439
+ "options": [
440
+ {
441
+ "flags": "--format <fmt>",
442
+ "description": "Output format: bullet or paragraph"
443
+ },
444
+ {
445
+ "flags": "--max-length <n>",
446
+ "description": "Maximum length in characters"
447
+ }
448
+ ]
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "name": "markdown",
454
+ "description": "Convert a web page to clean Markdown",
455
+ "usage": "ck api reviewweb markdown <url>",
456
+ "examples": [],
457
+ "optionGroups": [
458
+ {
459
+ "title": "Output Options",
460
+ "options": [
461
+ {
462
+ "flags": "--json",
463
+ "description": "Output raw JSON"
464
+ }
465
+ ]
466
+ }
467
+ ]
468
+ },
469
+ {
470
+ "name": "extract",
471
+ "description": "Extract structured data from a web page",
472
+ "usage": "ck api reviewweb extract <url>",
473
+ "examples": [],
474
+ "optionGroups": [
475
+ {
476
+ "title": "Extraction Options",
477
+ "options": [
478
+ {
479
+ "flags": "--instructions <text>",
480
+ "description": "Extraction instructions"
481
+ },
482
+ {
483
+ "flags": "--template <json>",
484
+ "description": "JSON template for output shape"
485
+ }
486
+ ]
487
+ }
488
+ ]
489
+ },
490
+ {
491
+ "name": "links",
492
+ "description": "Extract all links from a web page",
493
+ "usage": "ck api reviewweb links <url>",
494
+ "examples": [],
495
+ "optionGroups": [
496
+ {
497
+ "title": "Filter Options",
498
+ "options": [
499
+ {
500
+ "flags": "--type <type>",
501
+ "description": "Link type: web/image/file/all",
502
+ "defaultValue": "all"
503
+ }
504
+ ]
505
+ }
506
+ ]
507
+ },
508
+ {
509
+ "name": "screenshot",
510
+ "description": "Capture a screenshot of a web page",
511
+ "usage": "ck api reviewweb screenshot <url>",
512
+ "examples": [],
513
+ "optionGroups": [
514
+ {
515
+ "title": "Output Options",
516
+ "options": [
517
+ {
518
+ "flags": "--json",
519
+ "description": "Output raw JSON"
520
+ }
521
+ ]
522
+ }
523
+ ]
524
+ },
525
+ {
526
+ "name": "seo-traffic",
527
+ "description": "Fetch estimated organic traffic data for a domain",
528
+ "usage": "ck api reviewweb seo-traffic <domain>",
529
+ "examples": [],
530
+ "optionGroups": [
531
+ {
532
+ "title": "SEO Options",
533
+ "options": [
534
+ {
535
+ "flags": "--country <code>",
536
+ "description": "Country code for traffic data"
537
+ }
538
+ ]
539
+ }
540
+ ]
541
+ },
542
+ {
543
+ "name": "seo-keywords",
544
+ "description": "Fetch top SEO keywords for a domain or keyword",
545
+ "usage": "ck api reviewweb seo-keywords <domain|keyword>",
546
+ "examples": [],
547
+ "optionGroups": [
548
+ {
549
+ "title": "SEO Options",
550
+ "options": [
551
+ {
552
+ "flags": "--country <code>",
553
+ "description": "Country code for keyword data"
554
+ }
555
+ ]
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "name": "seo-backlinks",
561
+ "description": "Fetch backlink profile for a domain",
562
+ "usage": "ck api reviewweb seo-backlinks <domain>",
563
+ "examples": [],
564
+ "optionGroups": [
565
+ {
566
+ "title": "SEO Options",
567
+ "options": [
568
+ {
569
+ "flags": "--country <code>",
570
+ "description": "Country code for backlink data"
571
+ }
572
+ ]
573
+ }
574
+ ]
575
+ }
576
+ ]
577
+ }
578
+ ]
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
+ "backups": {
633
+ "name": "backups",
634
+ "description": "List, restore, and prune ClaudeKit recovery backups",
635
+ "usage": "ck backups <list|restore|prune> [options]",
636
+ "examples": [
637
+ {
638
+ "command": "ck backups list --limit 5",
639
+ "description": "Show the newest five recovery backups"
640
+ },
641
+ {
642
+ "command": "ck backups restore 2026-04-06T21-53-01-706-byrf --yes",
643
+ "description": "Restore a specific recovery backup without prompting"
644
+ }
645
+ ],
646
+ "optionGroups": [
647
+ {
648
+ "title": "Subcommands",
649
+ "options": [
650
+ {
651
+ "flags": "list [--limit <n>] [--json]",
652
+ "description": "List recovery backups under ~/.claudekit/backups/"
653
+ },
654
+ {
655
+ "flags": "restore <id> [--yes] [--json]",
656
+ "description": "Restore a specific recovery backup to its original source root"
657
+ },
658
+ {
659
+ "flags": "prune [id] [--keep <n> | --all] [--yes] [--json]",
660
+ "description": "Delete one, many, or old recovery backups"
661
+ }
662
+ ]
663
+ },
664
+ {
665
+ "title": "Shared Options",
666
+ "options": [
667
+ {
668
+ "flags": "--limit <n>",
669
+ "description": "Show only the newest N backups"
670
+ },
671
+ {
672
+ "flags": "--keep <n>",
673
+ "description": "Keep the newest N backups when pruning"
674
+ },
675
+ {
676
+ "flags": "--all",
677
+ "description": "Delete all recovery backups"
678
+ },
679
+ {
680
+ "flags": "-y, --yes",
681
+ "description": "Skip confirmation prompts"
682
+ },
683
+ {
684
+ "flags": "--json",
685
+ "description": "Output machine-readable JSON"
686
+ }
687
+ ]
688
+ }
689
+ ],
690
+ "subcommands": [
691
+ {
692
+ "name": "list",
693
+ "description": "List recovery backups under ~/.claudekit/backups/",
694
+ "usage": "ck backups list [--limit <n>] [--json]",
695
+ "examples": [],
696
+ "optionGroups": []
697
+ },
698
+ {
699
+ "name": "restore",
700
+ "description": "Restore a specific recovery backup to its original source root",
701
+ "usage": "ck backups restore <id> [--yes] [--json]",
702
+ "examples": [],
703
+ "optionGroups": []
704
+ },
705
+ {
706
+ "name": "prune",
707
+ "description": "Delete one, many, or old recovery backups",
708
+ "usage": "ck backups prune [id] [--keep <n> | --all] [--yes] [--json]",
709
+ "examples": [],
710
+ "optionGroups": []
711
+ }
712
+ ],
713
+ "sections": [
714
+ {
715
+ "title": "Backup Scope",
716
+ "content": "These backups contain only the ClaudeKit-managed files targeted by destructive operations, not the full ~/.claude/ directory."
717
+ },
718
+ {
719
+ "title": "Automatic Retention",
720
+ "content": "ClaudeKit keeps the newest recovery backups automatically and prunes older ones after successful destructive operations."
721
+ }
722
+ ]
723
+ },
724
+ "commands": {
725
+ "name": "commands",
726
+ "description": "Install, uninstall, and manage Claude commands across providers",
727
+ "usage": "ck commands [options]",
728
+ "examples": [
729
+ {
730
+ "command": "ck commands --name plan --agent codex",
731
+ "description": "Install one slash command to Codex"
732
+ },
733
+ {
734
+ "command": "ck commands --list",
735
+ "description": "List available commands from source"
736
+ }
737
+ ],
738
+ "optionGroups": [
739
+ {
740
+ "title": "Mode Options",
741
+ "options": [
742
+ {
743
+ "flags": "-l, --list",
744
+ "description": "List available commands from source"
745
+ },
746
+ {
747
+ "flags": "--installed",
748
+ "description": "When used with --list, show installed commands instead"
749
+ },
750
+ {
751
+ "flags": "-u, --uninstall",
752
+ "description": "Uninstall command(s) from providers"
753
+ },
754
+ {
755
+ "flags": "--sync",
756
+ "description": "Sync registry with filesystem (clean orphaned entries)"
757
+ }
758
+ ]
759
+ },
760
+ {
761
+ "title": "Installation Options",
762
+ "options": [
763
+ {
764
+ "flags": "-n, --name <command>",
765
+ "description": "Command name to install or uninstall"
766
+ },
767
+ {
768
+ "flags": "-a, --agent <provider>",
769
+ "description": "Target provider(s), can be specified multiple times"
770
+ },
771
+ {
772
+ "flags": "-g, --global",
773
+ "description": "Install globally instead of project-level"
774
+ },
775
+ {
776
+ "flags": "--all",
777
+ "description": "Install to all supported providers"
778
+ },
779
+ {
780
+ "flags": "-y, --yes",
781
+ "description": "Skip confirmation prompts"
782
+ }
783
+ ]
784
+ },
785
+ {
786
+ "title": "Uninstall Options",
787
+ "options": [
788
+ {
789
+ "flags": "--force",
790
+ "description": "Force uninstall even if not tracked in registry"
791
+ }
792
+ ]
793
+ }
794
+ ]
795
+ },
796
+ "config": {
797
+ "name": "config",
798
+ "description": "Manage ClaudeKit configuration and launch the config dashboard",
799
+ "usage": "ck config [action] [key] [value] [options]",
800
+ "examples": [
801
+ {
802
+ "command": "ck config",
803
+ "description": "Launch the web dashboard (same as 'ck config ui')"
804
+ },
805
+ {
806
+ "command": "ck config --host 0.0.0.0 --no-open",
807
+ "description": "Expose the dashboard to your network intentionally"
808
+ },
809
+ {
810
+ "command": "ck config set defaults.kit engineer",
811
+ "description": "Set a config value from the CLI"
812
+ }
813
+ ],
814
+ "optionGroups": [
815
+ {
816
+ "title": "Actions",
817
+ "options": [
818
+ {
819
+ "flags": "ui",
820
+ "description": "Launch config dashboard (default action when omitted)"
821
+ },
822
+ {
823
+ "flags": "get <key>",
824
+ "description": "Read a config value"
825
+ },
826
+ {
827
+ "flags": "set <key> <value>",
828
+ "description": "Write a config value"
829
+ },
830
+ {
831
+ "flags": "show",
832
+ "description": "Print merged config"
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "title": "Scope Options",
838
+ "options": [
839
+ {
840
+ "flags": "-g, --global",
841
+ "description": "Use global config (~/.claudekit/config.json)"
842
+ },
843
+ {
844
+ "flags": "-l, --local",
845
+ "description": "Use local config (.claude/.ck.json)"
846
+ }
847
+ ]
848
+ },
849
+ {
850
+ "title": "Dashboard Options",
851
+ "options": [
852
+ {
853
+ "flags": "--port <port>",
854
+ "description": "Port for dashboard server"
855
+ },
856
+ {
857
+ "flags": "--host <host>",
858
+ "description": "Bind dashboard host (default: 127.0.0.1)"
859
+ },
860
+ {
861
+ "flags": "--no-open",
862
+ "description": "Do not auto-open browser when launching dashboard"
863
+ },
864
+ {
865
+ "flags": "--dev",
866
+ "description": "Run dashboard in development mode with HMR"
867
+ }
868
+ ]
869
+ },
870
+ {
871
+ "title": "Output Options",
872
+ "options": [
873
+ {
874
+ "flags": "--json",
875
+ "description": "Output machine-readable JSON for CLI actions"
876
+ }
877
+ ]
878
+ }
879
+ ],
880
+ "subcommands": [
881
+ {
882
+ "name": "ui",
883
+ "description": "Launch config dashboard (default action when omitted)",
884
+ "usage": "ck config ui [--port <port>] [--host <host>] [--no-open] [--dev]",
885
+ "examples": [],
886
+ "optionGroups": []
887
+ },
888
+ {
889
+ "name": "get",
890
+ "description": "Read a config value",
891
+ "usage": "ck config get <key> [-g | -l] [--json]",
892
+ "examples": [],
893
+ "optionGroups": []
894
+ },
895
+ {
896
+ "name": "set",
897
+ "description": "Write a config value",
898
+ "usage": "ck config set <key> <value> [-g | -l]",
899
+ "examples": [],
900
+ "optionGroups": []
901
+ },
902
+ {
903
+ "name": "show",
904
+ "description": "Print merged config",
905
+ "usage": "ck config show [-g | -l] [--json]",
906
+ "examples": [],
907
+ "optionGroups": []
908
+ }
909
+ ],
910
+ "sections": [
911
+ {
912
+ "title": "Notes",
913
+ "content": "Run 'ck config --help' to see both CLI actions and dashboard flags. Running bare 'ck config' opens the dashboard directly. Use '--host' to expose the dashboard intentionally beyond localhost."
914
+ }
915
+ ]
916
+ },
917
+ "content": {
918
+ "name": "content",
919
+ "description": "Multi-channel content automation engine",
920
+ "usage": "ck content [action] [id] [options]",
921
+ "examples": [
922
+ {
923
+ "command": "ck content start",
924
+ "description": "Start the content daemon (default action)"
925
+ },
926
+ {
927
+ "command": "ck content setup",
928
+ "description": "Interactive configuration wizard"
929
+ },
930
+ {
931
+ "command": "ck content queue",
932
+ "description": "List pending content items for review"
933
+ }
934
+ ],
935
+ "optionGroups": [
936
+ {
937
+ "title": "Actions",
938
+ "options": [
939
+ {
940
+ "flags": "start",
941
+ "description": "Start the content daemon (default when no action specified)"
942
+ },
943
+ {
944
+ "flags": "stop",
945
+ "description": "Stop the running content daemon"
946
+ },
947
+ {
948
+ "flags": "status",
949
+ "description": "Show daemon status and recent activity"
950
+ },
951
+ {
952
+ "flags": "logs",
953
+ "description": "View content daemon logs"
954
+ },
955
+ {
956
+ "flags": "setup",
957
+ "description": "Interactive configuration wizard"
958
+ },
959
+ {
960
+ "flags": "queue",
961
+ "description": "List pending content items"
962
+ },
963
+ {
964
+ "flags": "approve <id>",
965
+ "description": "Approve a content item for publishing"
966
+ },
967
+ {
968
+ "flags": "reject <id>",
969
+ "description": "Reject a content item"
970
+ }
971
+ ]
972
+ },
973
+ {
974
+ "title": "Options",
975
+ "options": [
976
+ {
977
+ "flags": "--dry-run",
978
+ "description": "Generate content without publishing"
979
+ },
980
+ {
981
+ "flags": "--verbose",
982
+ "description": "Enable verbose logging"
983
+ },
984
+ {
985
+ "flags": "--force",
986
+ "description": "Kill existing process and start fresh"
987
+ },
988
+ {
989
+ "flags": "--tail",
990
+ "description": "Follow log output in real-time (for logs action)"
991
+ },
992
+ {
993
+ "flags": "--reason <reason>",
994
+ "description": "Rejection reason (for reject action)"
995
+ }
996
+ ]
997
+ }
998
+ ],
999
+ "subcommands": [
1000
+ {
1001
+ "name": "start",
1002
+ "description": "Start the content daemon (default when no action specified)",
1003
+ "usage": "ck content start",
1004
+ "examples": [],
1005
+ "optionGroups": []
1006
+ },
1007
+ {
1008
+ "name": "stop",
1009
+ "description": "Stop the running content daemon",
1010
+ "usage": "ck content stop",
1011
+ "examples": [],
1012
+ "optionGroups": []
1013
+ },
1014
+ {
1015
+ "name": "status",
1016
+ "description": "Show daemon status and recent activity",
1017
+ "usage": "ck content status",
1018
+ "examples": [],
1019
+ "optionGroups": []
1020
+ },
1021
+ {
1022
+ "name": "logs",
1023
+ "description": "View content daemon logs",
1024
+ "usage": "ck content logs [--tail]",
1025
+ "examples": [],
1026
+ "optionGroups": []
1027
+ },
1028
+ {
1029
+ "name": "setup",
1030
+ "description": "Interactive configuration wizard",
1031
+ "usage": "ck content setup",
1032
+ "examples": [],
1033
+ "optionGroups": []
1034
+ },
1035
+ {
1036
+ "name": "queue",
1037
+ "description": "List pending content items",
1038
+ "usage": "ck content queue",
1039
+ "examples": [],
1040
+ "optionGroups": []
1041
+ },
1042
+ {
1043
+ "name": "approve",
1044
+ "description": "Approve a content item for publishing",
1045
+ "usage": "ck content approve <id>",
1046
+ "examples": [],
1047
+ "optionGroups": []
1048
+ },
1049
+ {
1050
+ "name": "reject",
1051
+ "description": "Reject a content item",
1052
+ "usage": "ck content reject <id> [--reason <reason>]",
1053
+ "examples": [],
1054
+ "optionGroups": []
1055
+ }
1056
+ ],
1057
+ "sections": [
1058
+ {
1059
+ "title": "Notes",
1060
+ "content": "Requires content config in .ck.json. Run 'ck content setup' for guided configuration. Review mode can be 'auto' or 'manual' (default: manual)."
1061
+ }
1062
+ ]
1063
+ },
1064
+ "doctor": {
1065
+ "name": "doctor",
1066
+ "description": "Comprehensive health check for ClaudeKit",
1067
+ "usage": "ck doctor [options]",
1068
+ "examples": [
1069
+ {
1070
+ "command": "ck doctor",
1071
+ "description": "Run full health check interactively"
1072
+ },
1073
+ {
1074
+ "command": "ck doctor --fix",
1075
+ "description": "Auto-fix all fixable issues"
1076
+ },
1077
+ {
1078
+ "command": "ck doctor --check-only",
1079
+ "description": "CI mode: exit 1 on failures, no prompts"
1080
+ }
1081
+ ],
1082
+ "optionGroups": [
1083
+ {
1084
+ "title": "Options",
1085
+ "options": [
1086
+ {
1087
+ "flags": "--report",
1088
+ "description": "Generate shareable diagnostic report"
1089
+ },
1090
+ {
1091
+ "flags": "--fix",
1092
+ "description": "Auto-fix all fixable issues"
1093
+ },
1094
+ {
1095
+ "flags": "--check-only",
1096
+ "description": "CI mode: no prompts, exit 1 on failures"
1097
+ },
1098
+ {
1099
+ "flags": "--full",
1100
+ "description": "Include extended priority checks (slower but more thorough)"
1101
+ },
1102
+ {
1103
+ "flags": "--json",
1104
+ "description": "Output JSON format"
1105
+ }
1106
+ ]
1107
+ }
1108
+ ]
1109
+ },
1110
+ "init": {
1111
+ "name": "init",
1112
+ "description": "Initialize or update ClaudeKit project (with interactive version selection)",
1113
+ "usage": "ck init [options]",
1114
+ "examples": [
1115
+ {
1116
+ "command": "ck init --kit engineer",
1117
+ "description": "Update local project with latest engineer kit"
1118
+ },
1119
+ {
1120
+ "command": "ck init --use-git --release v2.1.0 -y",
1121
+ "description": "Non-interactive with git clone (no GitHub API needed)"
1122
+ }
1123
+ ],
1124
+ "optionGroups": [
1125
+ {
1126
+ "title": "Mode Options",
1127
+ "options": [
1128
+ {
1129
+ "flags": "-y, --yes",
1130
+ "description": "Non-interactive mode with sensible defaults (kit: engineer, dir: ., version: latest)"
1131
+ },
1132
+ {
1133
+ "flags": "--use-git",
1134
+ "description": "Use git clone instead of GitHub API (uses SSH/HTTPS credentials)"
1135
+ },
1136
+ {
1137
+ "flags": "--sync",
1138
+ "description": "Sync config files from upstream with interactive hunk-by-hunk merge"
1139
+ },
1140
+ {
1141
+ "flags": "--archive <path>",
1142
+ "description": "Use local archive file instead of downloading (zip/tar.gz)"
1143
+ },
1144
+ {
1145
+ "flags": "--kit-path <path>",
1146
+ "description": "Use local kit directory instead of downloading"
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "title": "Project Options",
1152
+ "options": [
1153
+ {
1154
+ "flags": "--dir <directory>",
1155
+ "description": "Target directory to initialize/update",
1156
+ "defaultValue": "."
1157
+ },
1158
+ {
1159
+ "flags": "--kit <kit>",
1160
+ "description": "Kit to use (engineer, marketing)"
1161
+ },
1162
+ {
1163
+ "flags": "-r, --release <version>",
1164
+ "description": "Skip version selection, use specific version"
1165
+ },
1166
+ {
1167
+ "flags": "-g, --global",
1168
+ "description": "Use platform-specific user configuration directory"
1169
+ },
1170
+ {
1171
+ "flags": "--fresh",
1172
+ "description": "Full reset: remove CK files, replace settings.json and CLAUDE.md, reinstall from scratch"
1173
+ },
1174
+ {
1175
+ "flags": "--force",
1176
+ "description": "Force reinstall even if already at latest version (use with --yes; re-onboards missing files without full reset)"
1177
+ }
1178
+ ]
1179
+ },
1180
+ {
1181
+ "title": "Filter Options",
1182
+ "options": [
1183
+ {
1184
+ "flags": "--exclude <pattern>",
1185
+ "description": "Exclude files matching glob pattern (can be used multiple times)"
1186
+ },
1187
+ {
1188
+ "flags": "--only <pattern>",
1189
+ "description": "Include only files matching glob pattern (can be used multiple times)"
1190
+ },
1191
+ {
1192
+ "flags": "--beta",
1193
+ "description": "Show beta versions in selection prompt"
1194
+ },
1195
+ {
1196
+ "flags": "--refresh",
1197
+ "description": "Bypass release cache to fetch latest versions from GitHub"
1198
+ }
1199
+ ]
1200
+ },
1201
+ {
1202
+ "title": "Installation Options",
1203
+ "options": [
1204
+ {
1205
+ "flags": "--install-skills",
1206
+ "description": "Install skills dependencies (non-interactive mode)"
1207
+ },
1208
+ {
1209
+ "flags": "--with-sudo",
1210
+ "description": "Include system packages requiring sudo (Linux: ffmpeg, imagemagick)"
1211
+ },
1212
+ {
1213
+ "flags": "--prefix",
1214
+ "description": "Add /ck: prefix to all slash commands"
1215
+ },
1216
+ {
1217
+ "flags": "--skip-setup",
1218
+ "description": "Skip interactive configuration wizard"
1219
+ },
1220
+ {
1221
+ "flags": "--dry-run",
1222
+ "description": "Preview changes without applying them (requires --prefix)"
1223
+ },
1224
+ {
1225
+ "flags": "--force-overwrite",
1226
+ "description": "Override ownership protections and delete user-modified files"
1227
+ },
1228
+ {
1229
+ "flags": "--force-overwrite-settings",
1230
+ "description": "Fully replace settings.json instead of selective merge"
1231
+ }
1232
+ ]
1233
+ },
1234
+ {
1235
+ "title": "Folder Options",
1236
+ "options": [
1237
+ {
1238
+ "flags": "--docs-dir <name>",
1239
+ "description": "Custom docs folder name to avoid conflicts with existing folders",
1240
+ "defaultValue": "docs"
1241
+ },
1242
+ {
1243
+ "flags": "--plans-dir <name>",
1244
+ "description": "Custom plans folder name to avoid conflicts with existing folders",
1245
+ "defaultValue": "plans"
1246
+ }
1247
+ ]
1248
+ }
1249
+ ]
1250
+ },
1251
+ "migrate": {
1252
+ "name": "migrate",
1253
+ "description": "Migrate Claude Code agents, commands, skills, config, rules, and hooks to other providers",
1254
+ "usage": "ck migrate [options]",
1255
+ "examples": [
1256
+ {
1257
+ "command": "ck migrate --install",
1258
+ "description": "Pick items to install interactively (install picker mode)"
1259
+ },
1260
+ {
1261
+ "command": "ck migrate --agent codex --dry-run",
1262
+ "description": "Preview the destination-aware reconcile plan before writing files"
1263
+ },
1264
+ {
1265
+ "command": "ck migrate --respect-deletions",
1266
+ "description": "Preserve empty directories — do not auto-reinstall deleted items"
1267
+ }
1268
+ ],
1269
+ "optionGroups": [
1270
+ {
1271
+ "title": "Mode Options",
1272
+ "options": [
1273
+ {
1274
+ "flags": "--install",
1275
+ "description": "Opt-in install picker mode — interactively select which items to install (default when registry is empty or has unknown checksums)"
1276
+ },
1277
+ {
1278
+ "flags": "--reconcile",
1279
+ "description": "Force reconcile mode — compute diff vs registry and apply only changes (default when registry is valid)"
1280
+ },
1281
+ {
1282
+ "flags": "--reinstall-empty-dirs",
1283
+ "description": "Reinstall all items when their type directory is empty or missing (default: true). Use --respect-deletions to disable."
1284
+ },
1285
+ {
1286
+ "flags": "--respect-deletions",
1287
+ "description": "Preserve deletion even when a type directory is empty — skip reinstall heuristic. Mutually exclusive with --reinstall-empty-dirs."
1288
+ }
1289
+ ]
1290
+ },
1291
+ {
1292
+ "title": "Target Options",
1293
+ "options": [
1294
+ {
1295
+ "flags": "-a, --agent <provider>",
1296
+ "description": "Target provider(s), can be specified multiple times"
1297
+ },
1298
+ {
1299
+ "flags": "--all",
1300
+ "description": "Migrate to all supported providers"
1301
+ },
1302
+ {
1303
+ "flags": "-g, --global",
1304
+ "description": "Install globally instead of the default project-level scope"
1305
+ },
1306
+ {
1307
+ "flags": "-y, --yes",
1308
+ "description": "Skip confirmation prompts after the pre-flight summary"
1309
+ },
1310
+ {
1311
+ "flags": "-f, --force",
1312
+ "description": "Force reinstall deleted or edited managed items"
1313
+ },
1314
+ {
1315
+ "flags": "--dry-run",
1316
+ "description": "Preview plan, destinations, and next steps without writing files"
1317
+ }
1318
+ ]
1319
+ },
1320
+ {
1321
+ "title": "Content Selection",
1322
+ "options": [
1323
+ {
1324
+ "flags": "--config",
1325
+ "description": "Migrate CLAUDE.md config only"
1326
+ },
1327
+ {
1328
+ "flags": "--rules",
1329
+ "description": "Migrate .claude/rules only"
1330
+ },
1331
+ {
1332
+ "flags": "--hooks",
1333
+ "description": "Migrate .claude/hooks only"
1334
+ },
1335
+ {
1336
+ "flags": "--skip-config",
1337
+ "description": "Skip config migration"
1338
+ },
1339
+ {
1340
+ "flags": "--skip-rules",
1341
+ "description": "Skip rules migration"
1342
+ },
1343
+ {
1344
+ "flags": "--skip-hooks",
1345
+ "description": "Skip hooks migration"
1346
+ },
1347
+ {
1348
+ "flags": "--source <path>",
1349
+ "description": "Custom CLAUDE.md source path"
1350
+ }
1351
+ ]
1352
+ }
1353
+ ],
1354
+ "sections": [
1355
+ {
1356
+ "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"
1358
+ }
1359
+ ]
1360
+ },
1361
+ "new": {
1362
+ "name": "new",
1363
+ "description": "Bootstrap a new ClaudeKit project (with interactive version selection)",
1364
+ "usage": "ck new [options]",
1365
+ "examples": [
1366
+ {
1367
+ "command": "ck new --kit engineer --dir ./my-project",
1368
+ "description": "Create engineer kit project in specific directory"
1369
+ },
1370
+ {
1371
+ "command": "ck new -y --use-git --release v2.1.0",
1372
+ "description": "Non-interactive with git clone (no GitHub API needed)"
1373
+ }
1374
+ ],
1375
+ "optionGroups": [
1376
+ {
1377
+ "title": "Mode Options",
1378
+ "options": [
1379
+ {
1380
+ "flags": "-y, --yes",
1381
+ "description": "Non-interactive mode (skip all prompts)"
1382
+ },
1383
+ {
1384
+ "flags": "--use-git",
1385
+ "description": "Use git clone instead of GitHub API (uses SSH/HTTPS credentials)"
1386
+ },
1387
+ {
1388
+ "flags": "--archive <path>",
1389
+ "description": "Use local archive file instead of downloading (zip/tar.gz)"
1390
+ },
1391
+ {
1392
+ "flags": "--kit-path <path>",
1393
+ "description": "Use local kit directory instead of downloading"
1394
+ }
1395
+ ]
1396
+ },
1397
+ {
1398
+ "title": "Project Options",
1399
+ "options": [
1400
+ {
1401
+ "flags": "--dir <directory>",
1402
+ "description": "Target directory for the new project",
1403
+ "defaultValue": "."
1404
+ },
1405
+ {
1406
+ "flags": "--kit <kit>",
1407
+ "description": "Kit to use (engineer, marketing)"
1408
+ },
1409
+ {
1410
+ "flags": "-r, --release <version>",
1411
+ "description": "Skip version selection, use specific version (e.g., latest, v1.0.0)"
1412
+ },
1413
+ {
1414
+ "flags": "--force",
1415
+ "description": "Overwrite existing files without confirmation"
1416
+ }
1417
+ ]
1418
+ },
1419
+ {
1420
+ "title": "Filter Options",
1421
+ "options": [
1422
+ {
1423
+ "flags": "--exclude <pattern>",
1424
+ "description": "Exclude files matching glob pattern (can be used multiple times)"
1425
+ },
1426
+ {
1427
+ "flags": "--beta",
1428
+ "description": "Show beta versions in selection prompt"
1429
+ },
1430
+ {
1431
+ "flags": "--refresh",
1432
+ "description": "Bypass release cache to fetch latest versions from GitHub"
1433
+ }
1434
+ ]
1435
+ },
1436
+ {
1437
+ "title": "Installation Options",
1438
+ "options": [
1439
+ {
1440
+ "flags": "--opencode",
1441
+ "description": "Install OpenCode CLI package (non-interactive mode)"
1442
+ },
1443
+ {
1444
+ "flags": "--gemini",
1445
+ "description": "Install Google Gemini CLI package (non-interactive mode)"
1446
+ },
1447
+ {
1448
+ "flags": "--install-skills",
1449
+ "description": "Install skills dependencies (non-interactive mode)"
1450
+ },
1451
+ {
1452
+ "flags": "--with-sudo",
1453
+ "description": "Include system packages requiring sudo (Linux: ffmpeg, imagemagick)"
1454
+ },
1455
+ {
1456
+ "flags": "--prefix",
1457
+ "description": "Add /ck: prefix to all slash commands"
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ "title": "Folder Options",
1463
+ "options": [
1464
+ {
1465
+ "flags": "--docs-dir <name>",
1466
+ "description": "Custom docs folder name to avoid conflicts with existing folders",
1467
+ "defaultValue": "docs"
1468
+ },
1469
+ {
1470
+ "flags": "--plans-dir <name>",
1471
+ "description": "Custom plans folder name to avoid conflicts with existing folders",
1472
+ "defaultValue": "plans"
1473
+ }
1474
+ ]
1475
+ }
1476
+ ]
1477
+ },
1478
+ "plan": {
1479
+ "name": "plan",
1480
+ "description": "Plan management: parse, validate, status, kanban, create, check, uncheck, add-phase",
1481
+ "usage": "ck plan [action] [target] [options]",
1482
+ "examples": [
1483
+ {
1484
+ "command": "ck plan status",
1485
+ "description": "Show progress summary for all plans in the current project"
1486
+ },
1487
+ {
1488
+ "command": "ck plan create --title 'Auth feature' --phases setup,api,ui",
1489
+ "description": "Scaffold a new plan directory with three phases"
1490
+ }
1491
+ ],
1492
+ "optionGroups": [
1493
+ {
1494
+ "title": "Output Options",
1495
+ "options": [
1496
+ {
1497
+ "flags": "--json",
1498
+ "description": "Output in JSON format"
1499
+ },
1500
+ {
1501
+ "flags": "--strict",
1502
+ "description": "Strict validation mode (validate action)"
1503
+ }
1504
+ ]
1505
+ },
1506
+ {
1507
+ "title": "Scope Options",
1508
+ "options": [
1509
+ {
1510
+ "flags": "-g, --global",
1511
+ "description": "Use global plans scope (~/.claude/plans or configured global root)"
1512
+ }
1513
+ ]
1514
+ }
1515
+ ],
1516
+ "subcommands": [
1517
+ {
1518
+ "name": "parse",
1519
+ "description": "Parse a plan.md and output an ASCII table or JSON of all phases",
1520
+ "usage": "ck plan parse [target] [--json]",
1521
+ "examples": [],
1522
+ "optionGroups": [
1523
+ {
1524
+ "title": "Output Options",
1525
+ "options": [
1526
+ {
1527
+ "flags": "--json",
1528
+ "description": "Output machine-readable JSON"
1529
+ }
1530
+ ]
1531
+ }
1532
+ ]
1533
+ },
1534
+ {
1535
+ "name": "validate",
1536
+ "description": "Validate plan.md syntax and structure",
1537
+ "usage": "ck plan validate [target] [--strict] [--json]",
1538
+ "examples": [],
1539
+ "optionGroups": [
1540
+ {
1541
+ "title": "Validation Options",
1542
+ "options": [
1543
+ {
1544
+ "flags": "--strict",
1545
+ "description": "Fail on warnings in addition to errors"
1546
+ },
1547
+ {
1548
+ "flags": "--json",
1549
+ "description": "Output results as JSON"
1550
+ }
1551
+ ]
1552
+ }
1553
+ ]
1554
+ },
1555
+ {
1556
+ "name": "status",
1557
+ "description": "Show progress for plans in scope",
1558
+ "usage": "ck plan status [--json] [-g]",
1559
+ "examples": [],
1560
+ "optionGroups": [
1561
+ {
1562
+ "title": "Output Options",
1563
+ "options": [
1564
+ {
1565
+ "flags": "--json",
1566
+ "description": "Output in JSON format"
1567
+ }
1568
+ ]
1569
+ },
1570
+ {
1571
+ "title": "Scope Options",
1572
+ "options": [
1573
+ {
1574
+ "flags": "-g, --global",
1575
+ "description": "Show status for global plans scope"
1576
+ }
1577
+ ]
1578
+ }
1579
+ ]
1580
+ },
1581
+ {
1582
+ "name": "kanban",
1583
+ "description": "Launch interactive Kanban dashboard in the browser",
1584
+ "usage": "ck plan kanban [--port <port>] [--no-open] [--dev]",
1585
+ "examples": [],
1586
+ "optionGroups": [
1587
+ {
1588
+ "title": "Dashboard Options",
1589
+ "options": [
1590
+ {
1591
+ "flags": "--port <port>",
1592
+ "description": "Port to serve the Kanban dashboard on"
1593
+ },
1594
+ {
1595
+ "flags": "--no-open",
1596
+ "description": "Do not auto-open the browser"
1597
+ },
1598
+ {
1599
+ "flags": "--dev",
1600
+ "description": "Start dashboard in development mode"
1601
+ }
1602
+ ]
1603
+ }
1604
+ ]
1605
+ },
1606
+ {
1607
+ "name": "create",
1608
+ "description": "Scaffold a new plan directory with phase files",
1609
+ "usage": "ck plan create [--title <title>] [--phases <phases>] [options]",
1610
+ "examples": [],
1611
+ "optionGroups": [
1612
+ {
1613
+ "title": "Create Options",
1614
+ "options": [
1615
+ {
1616
+ "flags": "--title <title>",
1617
+ "description": "Plan title"
1618
+ },
1619
+ {
1620
+ "flags": "--phases <phases>",
1621
+ "description": "Comma-separated list of phase names"
1622
+ },
1623
+ {
1624
+ "flags": "--dir <dir>",
1625
+ "description": "Plan output directory"
1626
+ },
1627
+ {
1628
+ "flags": "--priority <priority>",
1629
+ "description": "Priority level: P1, P2, or P3"
1630
+ },
1631
+ {
1632
+ "flags": "--issue <issue>",
1633
+ "description": "GitHub issue number to link"
1634
+ },
1635
+ {
1636
+ "flags": "--source <source>",
1637
+ "description": "Creation source: skill | cli | dashboard"
1638
+ },
1639
+ {
1640
+ "flags": "--session-id <id>",
1641
+ "description": "Claude session ID for tracking"
1642
+ }
1643
+ ]
1644
+ },
1645
+ {
1646
+ "title": "Scope Options",
1647
+ "options": [
1648
+ {
1649
+ "flags": "-g, --global",
1650
+ "description": "Create plan in global plans scope"
1651
+ }
1652
+ ]
1653
+ }
1654
+ ]
1655
+ },
1656
+ {
1657
+ "name": "check",
1658
+ "description": "Mark a phase as completed (or in-progress with --start)",
1659
+ "usage": "ck plan check <id> [--start]",
1660
+ "examples": [],
1661
+ "optionGroups": [
1662
+ {
1663
+ "title": "Check Options",
1664
+ "options": [
1665
+ {
1666
+ "flags": "--start",
1667
+ "description": "Mark phase as in-progress instead of completed"
1668
+ }
1669
+ ]
1670
+ }
1671
+ ]
1672
+ },
1673
+ {
1674
+ "name": "uncheck",
1675
+ "description": "Reset a phase back to pending status",
1676
+ "usage": "ck plan uncheck <id>",
1677
+ "examples": [],
1678
+ "optionGroups": []
1679
+ },
1680
+ {
1681
+ "name": "add-phase",
1682
+ "description": "Append a new phase to an existing plan",
1683
+ "usage": "ck plan add-phase [target] [--after <id>]",
1684
+ "examples": [],
1685
+ "optionGroups": [
1686
+ {
1687
+ "title": "Phase Options",
1688
+ "options": [
1689
+ {
1690
+ "flags": "--after <after>",
1691
+ "description": "Insert the new phase after this phase ID"
1692
+ }
1693
+ ]
1694
+ }
1695
+ ]
1696
+ }
1697
+ ]
1698
+ },
1699
+ "projects": {
1700
+ "name": "projects",
1701
+ "description": "Manage local ClaudeKit project registry entries",
1702
+ "usage": "ck projects <subcommand> [options]",
1703
+ "examples": [
1704
+ {
1705
+ "command": "ck projects list --pinned",
1706
+ "description": "Show only pinned projects"
1707
+ },
1708
+ {
1709
+ "command": "ck projects add . --alias engine --pinned",
1710
+ "description": "Add current directory with an alias and pin it"
1711
+ }
1712
+ ],
1713
+ "optionGroups": [
1714
+ {
1715
+ "title": "Subcommands",
1716
+ "options": [
1717
+ {
1718
+ "flags": "list | ls",
1719
+ "description": "List projects in registry"
1720
+ },
1721
+ {
1722
+ "flags": "add <path>",
1723
+ "description": "Add project path to registry"
1724
+ },
1725
+ {
1726
+ "flags": "remove [alias] | rm [alias]",
1727
+ "description": "Remove project by alias or ID"
1728
+ }
1729
+ ]
1730
+ },
1731
+ {
1732
+ "title": "List Options",
1733
+ "options": [
1734
+ {
1735
+ "flags": "--json",
1736
+ "description": "Output in JSON format"
1737
+ },
1738
+ {
1739
+ "flags": "--pinned",
1740
+ "description": "Filter to pinned projects only"
1741
+ }
1742
+ ]
1743
+ },
1744
+ {
1745
+ "title": "Add/Remove Options",
1746
+ "options": [
1747
+ {
1748
+ "flags": "--alias <alias>",
1749
+ "description": "Custom alias for project (add)"
1750
+ },
1751
+ {
1752
+ "flags": "--pinned",
1753
+ "description": "Pin this project (add)"
1754
+ },
1755
+ {
1756
+ "flags": "--tags <tags>",
1757
+ "description": "Comma-separated tags (add)"
1758
+ },
1759
+ {
1760
+ "flags": "--id <id>",
1761
+ "description": "Remove by project ID (remove)"
1762
+ }
1763
+ ]
1764
+ }
1765
+ ],
1766
+ "subcommands": [
1767
+ {
1768
+ "name": "list",
1769
+ "description": "List projects in registry",
1770
+ "usage": "ck projects list [--json] [--pinned]",
1771
+ "examples": [],
1772
+ "optionGroups": [],
1773
+ "aliases": ["ls"]
1774
+ },
1775
+ {
1776
+ "name": "add",
1777
+ "description": "Add project path to registry",
1778
+ "usage": "ck projects add <path> [--alias <alias>] [--pinned] [--tags <tags>]",
1779
+ "examples": [],
1780
+ "optionGroups": []
1781
+ },
1782
+ {
1783
+ "name": "remove",
1784
+ "description": "Remove project by alias or ID",
1785
+ "usage": "ck projects remove [alias] [--id <id>]",
1786
+ "examples": [],
1787
+ "optionGroups": [],
1788
+ "aliases": ["rm"]
1789
+ }
1790
+ ]
1791
+ },
1792
+ "setup": {
1793
+ "name": "setup",
1794
+ "description": "Run guided setup for provider API keys, preferred image provider, and optional packages",
1795
+ "usage": "ck setup [options]",
1796
+ "examples": [
1797
+ {
1798
+ "command": "ck setup",
1799
+ "description": "Run setup wizard in current project"
1800
+ },
1801
+ {
1802
+ "command": "ck setup --global",
1803
+ "description": "Configure global provider keys and a preferred image-generation path"
1804
+ },
1805
+ {
1806
+ "command": "ck setup --global --skip-packages",
1807
+ "description": "Configure global setup without package installation"
1808
+ }
1809
+ ],
1810
+ "optionGroups": [
1811
+ {
1812
+ "title": "Options",
1813
+ "options": [
1814
+ {
1815
+ "flags": "--global",
1816
+ "description": "Configure in global Claude directory (~/.claude/)"
1817
+ },
1818
+ {
1819
+ "flags": "--skip-packages",
1820
+ "description": "Skip optional package installation"
1821
+ },
1822
+ {
1823
+ "flags": "--dir <dir>",
1824
+ "description": "Target directory for setup",
1825
+ "defaultValue": "current directory"
1826
+ }
1827
+ ]
1828
+ }
1829
+ ]
1830
+ },
1831
+ "skills": {
1832
+ "name": "skills",
1833
+ "description": "Install, uninstall, and manage ClaudeKit skills across coding agents",
1834
+ "usage": "ck skills [options]",
1835
+ "examples": [
1836
+ {
1837
+ "command": "ck skills --name frontend-design --agent claude-code -g",
1838
+ "description": "Install skill to Claude Code globally"
1839
+ },
1840
+ {
1841
+ "command": "ck skills --list --installed",
1842
+ "description": "Show all installed skills with their locations"
1843
+ }
1844
+ ],
1845
+ "optionGroups": [
1846
+ {
1847
+ "title": "Mode Options",
1848
+ "options": [
1849
+ {
1850
+ "flags": "-l, --list",
1851
+ "description": "List available skills from ClaudeKit source"
1852
+ },
1853
+ {
1854
+ "flags": "--installed",
1855
+ "description": "When used with --list, show installed skills instead"
1856
+ },
1857
+ {
1858
+ "flags": "-u, --uninstall",
1859
+ "description": "Uninstall skill(s) from agent(s)"
1860
+ },
1861
+ {
1862
+ "flags": "--sync",
1863
+ "description": "Sync registry with filesystem (clean orphaned entries)"
1864
+ }
1865
+ ]
1866
+ },
1867
+ {
1868
+ "title": "Installation Options",
1869
+ "options": [
1870
+ {
1871
+ "flags": "-n, --name <skill>",
1872
+ "description": "Skill name to install or uninstall"
1873
+ },
1874
+ {
1875
+ "flags": "-a, --agent <agent>",
1876
+ "description": "Target agent(s) - can be specified multiple times. Valid: claude-code, cursor, codex, opencode, goose, gemini-cli, antigravity, github-copilot, amp, kilo, roo, windsurf, cline, openhands"
1877
+ },
1878
+ {
1879
+ "flags": "-g, --global",
1880
+ "description": "Install to user's home directory (available across projects)"
1881
+ },
1882
+ {
1883
+ "flags": "--all",
1884
+ "description": "Install to all supported agents"
1885
+ },
1886
+ {
1887
+ "flags": "-y, --yes",
1888
+ "description": "Non-interactive mode (skip confirmations)"
1889
+ }
1890
+ ]
1891
+ },
1892
+ {
1893
+ "title": "Catalog Options",
1894
+ "options": [
1895
+ {
1896
+ "flags": "--catalog",
1897
+ "description": "Show skill catalog stats and metadata"
1898
+ },
1899
+ {
1900
+ "flags": "--regenerate",
1901
+ "description": "Force regenerate catalog (use with --catalog)"
1902
+ },
1903
+ {
1904
+ "flags": "--search <query>",
1905
+ "description": "BM25 full-text search over skill catalog"
1906
+ },
1907
+ {
1908
+ "flags": "--json",
1909
+ "description": "Output search results as JSON (use with --search)"
1910
+ },
1911
+ {
1912
+ "flags": "--limit <n>",
1913
+ "description": "Max search results, default 10 (use with --search)"
1914
+ },
1915
+ {
1916
+ "flags": "--validate",
1917
+ "description": "Validate SKILL.md frontmatter fields"
1918
+ }
1919
+ ]
1920
+ },
1921
+ {
1922
+ "title": "Uninstall Options",
1923
+ "options": [
1924
+ {
1925
+ "flags": "-f, --force",
1926
+ "description": "Force uninstall even if skill not in registry (requires --agent)"
1927
+ }
1928
+ ]
1929
+ }
1930
+ ],
1931
+ "sections": [
1932
+ {
1933
+ "title": "Supported Agents",
1934
+ "content": " claude-code Claude Code CLI\n cursor Cursor IDE\n codex Codex CLI\n opencode OpenCode\n goose Goose AI\n gemini-cli Gemini CLI\n antigravity Antigravity Agent\n github-copilot GitHub Copilot\n amp Amp\n kilo Kilo Code\n roo Roo Code\n windsurf Windsurf IDE\n cline Cline\n openhands OpenHands"
1935
+ },
1936
+ {
1937
+ "title": "Notes",
1938
+ "content": " • Skills are installed from ~/.claude/skills (ClaudeKit Engineer source)\n • OpenCode reuses Claude-compatible skill roots (.claude/skills, ~/.claude/skills), so installs may be a no-op\n • Registry stored at ~/.claudekit/skill-registry.json\n • Target paths vary by agent; some agents intentionally share a common skills directory"
1939
+ }
1940
+ ]
1941
+ },
1942
+ "uninstall": {
1943
+ "name": "uninstall",
1944
+ "description": "Remove ClaudeKit installations (ownership-aware)",
1945
+ "usage": "ck uninstall [options]",
1946
+ "examples": [
1947
+ {
1948
+ "command": "ck uninstall --local --yes",
1949
+ "description": "Remove local installation without confirmation"
1950
+ },
1951
+ {
1952
+ "command": "ck uninstall --dry-run",
1953
+ "description": "Preview what would be removed without deleting"
1954
+ }
1955
+ ],
1956
+ "optionGroups": [
1957
+ {
1958
+ "title": "Scope Options",
1959
+ "options": [
1960
+ {
1961
+ "flags": "-l, --local",
1962
+ "description": "Uninstall only local installation (current project)"
1963
+ },
1964
+ {
1965
+ "flags": "-g, --global",
1966
+ "description": "Uninstall only global installation (~/.claude/)"
1967
+ },
1968
+ {
1969
+ "flags": "-A, --all",
1970
+ "description": "Uninstall from both local and global locations"
1971
+ },
1972
+ {
1973
+ "flags": "-k, --kit <type>",
1974
+ "description": "Uninstall specific kit only (engineer, marketing)"
1975
+ }
1976
+ ]
1977
+ },
1978
+ {
1979
+ "title": "Safety Options",
1980
+ "options": [
1981
+ {
1982
+ "flags": "--dry-run",
1983
+ "description": "Preview what would be removed without deleting"
1984
+ },
1985
+ {
1986
+ "flags": "--force-overwrite",
1987
+ "description": "Delete even user-modified files (requires confirmation)"
1988
+ },
1989
+ {
1990
+ "flags": "-y, --yes",
1991
+ "description": "Skip confirmation prompt"
1992
+ }
1993
+ ]
1994
+ }
1995
+ ],
1996
+ "sections": [
1997
+ {
1998
+ "title": "Ownership-Aware Uninstall",
1999
+ "content": "Uninstall preserves user customizations by default. Only CK-installed files that haven't been modified are removed. User-created files and modified files are preserved unless --force-overwrite is used."
2000
+ }
2001
+ ]
2002
+ },
2003
+ "update": {
2004
+ "name": "update",
2005
+ "description": "Update ClaudeKit CLI tool only (not kit content)",
2006
+ "usage": "ck update [options]",
2007
+ "examples": [
2008
+ {
2009
+ "command": "ck update --check",
2010
+ "description": "Check for CLI updates without installing"
2011
+ },
2012
+ {
2013
+ "command": "ck update --dev --yes",
2014
+ "description": "Update to latest dev version without confirmation"
2015
+ }
2016
+ ],
2017
+ "optionGroups": [
2018
+ {
2019
+ "title": "Update Options",
2020
+ "options": [
2021
+ {
2022
+ "flags": "-r, --release <version>",
2023
+ "description": "Update to a specific version"
2024
+ },
2025
+ {
2026
+ "flags": "--check",
2027
+ "description": "Check for updates without installing"
2028
+ },
2029
+ {
2030
+ "flags": "-y, --yes",
2031
+ "description": "Skip all confirmation prompts (CLI and kit content update)"
2032
+ },
2033
+ {
2034
+ "flags": "-d, --dev",
2035
+ "description": "Update to the latest dev version"
2036
+ },
2037
+ {
2038
+ "flags": "--registry <url>",
2039
+ "description": "Custom npm registry URL"
2040
+ }
2041
+ ]
2042
+ },
2043
+ {
2044
+ "title": "Deprecated Options",
2045
+ "options": [
2046
+ {
2047
+ "flags": "--beta",
2048
+ "description": "(deprecated) Alias for --dev; use -d, --dev instead",
2049
+ "deprecated": {
2050
+ "message": "Use '-d, --dev' to update to the latest dev version",
2051
+ "alternative": "-d, --dev"
2052
+ }
2053
+ },
2054
+ {
2055
+ "flags": "--kit <kit>",
2056
+ "description": "This option is no longer supported with 'ck update'",
2057
+ "deprecated": {
2058
+ "message": "Use 'ck init --kit <kit>' to update kit installations",
2059
+ "alternative": "ck init --kit <kit>"
2060
+ }
2061
+ },
2062
+ {
2063
+ "flags": "-g, --global",
2064
+ "description": "This option is no longer supported with 'ck update'",
2065
+ "deprecated": {
2066
+ "message": "Use 'ck init --global' to update global kit",
2067
+ "alternative": "ck init --global"
2068
+ }
2069
+ }
2070
+ ]
2071
+ }
2072
+ ],
2073
+ "sections": [
2074
+ {
2075
+ "title": "Note",
2076
+ "content": "'ck update' updates the CLI tool only and defaults to the latest stable release. Use '--beta' to opt into prerelease CLI builds. To update kit content (skills, commands, rules), use 'ck init' for local or 'ck init -g' for global. Use --yes to skip all prompts (both CLI and kit content update) for non-interactive/CI usage."
2077
+ }
2078
+ ]
2079
+ },
2080
+ "versions": {
2081
+ "name": "versions",
2082
+ "description": "List available versions of ClaudeKit repositories",
2083
+ "usage": "ck versions [options]",
2084
+ "examples": [
2085
+ {
2086
+ "command": "ck versions --kit engineer --limit 10",
2087
+ "description": "Show latest 10 versions of engineer kit"
2088
+ },
2089
+ {
2090
+ "command": "ck versions --all",
2091
+ "description": "Show all releases including prereleases"
2092
+ }
2093
+ ],
2094
+ "optionGroups": [
2095
+ {
2096
+ "title": "Filter Options",
2097
+ "options": [
2098
+ {
2099
+ "flags": "--kit <kit>",
2100
+ "description": "Filter by specific kit (engineer, marketing)"
2101
+ },
2102
+ {
2103
+ "flags": "--limit <number>",
2104
+ "description": "Number of releases to show",
2105
+ "defaultValue": "30"
2106
+ },
2107
+ {
2108
+ "flags": "--all",
2109
+ "description": "Show all releases including prereleases"
2110
+ }
2111
+ ]
2112
+ }
2113
+ ]
2114
+ },
2115
+ "watch": {
2116
+ "name": "watch",
2117
+ "description": "Watch GitHub issues and auto-respond with AI analysis",
2118
+ "usage": "ck watch [options]",
2119
+ "examples": [
2120
+ {
2121
+ "command": "ck watch --dry-run",
2122
+ "description": "Preview issue detection without posting responses"
2123
+ },
2124
+ {
2125
+ "command": "ck watch --interval 60000",
2126
+ "description": "Poll every 60 seconds instead of default 30s"
2127
+ }
2128
+ ],
2129
+ "optionGroups": [
2130
+ {
2131
+ "title": "Options",
2132
+ "options": [
2133
+ {
2134
+ "flags": "--interval <ms>",
2135
+ "description": "Poll interval in milliseconds",
2136
+ "defaultValue": "30000"
2137
+ },
2138
+ {
2139
+ "flags": "--dry-run",
2140
+ "description": "Detect issues without posting responses"
2141
+ },
2142
+ {
2143
+ "flags": "--force",
2144
+ "description": "Kill existing watch process and start fresh"
2145
+ },
2146
+ {
2147
+ "flags": "--verbose",
2148
+ "description": "Enable verbose logging"
2149
+ }
2150
+ ]
2151
+ }
2152
+ ]
2153
+ }
2154
+ }
2155
+ }