You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/chat-cli/src/cli/chat/cli/profile.rs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -53,10 +53,10 @@ use crate::util::{
53
53
before_long_help = "Agents allow you to organize and manage different sets of context files for different projects or tasks.
54
54
55
55
Notes
56
-
• Launch q chat with a specific agent with --agent
56
+
• Launch kiro-cli chat with a specific agent with --agent
57
57
• Construct an agent under ~/.kiro-cli/cli-agents/ (accessible globally) or cwd/.kiro-cli/cli-agents (accessible in workspace)
58
58
• See example config under global directory
59
-
• Set default agent to assume with settings by running \"q settings chat.defaultAgent agent_name\"
59
+
• Set default agent to assume with settings by running \"kiro-cli settings chat.defaultAgent agent_name\"
60
60
• Each agent maintains its own set of context and customizations"
61
61
)]
62
62
/// Subcommands for managing agents in the chat CLI
@@ -98,7 +98,7 @@ pub enum AgentSubcommand {
98
98
},
99
99
/// Show agent config schema
100
100
Schema,
101
-
/// Define a default agent to use when q chat launches
101
+
/// Define a default agent to use when kiro-cli chat launches
102
102
SetDefault{
103
103
/// Name of the agent to set as default
104
104
#[arg(long, short)]
@@ -404,7 +404,7 @@ impl AgentSubcommand {
404
404
session.stderr,
405
405
StyledText::warning_fg(),
406
406
style::Print(format!(
407
-
"To make changes or create agents, please do so via create the corresponding config in {global_path}, where you would also find an example config for your reference.\nTo switch agent, launch another instance of q chat with --agent.\n\n"
407
+
"To make changes or create agents, please do so via create the corresponding config in {global_path}, where you would also find an example config for your reference.\nTo switch agent, launch another instance of kiro-cli chat with --agent.\n\n"
408
408
)),
409
409
StyledText::reset_attributes()
410
410
)?;
@@ -422,7 +422,7 @@ impl AgentSubcommand {
422
422
StyledText::success_fg(),
423
423
style::Print("✓ Default agent set to '"),
424
424
style::Print(&agent.name),
425
-
style::Print("'. This will take effect the next time q chat is launched.\n"),
425
+
style::Print("'. This will take effect the next time kiro-cli chat is launched.\n"),
0 commit comments