File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed
Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ use crate::util::{
7171 paths,
7272} ;
7373
74- pub const DEFAULT_AGENT_NAME : & str = "q_cli_default " ;
74+ pub const DEFAULT_AGENT_NAME : & str = "default " ;
7575
7676#[ derive( Debug , Error ) ]
7777pub enum AgentConfigError {
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ impl ClearArgs {
2929 "\n Are you sure? This will erase the conversation history and context from hooks for the current session. "
3030 ) ,
3131 style:: Print ( "[" ) ,
32- StyledText :: success_fg ( ) ,
32+ StyledText :: current_item_fg ( ) ,
3333 style:: Print ( "y" ) ,
3434 StyledText :: secondary_fg( ) ,
3535 style:: Print ( "/" ) ,
36- StyledText :: success_fg ( ) ,
36+ StyledText :: current_item_fg ( ) ,
3737 style:: Print ( "n" ) ,
3838 StyledText :: secondary_fg( ) ,
3939 style:: Print ( "]:\n \n " ) ,
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ use anstream::{
55use crossterm:: style:: Stylize ;
66use eyre:: Result ;
77
8+ use crate :: constants:: GITHUB_ISSUES_URL ;
89use crate :: os:: Os ;
910use crate :: os:: diagnostics:: Diagnostics ;
10- use crate :: util:: GITHUB_REPO_NAME ;
1111use crate :: util:: system_info:: is_remote;
1212
1313const TEMPLATE_NAME : & str = "1_bug_report_template.yml" ;
@@ -70,10 +70,7 @@ impl IssueCreator {
7070 params. push ( ( "reproduce" , warning ( t) ) ) ;
7171 }
7272
73- let url = url:: Url :: parse_with_params (
74- & format ! ( "https://github.com/{GITHUB_REPO_NAME}/issues/new" ) ,
75- params. iter ( ) ,
76- ) ?;
73+ let url = url:: Url :: parse_with_params ( GITHUB_ISSUES_URL , params. iter ( ) ) ?;
7774
7875 if is_remote ( ) || crate :: util:: open:: open_url_async ( url. as_str ( ) ) . await . is_err ( ) {
7976 println ! ( "Issue Url: {}" , url. as_str( ) . underlined( ) ) ;
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ pub const CLI_NAME: &str = "kiro-cli";
1111/// Client name for authentication purposes
1212pub const CLIENT_NAME : & str = "Kiro Developer for command line" ;
1313
14+ /// GitHub issues URL for bug reports and feature requests
15+ pub const GITHUB_ISSUES_URL : & str = "https://github.com/kirodotdev/Kiro/issues/new" ;
16+
1417/// Error message templates
1518pub mod error_messages {
1619 /// Standard error message for when the service is having trouble responding
Original file line number Diff line number Diff line change 22pub const CLI_BINARY_NAME : & str = "kiro-cli" ;
33pub const CHAT_BINARY_NAME : & str = "kiro-cli-chat" ;
44
5- pub const GITHUB_REPO_NAME : & str = "aws/amazon-q-developer-cli" ;
6-
75pub const MCP_SERVER_TOOL_DELIMITER : & str = "/" ;
86
97pub const GOV_REGIONS : & [ & str ] = & [ "us-gov-east-1" , "us-gov-west-1" ] ;
You can’t perform that action at this time.
0 commit comments