-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathclaude-code.json
More file actions
1655 lines (1655 loc) · 33.6 KB
/
claude-code.json
File metadata and controls
1655 lines (1655 loc) · 33.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"cat": "Setup and Access",
"desc": "Install Claude Code natively on macOS, Linux, or WSL with automatic background updates.",
"command_by_os": {
"macos": [
"curl -fsSL https://claude.ai/install.sh | bash"
],
"linux": [
"curl -fsSL https://claude.ai/install.sh | bash"
]
},
"keywords": [
"install",
"setup",
"native install",
"wsl",
"getting started",
"package manager",
"installation"
]
},
{
"cat": "Setup and Access",
"desc": "Install Claude Code with the native installer from Windows PowerShell with automatic background updates.",
"command_by_os": {
"windows": [
"irm https://claude.ai/install.ps1 | iex"
]
},
"keywords": [
"install",
"setup",
"native install",
"powershell",
"windows",
"getting started",
"installation"
]
},
{
"cat": "Setup and Access",
"desc": "Install Claude Code with the native installer from Windows CMD with automatic background updates.",
"command_by_os": {
"windows": [
"curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd"
]
},
"keywords": [
"install",
"setup",
"native install",
"cmd",
"windows command prompt",
"windows",
"getting started",
"installation"
]
},
{
"cat": "Setup and Access",
"desc": "Install Claude Code with Homebrew.",
"command_by_os": {
"macos": [
"brew install --cask claude-code"
],
"linux": [
"brew install --cask claude-code"
]
},
"keywords": [
"install",
"setup",
"homebrew",
"brew",
"macos",
"linux",
"package manager",
"installation"
]
},
{
"cat": "Setup and Access",
"desc": "Homebrew installations do not auto-update. Run this command to get the latest features and security fixes.",
"command_by_os": {
"macos": [
"brew upgrade claude-code"
],
"linux": [
"brew upgrade claude-code"
]
},
"keywords": [
"update",
"upgrade",
"homebrew",
"brew",
"macos",
"linux",
"package manager"
]
},
{
"cat": "Setup and Access",
"desc": "Install Claude Code with WinGet on Windows.",
"command_by_os": {
"windows": [
"winget install Anthropic.ClaudeCode"
]
},
"keywords": [
"install",
"setup",
"winget",
"windows",
"package manager",
"installation"
]
},
{
"cat": "Setup and Access",
"desc": "WinGet installations do not auto-update. Run this command to get the latest features and security fixes.",
"command_by_os": {
"windows": [
"winget upgrade Anthropic.ClaudeCode"
]
},
"keywords": [
"update",
"upgrade",
"winget",
"windows",
"package manager"
]
},
{
"cat": "Setup and Access",
"desc": "Start an interactive Claude Code session in the current project.",
"command": [
"claude"
],
"keywords": [
"interactive",
"start session",
"repl",
"launch",
"begin"
]
},
{
"cat": "Setup and Access",
"desc": "Show the installed Claude Code version.",
"command": [
"claude -v"
],
"keywords": [
"version",
"install check",
"verify",
"check version"
]
},
{
"cat": "Setup and Access",
"desc": "Manually update Claude Code to the latest version.",
"command": [
"claude update"
],
"keywords": [
"update",
"upgrade",
"latest",
"version",
"install"
]
},
{
"cat": "Setup and Access",
"desc": "Run initialization hooks and start interactive mode.",
"command": [
"claude --init"
],
"keywords": [
"init",
"initialization",
"hooks",
"startup"
]
},
{
"cat": "Setup and Access",
"desc": "Log in to your Claude account from the terminal. Use --email to pre-fill email or --sso to force SSO authentication.",
"command": [
"claude auth login"
],
"keywords": [
"auth",
"login",
"account",
"sso",
"email",
"sign in",
"authenticate"
]
},
{
"cat": "Setup and Access",
"desc": "Show authentication status as JSON. Use --text for human-readable output. Exits with code 0 if logged in, 1 if not.",
"command": [
"claude auth status --text"
],
"keywords": [
"auth",
"status",
"account",
"json",
"logged in",
"check login",
"authentication status"
]
},
{
"cat": "Setup and Access",
"desc": "Run a one-time task and get a response without starting an interactive session.",
"command": [
"claude \"write a test for this function\""
],
"keywords": [
"one-time task",
"single task",
"run task",
"quick task",
"task execution"
]
},
{
"cat": "Setup and Access",
"desc": "Create a Git commit with Claude Code writing the commit message.",
"command": [
"claude commit"
],
"keywords": [
"commit",
"git",
"git commit",
"version control",
"staging",
"message generation"
]
},
{
"cat": "Setup and Access",
"desc": "Initialize project guidance files for the current project.",
"slash": [
"/init"
],
"keywords": [
"init",
"claude md",
"project guidance",
"setup",
"initialize",
"project setup",
"hooks"
]
},
{
"cat": "Setup and Access",
"desc": "Open Claude memory management from inside the session.",
"slash": [
"/memory"
],
"keywords": [
"memory",
"project guidance",
"notes",
"learning",
"context management"
]
},
{
"cat": "Setup and Access",
"desc": "Sign in to your Anthropic account.",
"slash": [
"/login"
],
"keywords": [
"login",
"sign in",
"authenticate",
"account",
"auth"
]
},
{
"cat": "Setup and Access",
"desc": "Sign out from your Anthropic account.",
"slash": [
"/logout"
],
"keywords": [
"logout",
"sign out",
"disconnect",
"account",
"auth"
]
},
{
"cat": "Setup and Access",
"desc": "Show QR code to download the Claude mobile app.",
"slash": [
"/mobile",
"/ios",
"/android"
],
"keywords": [
"mobile",
"ios",
"android",
"app download",
"phone",
"smartphone"
]
},
{
"cat": "Prompting and Input",
"desc": "Run Claude once in print mode and exit with a single response.",
"command": [
"claude -p \"explain this function\""
],
"keywords": [
"print mode",
"non interactive",
"single shot",
"automation",
"sdk",
"one-off",
"exit immediately"
]
},
{
"cat": "Prompting and Input",
"desc": "Open the current prompt in your default text editor.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>G</kbd>"
],
"keywords": [
"editor",
"prompt editing",
"open editor",
"external editor",
"edit input"
]
},
{
"cat": "Prompting and Input",
"desc": "Ask a side question without adding it to the main conversation history. Can run while Claude is working.",
"slash": [
"/btw what was the name of that config file again?"
],
"keywords": [
"btw",
"side question",
"ephemeral",
"quick answer",
"instant answer",
"tangent"
]
},
{
"cat": "Prompting and Input",
"desc": "Delete from the cursor to the end of the line.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>K</kbd>"
],
"keywords": [
"kill line",
"editing",
"delete to end",
"erase",
"text editing",
"line ending"
]
},
{
"cat": "Prompting and Input",
"desc": "Delete the entire current line.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>U</kbd>"
],
"keywords": [
"delete line",
"editing",
"erase line",
"clear input",
"kill entire line",
"remove line"
]
},
{
"cat": "Prompting and Input",
"desc": "Paste text deleted with readline kill commands.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>Y</kbd>"
],
"keywords": [
"yank",
"paste history",
"editing",
"paste deleted",
"undo delete",
"restore text"
]
},
{
"cat": "Prompting and Input",
"desc": "Cycle through earlier kill-ring entries after pasting.",
"shortcut": [
"<kbd>Alt</kbd> + <kbd>Y</kbd>"
],
"keywords": [
"paste history",
"kill ring",
"editing",
"cycle pastes",
"previous paste",
"yank history"
]
},
{
"cat": "Prompting and Input",
"desc": "Move the cursor back by one word.",
"shortcut": [
"<kbd>Alt</kbd> + <kbd>B</kbd>"
],
"keywords": [
"word navigation",
"back word",
"cursor movement",
"move left",
"word boundary",
"backward"
]
},
{
"cat": "Prompting and Input",
"desc": "Move the cursor forward by one word.",
"shortcut": [
"<kbd>Alt</kbd> + <kbd>F</kbd>"
],
"keywords": [
"word navigation",
"forward word",
"cursor movement",
"move right",
"word boundary",
"forward"
]
},
{
"cat": "Prompting and Input",
"desc": "Paste an image from the clipboard.",
"shortcut_by_os": {
"macos": "<kbd>Ctrl</kbd> + <kbd>V</kbd> or <kbd>Cmd</kbd> + <kbd>V</kbd>",
"windows": "<kbd>Alt</kbd> + <kbd>V</kbd>",
"linux": "<kbd>Ctrl</kbd> + <kbd>V</kbd> or <kbd>Alt</kbd> + <kbd>V</kbd>"
},
"keywords": [
"paste image",
"clipboard",
"screenshots",
"media input",
"image upload",
"paste media"
]
},
{
"cat": "Prompting and Input",
"desc": "Insert a newline for multiline input.",
"shortcut": [
"<kbd>\\</kbd> + <kbd>Enter</kbd>",
"<kbd>Shift</kbd> + <kbd>Enter</kbd>",
"<kbd>Ctrl</kbd> + <kbd>J</kbd>"
],
"shortcut_by_os": {
"macos": "<kbd>Option</kbd> + <kbd>Enter</kbd>",
"windows": "<kbd>Shift</kbd> + <kbd>Enter</kbd>",
"linux": "<kbd>Shift</kbd> + <kbd>Enter</kbd>"
},
"keywords": [
"multiline",
"line break",
"shift enter",
"option enter",
"ctrl j",
"new line",
"multiple lines"
]
},
{
"cat": "Prompting and Input",
"desc": "Open the slash command picker from the start of the prompt.",
"shortcut": [
"<kbd>/</kbd>"
],
"keywords": [
"quick commands",
"slash commands",
"command menu",
"commands",
"menu"
]
},
{
"cat": "Prompting and Input",
"desc": "Enter bash mode from the start of the prompt.",
"shortcut": [
"<kbd>!</kbd>"
],
"keywords": [
"bash mode",
"shell",
"terminal",
"run command",
"execute",
"command execution"
]
},
{
"cat": "Prompting and Input",
"desc": "Trigger file path autocomplete.",
"shortcut": [
"<kbd>@</kbd>"
],
"keywords": [
"mention",
"autocomplete",
"file path",
"file reference",
"file mention",
"path completion"
]
},
{
"cat": "Prompting and Input",
"desc": "Accept a prompt suggestion for editing.",
"shortcut": [
"<kbd>Tab</kbd>"
],
"keywords": [
"prompt suggestions",
"accept suggestion",
"edit suggestion",
"accept for editing"
]
},
{
"cat": "Prompting and Input",
"desc": "Accept a prompt suggestion and submit it immediately.",
"shortcut": [
"<kbd>Enter</kbd>"
],
"keywords": [
"prompt suggestions",
"accept suggestion",
"submit",
"accept and submit",
"execute suggestion"
]
},
{
"cat": "Prompting and Input",
"desc": "Exit bash mode when the prompt is empty.",
"shortcut": [
"<kbd>Escape</kbd>",
"<kbd>Backspace</kbd>",
"<kbd>Ctrl</kbd> + <kbd>U</kbd>"
],
"keywords": [
"exit bash mode",
"empty prompt",
"return to normal",
"exit shell",
"quit bash"
]
},
{
"cat": "Prompting and Input",
"desc": "Toggle push-to-talk voice dictation.",
"slash": [
"/voice"
],
"keywords": [
"voice",
"voice dictation",
"speech input",
"push-to-talk",
"audio input"
]
},
{
"cat": "Prompting and Input",
"desc": "Dismiss a /btw side-question overlay and return to the main prompt.",
"shortcut": [
"<kbd>Space</kbd>",
"<kbd>Enter</kbd>",
"<kbd>Escape</kbd>"
],
"keywords": [
"btw",
"dismiss overlay",
"side question",
"return to prompt",
"close overlay",
"dismiss"
]
},
{
"cat": "Sessions and Context",
"desc": "Continue most recent conversation in current directory.",
"command": [
"claude -c",
"claude --continue"
],
"keywords": [
"resume",
"session name",
"named session",
"saved session",
"load"
]
},
{
"cat": "Sessions and Context",
"desc": "Resume a specific session by ID or name, or show an interactive picker to choose a session.",
"command": [
"claude --resume auth-refactor",
"claude -r"
],
"keywords": [
"resume",
"session name",
"named session",
"saved session",
"load"
]
},
{
"cat": "Sessions and Context",
"desc": "Clear the current session and start a fresh conversation.",
"slash": [
"/clear",
"/reset",
"/new"
],
"keywords": [
"clear",
"reset",
"new session",
"fresh start",
"wipe",
"empty",
"start over"
]
},
{
"cat": "Sessions and Context",
"desc": "Compact the current conversation to keep only the important context.",
"slash": [
"/compact \"keep only the important parts\""
],
"keywords": [
"compact",
"context reset",
"session summary",
"compress",
"reduce context",
"summarize",
"shorten"
]
},
{
"cat": "Sessions and Context",
"desc": "Resume another conversation from inside the current session.",
"slash": [
"/resume",
"/continue"
],
"keywords": [
"resume",
"session management",
"alternate session",
"switch session",
"load conversation"
]
},
{
"cat": "Sessions and Context",
"desc": "Rename the current conversation.",
"slash": [
"/rename feature-auth"
],
"keywords": [
"rename",
"session management",
"change name",
"label session",
"rename conversation"
]
},
{
"cat": "Sessions and Context",
"desc": "Fork the current conversation into a new branch of work.",
"slash": [
"/fork bug-investigation"
],
"keywords": [
"fork",
"session management",
"branch conversation",
"branch work",
"split session",
"duplicate conversation"
]
},
{
"cat": "Sessions and Context",
"desc": "Show how much context is currently in use.",
"slash": [
"/context"
],
"keywords": [
"context",
"status",
"token usage",
"token count",
"context size",
"usage info"
]
},
{
"cat": "Sessions and Context",
"desc": "Switch into planning mode.",
"slash": [
"/plan"
],
"keywords": [
"plan mode",
"planning",
"planning mode",
"strategy"
]
},
{
"cat": "Sessions and Context",
"desc": "Open the task list for the current session.",
"slash": [
"/tasks"
],
"keywords": [
"tasks",
"task list",
"status",
"todo",
"progress",
"tracking"
]
},
{
"cat": "Sessions and Context",
"desc": "Copy the current response to the clipboard.",
"slash": [
"/copy"
],
"keywords": [
"copy",
"clipboard",
"save response",
"duplicate"
]
},
{
"cat": "Sessions and Context",
"desc": "Export the current response to a file.",
"slash": [
"/export notes.txt"
],
"keywords": [
"export",
"save transcript",
"download response",
"save to file",
"file output"
]
},
{
"cat": "Sessions and Context",
"desc": "Transfer a terminal session to the desktop app or web for visual diff review and continued work.",
"platforms": [
"macos",
"windows"
],
"slash": [
"/desktop",
"/app"
],
"keywords": [
"desktop",
"desktop app",
"visual diff",
"transfer session",
"move to desktop",
"routing"
]
},
{
"cat": "Sessions and Context",
"desc": "Add a new working directory to the current session.",
"slash": [
"/add-dir <path>"
],
"keywords": [
"add directory",
"working directory",
"multi-directory",
"context",
"file scope"
]
},
{
"cat": "Sessions and Context",
"desc": "Create a branch of the current conversation at this point.",
"slash": [
"/branch feature-auth",
"/fork"
],
"keywords": [
"branch",
"conversation branch",
"fork conversation",
"diverge work",
"parallel work"
]
},
{
"cat": "Sessions and Context",
"desc": "Enable remote control of the current session from claude.ai.",
"slash": [
"/remote-control",
"/rc"
],
"keywords": [
"remote control",
"rc",
"claude.ai",
"browser control",
"mobile control",
"remote session"
]
},
{
"cat": "Sessions and Context",
"desc": "Rewind or summarize from the keyboard.",
"shortcut": [
"<kbd>Esc</kbd> + <kbd>Esc</kbd>"
],
"keywords": [
"rewind",
"summarize",
"checkpoint",
"go back",
"restore conversation",
"undo"
]
},
{
"cat": "Navigation and Control",
"desc": "Cancel the current input or generation.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>C</kbd>"
],
"keywords": [
"interrupt",
"cancel",
"session control",
"stop",
"abort"
]
},
{
"cat": "Navigation and Control",
"desc": "Kill all background agents.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>F</kbd>"
],
"keywords": [
"kill background agents",
"session control",
"stop agents",
"terminate",
"force kill"
]
},
{
"cat": "Navigation and Control",
"desc": "Exit the Claude Code session.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>D</kbd>"
],
"keywords": [
"exit",
"session control",
"quit",
"logout",
"end session"
]
},
{
"cat": "Navigation and Control",
"desc": "Exit Claude Code from the command prompt.",
"slash": [
"/exit",
"/quit"
],
"keywords": [
"exit",
"quit",
"session control",
"leave",
"end session"
]
},
{
"cat": "Navigation and Control",
"desc": "Clear the terminal screen while keeping conversation history.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>L</kbd>"
],
"keywords": [
"clear screen",
"display",
"scrollback",
"reset screen",
"clean terminal"
]
},
{
"cat": "Navigation and Control",
"desc": "Toggle verbose output for tool execution details.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>O</kbd>"
],
"keywords": [
"verbose output",
"display",
"tool usage",
"debug info",
"detailed output",
"verbose mode"
]
},
{
"cat": "Navigation and Control",
"desc": "Background running tasks. Tmux users press Ctrl+B twice.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>B</kbd>"
],
"keywords": [
"background task",
"agent control",
"long running work",
"async",
"non-blocking",
"background process"
]
},
{
"cat": "Navigation and Control",
"desc": "Show or hide the task list.",
"shortcut": [
"<kbd>Ctrl</kbd> + <kbd>T</kbd>"
],
"keywords": [
"task list",
"status area",
"show tasks",
"toggle view",
"progress tracking"
]
},
{
"cat": "Navigation and Control",
"desc": "Cycle through tabs in dialogs and menus.",
"shortcut": [
"<kbd><i class=\"fa fa-long-arrow-alt-left\"></i></kbd>",
"<kbd><i class=\"fa fa-long-arrow-alt-right\"></i></kbd>"
],
"keywords": [
"dialog tabs",