Skip to content

Commit d100f64

Browse files
[chore] : Removes redundant tool name (#3393)
Co-authored-by: Kenneth S. <kennvene@amazon.com>
1 parent f15d287 commit d100f64

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ impl CustomTool {
149149
pub fn queue_description(&self, output: &mut impl Write) -> Result<()> {
150150
queue!(
151151
output,
152-
style::Print("Running "),
152+
style::Print("Running tool "),
153153
StyledText::brand_fg(),
154154
style::Print(&self.name),
155155
StyledText::reset(),

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ impl Introspect {
113113

114114
// TODO: Add KIRO CLI documentation links when available
115115
// documentation.push_str("--- GitHub References ---\n");
116-
// documentation.push_str("INSTRUCTION: When your response uses information from any of these documentation files, include the relevant GitHub link(s) at the end:\n");
117-
// documentation.push_str("• README.md: https://github.com/kiro-cli/kiro-cli/blob/main/README.md\n");
116+
// documentation.push_str("INSTRUCTION: When your response uses information from any of these
117+
// documentation files, include the relevant GitHub link(s) at the end:\n"); documentation.push_str("• README.md: https://github.com/kiro-cli/kiro-cli/blob/main/README.md\n");
118118

119119
let response = IntrospectResponse {
120120
built_in_help: Some(help_content),

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ impl Tool {
220220
StyledText::secondary_fg(),
221221
style::Print(" (from mcp server: "),
222222
style::Print(&tool.server_name),
223-
style::Print(", using tool: "),
224-
style::Print(self.display_name()),
225223
style::Print(")"),
226224
StyledText::reset(),
227225
)?;

0 commit comments

Comments
 (0)