Skip to content

Commit 2e05f4b

Browse files
committed
Rebrand command references from 'q' to 'kiro-cli'
Changes made: • constants.rs: Replaced complex ASCII art with simple 'KIRO' text • constants.rs: Updated 'q chat --resume' → 'kiro-cli chat --resume' • constants.rs: Updated 'q settings' → 'kiro-cli settings' (8 occurrences) • constants.rs: Updated 'q issue' → 'kiro-cli issue' • introspect.rs: Updated 'q settings' → 'kiro-cli settings' (2 occurrences) • knowledge.rs: Updated 'q settings chat.enableKnowledge' → 'kiro-cli settings chat.enableKnowledge' • todo.rs: Updated 'q settings chat.enableTodoList' → 'kiro-cli settings chat.enableTodoList' • thinking.rs: Updated 'q settings chat.enableThinking' → 'kiro-cli settings chat.enableThinking' • compact.rs: Updated 'q settings chat.disableAutoCompaction' → 'kiro-cli settings chat.disableAutoCompaction' • tangent.rs: Updated 'q settings chat.enableTangentMode' → 'kiro-cli settings chat.enableTangentMode' • profile.rs: Updated 'q settings chat.defaultAgent' → 'kiro-cli settings chat.defaultAgent' • profile.rs: Updated 'q chat' → 'kiro-cli chat' (3 occurrences) • checkpoint.rs: Updated 'q settings chat.enableCheckpoint' → 'kiro-cli settings chat.enableCheckpoint' • todos.rs: Updated 'q settings chat.enableTodoList' → 'kiro-cli settings chat.enableTodoList' • directories.rs: Updated 'q chat' → 'kiro-cli chat' (4 occurrences) Total: 30+ command references updated for consistent Kiro branding
1 parent 239d83d commit 2e05f4b

File tree

12 files changed

+30
-39
lines changed

12 files changed

+30
-39
lines changed

crates/chat-cli/src/cli/chat/cli/checkpoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl CheckpointSubcommand {
9191
execute!(
9292
session.stderr,
9393
StyledText::error_fg(),
94-
style::Print("\nCheckpoint is disabled. Enable it with: q settings chat.enableCheckpoint true\n"),
94+
style::Print("\nCheckpoint is disabled. Enable it with: kiro-cli settings chat.enableCheckpoint true\n"),
9595
StyledText::reset(),
9696
)?;
9797
return Ok(ChatState::PromptUser {

crates/chat-cli/src/cli/chat/cli/compact.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ How it works
2929
• The assistant will reference the summary context in future responses
3030
3131
Compaction will be automatically performed whenever the context window overflows.
32-
To disable this behavior, run: `q settings chat.disableAutoCompaction true`"
32+
To disable this behavior, run: `kiro-cli settings chat.disableAutoCompaction true`"
3333
)]
3434
/// Arguments for the `/compact` command that summarizes conversation history to free up context
3535
/// space.

crates/chat-cli/src/cli/chat/cli/knowledge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl KnowledgeSubcommand {
8989
queue!(
9090
session.stderr,
9191
StyledText::error_fg(),
92-
style::Print("\nKnowledge tool is disabled. Enable it with: q settings chat.enableKnowledge true\n"),
92+
style::Print("\nKnowledge tool is disabled. Enable it with: kiro-cli settings chat.enableKnowledge true\n"),
9393
StyledText::warning_fg(),
9494
style::Print("💡 Your knowledge base data is preserved and will be available when re-enabled.\n\n"),
9595
StyledText::reset(),

crates/chat-cli/src/cli/chat/cli/profile.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ use crate::util::{
5353
before_long_help = "Agents allow you to organize and manage different sets of context files for different projects or tasks.
5454
5555
Notes
56-
• Launch q chat with a specific agent with --agent
56+
• Launch kiro-cli chat with a specific agent with --agent
5757
• Construct an agent under ~/.kiro-cli/cli-agents/ (accessible globally) or cwd/.kiro-cli/cli-agents (accessible in workspace)
5858
• 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\"
6060
• Each agent maintains its own set of context and customizations"
6161
)]
6262
/// Subcommands for managing agents in the chat CLI
@@ -98,7 +98,7 @@ pub enum AgentSubcommand {
9898
},
9999
/// Show agent config schema
100100
Schema,
101-
/// Define a default agent to use when q chat launches
101+
/// Define a default agent to use when kiro-cli chat launches
102102
SetDefault {
103103
/// Name of the agent to set as default
104104
#[arg(long, short)]
@@ -404,7 +404,7 @@ impl AgentSubcommand {
404404
session.stderr,
405405
StyledText::warning_fg(),
406406
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"
408408
)),
409409
StyledText::reset_attributes()
410410
)?;
@@ -422,7 +422,7 @@ impl AgentSubcommand {
422422
StyledText::success_fg(),
423423
style::Print("✓ Default agent set to '"),
424424
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"),
426426
StyledText::reset(),
427427
)?;
428428
},

crates/chat-cli/src/cli/chat/cli/tangent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl TangentArgs {
5353
execute!(
5454
session.stderr,
5555
StyledText::error_fg(),
56-
style::Print("\nTangent mode is disabled. Enable it with: q settings chat.enableTangentMode true\n"),
56+
style::Print("\nTangent mode is disabled. Enable it with: kiro-cli settings chat.enableTangentMode true\n"),
5757
StyledText::reset(),
5858
)?;
5959
return Ok(ChatState::PromptUser {

crates/chat-cli/src/cli/chat/cli/todos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl TodoSubcommand {
7272
execute!(
7373
session.stderr,
7474
StyledText::error_fg(),
75-
style::Print("Todo lists are disabled. Enable them with: q settings chat.enableTodoList true\n"),
75+
style::Print("Todo lists are disabled. Enable them with: kiro-cli settings chat.enableTodoList true\n"),
7676
StyledText::reset(),
7777
)?;
7878
return Ok(ChatState::PromptUser {

crates/chat-cli/src/cli/chat/tools/introspect.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl Introspect {
9595
// Add settings information dynamically
9696
documentation.push_str("\n\n--- Available Settings ---\n");
9797
documentation.push_str(
98-
"Q CLI supports these configuration settings (use `q settings` command from terminal, NOT /settings):\n\n",
98+
"Q CLI supports these configuration settings (use `kiro-cli settings` command from terminal, NOT /settings):\n\n",
9999
);
100100

101101
// Automatically iterate over all settings with descriptions
@@ -105,7 +105,7 @@ impl Introspect {
105105
}
106106

107107
documentation.push_str(
108-
"\nNOTE: Settings are managed via `q settings` command from terminal, not slash commands in chat.\n",
108+
"\nNOTE: Settings are managed via `kiro-cli settings` command from terminal, not slash commands in chat.\n",
109109
);
110110

111111
documentation.push_str("\n\n--- CRITICAL INSTRUCTION ---\n");

crates/chat-cli/src/cli/chat/tools/knowledge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use crate::util::tool_permission_checker::is_tool_in_allowlist;
2929
/// It provides semantic search capabilities for files, directories, and text content.
3030
///
3131
/// This feature can be enabled/disabled via settings:
32-
/// `q settings chat.enableKnowledge true`
32+
/// `kiro-cli settings chat.enableKnowledge true`
3333
#[derive(Debug, Clone, Deserialize)]
3434
#[serde(tag = "command", rename_all = "lowercase")]
3535
pub enum Knowledge {

crates/chat-cli/src/cli/chat/tools/thinking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use crate::theme::StyledText;
2323
/// navigate complex decision trees, and improve the quality of responses in multi-step scenarios.
2424
///
2525
/// This is a beta feature that can be enabled/disabled via settings:
26-
/// `q settings chat.enableThinking true`
26+
/// `kiro-cli settings chat.enableThinking true`
2727
#[derive(Debug, Clone, Deserialize)]
2828
pub struct Thinking {
2929
/// The thought content that the model wants to process

crates/chat-cli/src/cli/chat/tools/todo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl TodoList {
224224
queue!(
225225
output,
226226
StyledText::error_fg(),
227-
style::Print("Todo lists are disabled. Enable them with: q settings chat.enableTodoList true"),
227+
style::Print("Todo lists are disabled. Enable them with: kiro-cli settings chat.enableTodoList true"),
228228
StyledText::reset(),
229229
)?;
230230
return Ok(InvokeOutput {

0 commit comments

Comments
 (0)