File tree 2 files changed +4
-3
lines changed
crates/q_cli/src/cli/chat 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,8 @@ impl ToolsSubcommand {
175
175
const BASE_COMMAND : & str = color_print:: cstr! { "<cyan!>Usage: /tools [SUBCOMMAND]</cyan!>
176
176
177
177
<cyan!>Description</cyan!>
178
- Show the current set of tools and their permission settings.
178
+ Show the current set of tools and their permission setting.
179
+ The permission setting states when user confirmation is required. Trusted tools never require confirmation.
179
180
Alternatively, specify a subcommand to modify the tool permissions." } ;
180
181
const TRUST_USAGE : & str = "/tools trust <tool name>" ;
181
182
const UNTRUST_USAGE : & str = "/tools untrust <tool name>" ;
Original file line number Diff line number Diff line change @@ -205,8 +205,8 @@ impl ToolPermissions {
205
205
let label = match tool_name {
206
206
"fs_read" => "Trusted" ,
207
207
"fs_write" => "Per-request" ,
208
- "execute_bash" => "Read -only commands" ,
209
- "use_aws" => "Read -only commands" ,
208
+ "execute_bash" => "Write -only commands" ,
209
+ "use_aws" => "Write -only commands" ,
210
210
"report_issue" => "Trusted" ,
211
211
_ => "Per-request" ,
212
212
} ;
You can’t perform that action at this time.
0 commit comments