diff --git a/CHANGELOG.md b/CHANGELOG.md index b906f134..d1538684 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file. - Added queued message mode with chips, batching, and idle auto‑send (including attachments). - Added queue mode toggle to OpenChamber settings (chat section) with persistence across runtimes. - Fixed scroll position persistence for active conversation turns across session switches. -- Refactored command management with ability to configure project/user scoped commands. +- Refactored Agents/Commands management with ability to configure project/user scopes. ## [1.3.7] - 2025-12-28 diff --git a/packages/desktop/src-tauri/src/main.rs b/packages/desktop/src-tauri/src/main.rs index da05b23a..d97734b9 100644 --- a/packages/desktop/src-tauri/src/main.rs +++ b/packages/desktop/src-tauri/src/main.rs @@ -1190,18 +1190,27 @@ async fn handle_agent_route( req: Request
, name: String, ) -> ResultSelect an agent from the sidebar
-or create a new one
-- Configure agent identity and behavior mode -
-- Primary: main agent, Subagent: helper agent, All: both modes -
-- Configure model and generation parameters -
-- Override the default system prompt for this agent -
-- Select tools this agent can access -
-- Configure permission levels for different operations -
-- Controls file editing permissions. -
-Full: Auto-approves all tool requests
-Allow: Allows file editing with standard checks
-Ask: Prompts for confirmation before editing
-Deny: Blocks all file editing operations
-- Permission for running bash commands -
-Allow: Run bash commands without confirmation
-Ask: Prompt for confirmation before execution
-Deny: Block all bash command execution
-- Permission for fetching web content -
-Allow: Fetch web content without confirmation
-Ask: Prompt for confirmation before fetching
-Deny: Block all web content access
-Select an agent from the sidebar
+or create a new one
++ Configure agent identity and behavior mode +
++ Primary: main agent, Subagent: helper agent, All: both modes +
++ Configure model and generation parameters +
++ Override the default system prompt for this agent +
++ Select tools this agent can access +
++ Configure permission levels for different operations +
++ Controls file editing permissions. +
+Allow: Allows file editing without confirmation
+Ask: Prompts for confirmation before editing
+Deny: Blocks all file editing operations
++ Permission for running bash commands +
+Allow: Run bash commands without confirmation
+Ask: Prompt for confirmation before execution
+Deny: Block all bash command execution
++ Permission for fetching web content +
+Allow: Fetch web content without confirmation
+Ask: Prompt for confirmation before fetching
+Deny: Block all web content access
++ Permission for loading skills +
+Allow: Load skills without confirmation
+Ask: Prompt for confirmation before loading skills
+Deny: Block all skill loading
++ Permission for repeated identical tool calls +
+Allow: Continue without confirmation
+Ask: Prompt when a doom loop is detected
+Deny: Block repeated tool calls
++ Permission for file access outside project +
+Allow: Access external paths without confirmation
+Ask: Prompt before accessing external paths
+Deny: Block external directory access
+No agents configured
+Use the + button above to create one
+