jif-oai
2026-01-23 13:57:59 +01:00
committed by GitHub
parent afa08570f2
commit f30f39b28b
6 changed files with 642 additions and 146 deletions

View File

@@ -26,6 +26,7 @@ pub enum SlashCommand {
Init,
Compact,
Collab,
Agent,
// Undo,
Diff,
Mention,
@@ -60,6 +61,7 @@ impl SlashCommand {
SlashCommand::Ps => "list background terminals",
SlashCommand::Model => "choose what model and reasoning effort to use",
SlashCommand::Collab => "change collaboration mode (experimental)",
SlashCommand::Agent => "switch the active agent thread",
SlashCommand::Approvals => "choose what Codex can do without approval",
SlashCommand::Permissions => "choose what Codex is allowed to do",
SlashCommand::ElevateSandbox => "set up elevated agent sandbox",
@@ -105,6 +107,7 @@ impl SlashCommand {
SlashCommand::Rollout => true,
SlashCommand::TestApproval => true,
SlashCommand::Collab => true,
SlashCommand::Agent => true,
}
}