forked from ultraworkers/claw-code
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlib.rs
More file actions
5956 lines (5589 loc) · 202 KB
/
Copy pathlib.rs
File metadata and controls
5956 lines (5589 loc) · 202 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
use std::collections::BTreeMap;
use std::env;
use std::fmt;
use std::fs;
use std::path::{Path, PathBuf};
use plugins::{PluginError, PluginLoadFailure, PluginManager, PluginSummary};
use runtime::{
compact_session, CompactionConfig, ConfigLoader, ConfigSource, McpOAuthConfig, McpServerConfig,
ScopedMcpServerConfig, Session,
};
use serde_json::{json, Value};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CommandManifestEntry {
pub name: String,
pub source: CommandSource,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CommandSource {
Builtin,
InternalOnly,
FeatureGated,
}
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct CommandRegistry {
entries: Vec<CommandManifestEntry>,
}
impl CommandRegistry {
#[must_use]
pub fn new(entries: Vec<CommandManifestEntry>) -> Self {
Self { entries }
}
#[must_use]
pub fn entries(&self) -> &[CommandManifestEntry] {
&self.entries
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct SlashCommandSpec {
pub name: &'static str,
pub aliases: &'static [&'static str],
pub summary: &'static str,
pub argument_hint: Option<&'static str>,
pub resume_supported: bool,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum SkillSlashDispatch {
Local,
Invoke(String),
}
const SLASH_COMMAND_SPECS: &[SlashCommandSpec] = &[
SlashCommandSpec {
name: "help",
aliases: &[],
summary: "Show available slash commands",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "status",
aliases: &[],
summary: "Show current session status",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "sandbox",
aliases: &[],
summary: "Show sandbox isolation status",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "compact",
aliases: &[],
summary: "Compact local session history",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "model",
aliases: &[],
summary: "Show or switch the active model",
argument_hint: Some("[model]"),
resume_supported: false,
},
SlashCommandSpec {
name: "permissions",
aliases: &[],
summary: "Show or switch the active permission mode",
argument_hint: Some("[read-only|workspace-write|danger-full-access]"),
resume_supported: false,
},
SlashCommandSpec {
name: "clear",
aliases: &[],
summary: "Start a fresh local session",
argument_hint: Some("[--confirm]"),
resume_supported: true,
},
SlashCommandSpec {
name: "cost",
aliases: &[],
summary: "Show cumulative token usage for this session",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "resume",
aliases: &[],
summary: "Load a saved session into the REPL",
argument_hint: Some("<session-path>"),
resume_supported: false,
},
SlashCommandSpec {
name: "config",
aliases: &[],
summary: "Inspect Claude config files or merged sections",
argument_hint: Some("[env|hooks|model|plugins]"),
resume_supported: true,
},
SlashCommandSpec {
name: "mcp",
aliases: &[],
summary: "Inspect configured MCP servers",
argument_hint: Some("[list|show <server>|help]"),
resume_supported: true,
},
SlashCommandSpec {
name: "memory",
aliases: &[],
summary: "Inspect loaded Claude instruction memory files",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "init",
aliases: &[],
summary: "Create a starter CLAUDE.md for this repo",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "diff",
aliases: &[],
summary: "Show git diff for current workspace changes",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "version",
aliases: &[],
summary: "Show CLI version and build information",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "bughunter",
aliases: &[],
summary: "Inspect the codebase for likely bugs",
argument_hint: Some("[scope]"),
resume_supported: false,
},
SlashCommandSpec {
name: "commit",
aliases: &[],
summary: "Generate a commit message and create a git commit",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "pr",
aliases: &[],
summary: "Draft or create a pull request from the conversation",
argument_hint: Some("[context]"),
resume_supported: false,
},
SlashCommandSpec {
name: "issue",
aliases: &[],
summary: "Draft or create a GitHub issue from the conversation",
argument_hint: Some("[context]"),
resume_supported: false,
},
SlashCommandSpec {
name: "ultraplan",
aliases: &[],
summary: "Run a deep planning prompt with multi-step reasoning",
argument_hint: Some("[task]"),
resume_supported: false,
},
SlashCommandSpec {
name: "teleport",
aliases: &[],
summary: "Jump to a file or symbol by searching the workspace",
argument_hint: Some("<symbol-or-path>"),
resume_supported: false,
},
SlashCommandSpec {
name: "debug-tool-call",
aliases: &[],
summary: "Replay the last tool call with debug details",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "export",
aliases: &[],
summary: "Export the current conversation to a file",
argument_hint: Some("[file]"),
resume_supported: true,
},
SlashCommandSpec {
name: "session",
aliases: &[],
summary: "List, switch, fork, or delete managed local sessions",
argument_hint: Some(
"[list|switch <session-id>|fork [branch-name]|delete <session-id> [--force]]",
),
resume_supported: false,
},
SlashCommandSpec {
name: "plugin",
aliases: &["plugins", "marketplace"],
summary: "Manage HackCode plugins",
argument_hint: Some(
"[list|install <path>|enable <name>|disable <name>|uninstall <id>|update <id>]",
),
resume_supported: false,
},
SlashCommandSpec {
name: "agents",
aliases: &[],
summary: "List configured agents",
argument_hint: Some("[list|help]"),
resume_supported: true,
},
SlashCommandSpec {
name: "skills",
aliases: &["skill"],
summary: "List, install, or invoke available skills",
argument_hint: Some("[list|install <path>|help|<skill> [args]]"),
resume_supported: true,
},
SlashCommandSpec {
name: "doctor",
aliases: &[],
summary: "Diagnose setup issues and environment health",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "plan",
aliases: &[],
summary: "Toggle or inspect planning mode",
argument_hint: Some("[on|off]"),
resume_supported: true,
},
SlashCommandSpec {
name: "review",
aliases: &[],
summary: "Run a code review on current changes",
argument_hint: Some("[scope]"),
resume_supported: false,
},
SlashCommandSpec {
name: "tasks",
aliases: &[],
summary: "List and manage background tasks",
argument_hint: Some("[list|get <id>|stop <id>]"),
resume_supported: true,
},
SlashCommandSpec {
name: "theme",
aliases: &[],
summary: "Switch the terminal color theme",
argument_hint: Some("[theme-name]"),
resume_supported: true,
},
SlashCommandSpec {
name: "vim",
aliases: &[],
summary: "Toggle vim keybinding mode",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "voice",
aliases: &[],
summary: "Toggle voice input mode",
argument_hint: Some("[on|off]"),
resume_supported: false,
},
SlashCommandSpec {
name: "upgrade",
aliases: &[],
summary: "Check for and install CLI updates",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "usage",
aliases: &[],
summary: "Show detailed API usage statistics",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "stats",
aliases: &[],
summary: "Show workspace and session statistics",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "rename",
aliases: &[],
summary: "Rename the current session",
argument_hint: Some("<name>"),
resume_supported: false,
},
SlashCommandSpec {
name: "copy",
aliases: &[],
summary: "Copy conversation or output to clipboard",
argument_hint: Some("[last|all]"),
resume_supported: true,
},
SlashCommandSpec {
name: "share",
aliases: &[],
summary: "Share the current conversation",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "feedback",
aliases: &[],
summary: "Submit feedback about the current session",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "hooks",
aliases: &[],
summary: "List and manage lifecycle hooks",
argument_hint: Some("[list|run <hook>]"),
resume_supported: true,
},
SlashCommandSpec {
name: "files",
aliases: &[],
summary: "List files in the current context window",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "context",
aliases: &[],
summary: "Inspect or manage the conversation context",
argument_hint: Some("[show|clear]"),
resume_supported: true,
},
SlashCommandSpec {
name: "color",
aliases: &[],
summary: "Configure terminal color settings",
argument_hint: Some("[scheme]"),
resume_supported: true,
},
SlashCommandSpec {
name: "effort",
aliases: &[],
summary: "Set the effort level for responses",
argument_hint: Some("[low|medium|high]"),
resume_supported: true,
},
SlashCommandSpec {
name: "fast",
aliases: &[],
summary: "Toggle fast/concise response mode",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "exit",
aliases: &[],
summary: "Exit the REPL session",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "branch",
aliases: &[],
summary: "Create or switch git branches",
argument_hint: Some("[name]"),
resume_supported: false,
},
SlashCommandSpec {
name: "rewind",
aliases: &[],
summary: "Rewind the conversation to a previous state",
argument_hint: Some("[steps]"),
resume_supported: false,
},
SlashCommandSpec {
name: "summary",
aliases: &[],
summary: "Generate a summary of the conversation",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "desktop",
aliases: &[],
summary: "Open or manage the desktop app integration",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "ide",
aliases: &[],
summary: "Open or configure IDE integration",
argument_hint: Some("[vscode|cursor]"),
resume_supported: false,
},
SlashCommandSpec {
name: "tag",
aliases: &[],
summary: "Tag the current conversation point",
argument_hint: Some("[label]"),
resume_supported: true,
},
SlashCommandSpec {
name: "brief",
aliases: &[],
summary: "Toggle brief output mode",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "advisor",
aliases: &[],
summary: "Toggle advisor mode for guidance-only responses",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "stickers",
aliases: &[],
summary: "Browse and manage sticker packs",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "insights",
aliases: &[],
summary: "Show AI-generated insights about the session",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "thinkback",
aliases: &[],
summary: "Replay the thinking process of the last response",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "release-notes",
aliases: &[],
summary: "Generate release notes from recent changes",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "security-review",
aliases: &[],
summary: "Run a security review on the codebase",
argument_hint: Some("[scope]"),
resume_supported: false,
},
SlashCommandSpec {
name: "keybindings",
aliases: &[],
summary: "Show or configure keyboard shortcuts",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "privacy-settings",
aliases: &[],
summary: "View or modify privacy settings",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "output-style",
aliases: &[],
summary: "Switch output formatting style",
argument_hint: Some("[style]"),
resume_supported: true,
},
SlashCommandSpec {
name: "add-dir",
aliases: &[],
summary: "Add an additional directory to the context",
argument_hint: Some("<path>"),
resume_supported: false,
},
SlashCommandSpec {
name: "allowed-tools",
aliases: &[],
summary: "Show or modify the allowed tools list",
argument_hint: Some("[add|remove|list] [tool]"),
resume_supported: true,
},
SlashCommandSpec {
name: "api-key",
aliases: &[],
summary: "Show or set the Anthropic API key",
argument_hint: Some("[key]"),
resume_supported: false,
},
SlashCommandSpec {
name: "approve",
aliases: &["yes", "y"],
summary: "Approve a pending tool execution",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "deny",
aliases: &["no", "n"],
summary: "Deny a pending tool execution",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "undo",
aliases: &[],
summary: "Undo the last file write or edit",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "stop",
aliases: &[],
summary: "Stop the current generation",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "retry",
aliases: &[],
summary: "Retry the last failed message",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "paste",
aliases: &[],
summary: "Paste clipboard content as input",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "screenshot",
aliases: &[],
summary: "Take a screenshot and add to conversation",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "image",
aliases: &[],
summary: "Add an image file to the conversation",
argument_hint: Some("<path>"),
resume_supported: false,
},
SlashCommandSpec {
name: "terminal-setup",
aliases: &[],
summary: "Configure terminal integration settings",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "search",
aliases: &[],
summary: "Search files in the workspace",
argument_hint: Some("<query>"),
resume_supported: false,
},
SlashCommandSpec {
name: "listen",
aliases: &[],
summary: "Listen for voice input",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "speak",
aliases: &[],
summary: "Read the last response aloud",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "language",
aliases: &[],
summary: "Set the interface language",
argument_hint: Some("[language]"),
resume_supported: true,
},
SlashCommandSpec {
name: "profile",
aliases: &[],
summary: "Show or switch user profile",
argument_hint: Some("[name]"),
resume_supported: false,
},
SlashCommandSpec {
name: "max-tokens",
aliases: &[],
summary: "Show or set the max output tokens",
argument_hint: Some("[count]"),
resume_supported: true,
},
SlashCommandSpec {
name: "temperature",
aliases: &[],
summary: "Show or set the sampling temperature",
argument_hint: Some("[value]"),
resume_supported: true,
},
SlashCommandSpec {
name: "system-prompt",
aliases: &[],
summary: "Show the active system prompt",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "tool-details",
aliases: &[],
summary: "Show detailed info about a specific tool",
argument_hint: Some("<tool-name>"),
resume_supported: true,
},
SlashCommandSpec {
name: "format",
aliases: &[],
summary: "Format the last response in a different style",
argument_hint: Some("[markdown|plain|json]"),
resume_supported: false,
},
SlashCommandSpec {
name: "pin",
aliases: &[],
summary: "Pin a message to persist across compaction",
argument_hint: Some("[message-index]"),
resume_supported: false,
},
SlashCommandSpec {
name: "unpin",
aliases: &[],
summary: "Unpin a previously pinned message",
argument_hint: Some("[message-index]"),
resume_supported: false,
},
SlashCommandSpec {
name: "bookmarks",
aliases: &[],
summary: "List or manage conversation bookmarks",
argument_hint: Some("[add|remove|list]"),
resume_supported: true,
},
SlashCommandSpec {
name: "workspace",
aliases: &["cwd"],
summary: "Show or change the working directory",
argument_hint: Some("[path]"),
resume_supported: true,
},
SlashCommandSpec {
name: "history",
aliases: &[],
summary: "Show conversation history summary",
argument_hint: Some("[count]"),
resume_supported: true,
},
SlashCommandSpec {
name: "tokens",
aliases: &[],
summary: "Show token count for the current conversation",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "cache",
aliases: &[],
summary: "Show prompt cache statistics",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "providers",
aliases: &[],
summary: "List available model providers",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "notifications",
aliases: &[],
summary: "Show or configure notification settings",
argument_hint: Some("[on|off|status]"),
resume_supported: true,
},
SlashCommandSpec {
name: "changelog",
aliases: &[],
summary: "Show recent changes to the codebase",
argument_hint: Some("[count]"),
resume_supported: true,
},
SlashCommandSpec {
name: "test",
aliases: &[],
summary: "Run tests for the current project",
argument_hint: Some("[filter]"),
resume_supported: false,
},
SlashCommandSpec {
name: "lint",
aliases: &[],
summary: "Run linting for the current project",
argument_hint: Some("[filter]"),
resume_supported: false,
},
SlashCommandSpec {
name: "build",
aliases: &[],
summary: "Build the current project",
argument_hint: Some("[target]"),
resume_supported: false,
},
SlashCommandSpec {
name: "run",
aliases: &[],
summary: "Run a command in the project context",
argument_hint: Some("<command>"),
resume_supported: false,
},
SlashCommandSpec {
name: "git",
aliases: &[],
summary: "Run a git command in the workspace",
argument_hint: Some("<subcommand>"),
resume_supported: false,
},
SlashCommandSpec {
name: "stash",
aliases: &[],
summary: "Stash or unstash workspace changes",
argument_hint: Some("[pop|list|apply]"),
resume_supported: false,
},
SlashCommandSpec {
name: "blame",
aliases: &[],
summary: "Show git blame for a file",
argument_hint: Some("<file> [line]"),
resume_supported: true,
},
SlashCommandSpec {
name: "log",
aliases: &[],
summary: "Show git log for the workspace",
argument_hint: Some("[count]"),
resume_supported: true,
},
SlashCommandSpec {
name: "cron",
aliases: &[],
summary: "Manage scheduled tasks",
argument_hint: Some("[list|add|remove]"),
resume_supported: true,
},
SlashCommandSpec {
name: "team",
aliases: &[],
summary: "Manage agent teams",
argument_hint: Some("[list|create|delete]"),
resume_supported: true,
},
SlashCommandSpec {
name: "benchmark",
aliases: &[],
summary: "Run performance benchmarks",
argument_hint: Some("[suite]"),
resume_supported: false,
},
SlashCommandSpec {
name: "migrate",
aliases: &[],
summary: "Run pending data migrations",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "reset",
aliases: &[],
summary: "Reset configuration to defaults",
argument_hint: Some("[section]"),
resume_supported: false,
},
SlashCommandSpec {
name: "telemetry",
aliases: &[],
summary: "Show or configure telemetry settings",
argument_hint: Some("[on|off|status]"),
resume_supported: true,
},
SlashCommandSpec {
name: "env",
aliases: &[],
summary: "Show environment variables visible to tools",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "project",
aliases: &[],
summary: "Show project detection info",
argument_hint: None,
resume_supported: true,
},
SlashCommandSpec {
name: "templates",
aliases: &[],
summary: "List or apply prompt templates",
argument_hint: Some("[list|apply <name>]"),
resume_supported: false,
},
SlashCommandSpec {
name: "explain",
aliases: &[],
summary: "Explain a file or code snippet",
argument_hint: Some("<path> [line-range]"),
resume_supported: false,
},
SlashCommandSpec {
name: "refactor",
aliases: &[],
summary: "Suggest refactoring for a file or function",
argument_hint: Some("<path> [scope]"),
resume_supported: false,
},
SlashCommandSpec {
name: "docs",
aliases: &[],
summary: "Generate or show documentation",
argument_hint: Some("[path]"),
resume_supported: false,
},
SlashCommandSpec {
name: "fix",
aliases: &[],
summary: "Fix errors in a file or project",
argument_hint: Some("[path]"),
resume_supported: false,
},
SlashCommandSpec {
name: "perf",
aliases: &[],
summary: "Analyze performance of a function or file",
argument_hint: Some("<path>"),
resume_supported: false,
},
SlashCommandSpec {
name: "chat",
aliases: &[],
summary: "Switch to free-form chat mode",
argument_hint: None,
resume_supported: false,
},
SlashCommandSpec {
name: "focus",
aliases: &[],
summary: "Focus context on specific files or directories",
argument_hint: Some("<path> [path...]"),
resume_supported: false,
},
SlashCommandSpec {
name: "unfocus",
aliases: &[],
summary: "Remove focus from files or directories",
argument_hint: Some("[path...]"),
resume_supported: false,
},
SlashCommandSpec {
name: "web",
aliases: &[],
summary: "Fetch and summarize a web page",
argument_hint: Some("<url>"),
resume_supported: false,
},
SlashCommandSpec {
name: "map",
aliases: &[],
summary: "Show a visual map of the codebase structure",
argument_hint: Some("[depth]"),
resume_supported: true,
},
SlashCommandSpec {
name: "symbols",
aliases: &[],
summary: "List symbols (functions, classes, etc.) in a file",
argument_hint: Some("<path>"),
resume_supported: true,
},
SlashCommandSpec {
name: "references",
aliases: &[],
summary: "Find all references to a symbol",
argument_hint: Some("<symbol>"),
resume_supported: false,
},
SlashCommandSpec {
name: "definition",
aliases: &[],
summary: "Go to the definition of a symbol",
argument_hint: Some("<symbol>"),
resume_supported: false,
},
SlashCommandSpec {
name: "hover",
aliases: &[],
summary: "Show hover information for a symbol",
argument_hint: Some("<symbol>"),
resume_supported: true,
},
SlashCommandSpec {
name: "diagnostics",
aliases: &[],
summary: "Show LSP diagnostics for a file",
argument_hint: Some("[path]"),
resume_supported: true,
},
SlashCommandSpec {
name: "autofix",
aliases: &[],
summary: "Auto-fix all fixable diagnostics",
argument_hint: Some("[path]"),
resume_supported: false,
},
SlashCommandSpec {
name: "multi",
aliases: &[],
summary: "Execute multiple slash commands in sequence",
argument_hint: Some("<commands>"),
resume_supported: false,
},
SlashCommandSpec {
name: "macro",
aliases: &[],
summary: "Record or replay command macros",
argument_hint: Some("[record|stop|play <name>]"),
resume_supported: false,
},
SlashCommandSpec {
name: "alias",
aliases: &[],
summary: "Create a command alias",
argument_hint: Some("<name> <command>"),
resume_supported: true,
},
SlashCommandSpec {
name: "parallel",
aliases: &[],
summary: "Run commands in parallel subagents",
argument_hint: Some("<count> <prompt>"),
resume_supported: false,
},
SlashCommandSpec {
name: "agent",
aliases: &[],
summary: "Manage sub-agents and spawned sessions",
argument_hint: Some("[list|spawn|kill]"),
resume_supported: true,