From b3a935fbe7ed4156715153fa94d28ef4d4de0ceb Mon Sep 17 00:00:00 2001 From: patriceckhart Date: Fri, 24 Apr 2026 15:30:41 +0200 Subject: [PATCH] fix: reorder /jail and /unjail together in slash catalog --- internal/agent/modes/slash_suggest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/agent/modes/slash_suggest.go b/internal/agent/modes/slash_suggest.go index 03d6325..c966b28 100644 --- a/internal/agent/modes/slash_suggest.go +++ b/internal/agent/modes/slash_suggest.go @@ -43,8 +43,8 @@ var slashCatalog = []slashCommand{ {Name: "/study", Desc: "read every file in the current directory so the agent has full project context"}, {Name: "/btw", Desc: "side-chat that doesn't add to the main thread (saves tokens)"}, {Name: "/jail", Desc: "confine tools to the current directory"}, - {Name: "/skills", Desc: "list discovered skills (SKILL.md files)"}, {Name: "/unjail", Desc: "allow tools to touch paths outside this directory"}, + {Name: "/skills", Desc: "list discovered skills (SKILL.md files)"}, {Name: "/reload-ext", Desc: "hot-reload all extensions (re-read manifests and respawn)"}, {Name: "/yolo", Desc: "turn off --no-yolo confirmation for the rest of this session"}, {Name: "/telegram", Desc: "connect, disconnect, or show status of the telegram bridge"},