Skip to content

Commit 90d66ec

Browse files
committed
updated the instorspect docs to refer to kiro CLI.
1 parent 1cf2117 commit 90d66ec

File tree

14 files changed

+56
-71
lines changed

14 files changed

+56
-71
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing Guidelines
22

3-
Thank you for your interest in contributing to Amazon Q. Whether it's a bug report, new feature, correction, or additional
3+
Thank you for your interest in contributing to KIRO CLI. Whether it's a bug report, new feature, correction, or additional
44
documentation, we greatly value feedback and contributions from our community.
55

66
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Amazon Q CLI
1+
# KIRO CLI
22

33
## Installation
44

@@ -12,7 +12,7 @@
1212

1313
## Contributing
1414

15-
Thank you so much for considering to contribute to Amazon Q.
15+
Thank you so much for considering to contribute to KIRO CLI.
1616

1717
Before getting started, see our [contributing docs](CONTRIBUTING.md#security-issue-notifications).
1818

@@ -48,7 +48,7 @@ cargo install typos-cli
4848

4949
## Project Layout
5050

51-
- [`chat_cli`](crates/chat-cli/) - the `q` CLI, allows users to interface with Amazon Q Developer from
51+
- [`chat_cli`](crates/chat-cli/) - the `kiro` CLI, allows users to interface with KIRO Developer from
5252
the command line
5353
- [`scripts/`](scripts/) - Contains ops and build related scripts
5454
- [`crates/`](crates/) - Contains all rust crates

book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[book]
2-
title = "Amazon Q CLI Technical Documentation"
2+
title = "KIRO CLI Technical Documentation"
33
src = "docs"

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

Lines changed: 5 additions & 20 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 `kiro-cli settings` command from terminal, NOT /settings):\n\n",
98+
"KIRO 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
@@ -111,25 +111,10 @@ impl Introspect {
111111
documentation.push_str("\n\n--- CRITICAL INSTRUCTION ---\n");
112112
documentation.push_str("YOU MUST ONLY provide information that is explicitly documented in the sections above. If specific details about any tool, feature, or command are not documented, you MUST clearly state that the information is not available in the documentation. DO NOT generate plausible-sounding information or make assumptions about undocumented features.\n\n");
113113

114-
documentation.push_str("--- GitHub References ---\n");
115-
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");
116-
documentation.push_str("• README.md: https://github.com/aws/amazon-q-developer-cli/blob/main/README.md\n");
117-
documentation.push_str(
118-
"• Built-in Tools: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/built-in-tools.md\n",
119-
);
120-
documentation
121-
.push_str("• Experiments: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/experiments.md\n");
122-
documentation.push_str("• Agent File Locations: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/agent-file-locations.md\n");
123-
documentation
124-
.push_str("• Tangent Mode: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/tangent-mode.md\n");
125-
documentation.push_str(
126-
"• Introspect Tool: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/introspect-tool.md\n",
127-
);
128-
documentation
129-
.push_str("• Todo Lists: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/todo-lists.md\n");
130-
documentation.push_str("• Hooks: https://github.com/aws/amazon-q-developer-cli/blob/main/docs/hooks.md\n");
131-
documentation
132-
.push_str("• Contributing: https://github.com/aws/amazon-q-developer-cli/blob/main/CONTRIBUTING.md\n");
114+
// TODO: Add KIRO CLI documentation links when available
115+
// 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");
133118

134119
let response = IntrospectResponse {
135120
built_in_help: Some(help_content),

docs/agent-file-locations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Local agents are stored in the current working directory under:
1010
.amazonq/cli-agents/
1111
```
1212

13-
These agents are specific to the current workspace or project and are only available when running Q CLI from that directory or its subdirectories.
13+
These agents are specific to the current workspace or project and are only available when running KIRO CLI from that directory or its subdirectories.
1414

1515
**Example structure:**
1616
```
@@ -33,7 +33,7 @@ Global agents are stored in your home directory under:
3333

3434
Note: For globally available agents, the `amazonq` directory is in the `.aws` folder.
3535

36-
These agents are available from any directory when using Q CLI.
36+
These agents are available from any directory when using KIRO CLI.
3737

3838
**Example structure:**
3939
```
@@ -45,14 +45,14 @@ These agents are available from any directory when using Q CLI.
4545

4646
## Agent Precedence
4747

48-
When Q CLI looks for an agent, it follows this precedence order:
48+
When KIRO CLI looks for an agent, it follows this precedence order:
4949

5050
1. **Local first**: Checks `.amazonq/cli-agents/` in the current working directory
5151
2. **Global fallback**: If not found locally, checks `~/.aws/amazonq/cli-agents/` in the home directory
5252

5353
## Naming Conflicts
5454

55-
If both local and global directories contain agents with the same name, the **local agent takes precedence**. When this happens, Q CLI will display a warning message:
55+
If both local and global directories contain agents with the same name, the **local agent takes precedence**. When this happens, KIRO CLI will display a warning message:
5656

5757
```
5858
WARNING: Agent conflict for my-agent. Using workspace version.
@@ -107,4 +107,4 @@ EOF
107107

108108
## Directory Creation
109109

110-
Q CLI will automatically create the global agents directory (`~/.aws/amazonq/cli-agents/`) if it doesn't exist. However, you need to manually create the local agents directory (`.amazonq/cli-agents/`) in your workspace if you want to use local agents.
110+
KIRO CLI will automatically create the global agents directory (`~/.aws/amazonq/cli-agents/`) if it doesn't exist. However, you need to manually create the local agents directory (`.amazonq/cli-agents/`) in your workspace if you want to use local agents.

docs/agent-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ The `model` field specifies the model ID to use for this agent. If not specified
363363
}
364364
```
365365

366-
The model ID must match one of the available models returned by the Q CLI's model service. You can see available models by using the `/model` command in an active chat session.
366+
The model ID must match one of the available models returned by the KIRO CLI's model service. You can see available models by using the `/model` command in an active chat session.
367367

368368
If the specified model is not available, the agent will fall back to the default model and display a warning.
369369

docs/built-in-tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Built-in Tools
22

3-
Amazon Q CLI includes several built-in tools that agents can use. This document describes each tool and its configuration options.
3+
KIRO CLI includes several built-in tools that agents can use. This document describes each tool and its configuration options.
44

55
- [`execute_bash`](#execute_bash-tool) — Execute a shell command.
66
- [`fs_read`](#fs_read-tool) — Read files, directories, and images.
77
- [`fs_write`](#fs_write-tool) — Create and edit files.
8-
- [`introspect`](#introspect-tool) — Provide information about Q CLI capabilities and documentation.
8+
- [`introspect`](#introspect-tool) — Provide information about KIRO CLI capabilities and documentation.
99
- [`report_issue`](#report_issue-tool) — Open a GitHub issue template.
1010
- [`knowledge`](#knowledge-tool) — Store and retrieve information in a knowledge base.
1111
- [`thinking`](#thinking-tool) — Internal reasoning mechanism.
@@ -91,11 +91,11 @@ Tool for creating and editing files.
9191

9292
## Introspect Tool
9393

94-
Provide information about Q CLI capabilities, features, commands, and documentation. This tool accesses Q CLI's built-in documentation and help content to answer questions about the CLI's functionality.
94+
Provide information about KIRO CLI capabilities, features, commands, and documentation. This tool accesses KIRO CLI's built-in documentation and help content to answer questions about the CLI's functionality.
9595

9696
### Usage
9797

98-
The introspect tool is automatically used when you ask questions about Q CLI itself, such as:
98+
The introspect tool is automatically used when you ask questions about KIRO CLI itself, such as:
9999
- "What can you do?"
100100
- "How do I save conversations?"
101101
- "What commands are available?"

docs/default-agent-behavior.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Default Agent Behavior
22

3-
When no specific agent is configured or when the specified agent cannot be found, Q CLI follows a fallback hierarchy to determine which agent to use.
3+
When no specific agent is configured or when the specified agent cannot be found, KIRO CLI follows a fallback hierarchy to determine which agent to use.
44

55
## Agent Selection Priority
66

7-
Q CLI selects an agent in the following order of priority:
7+
KIRO CLI selects an agent in the following order of priority:
88

99
### 1. Command-Line Specified Agent
10-
The agent specified via the `--agent` flag when starting Q CLI:
10+
The agent specified via the `--agent` flag when starting KIRO CLI:
1111

1212
```bash
1313
q chat --agent my-custom-agent
1414
```
1515

16-
If this agent exists, it will be used. If not, Q CLI will display an error and fall back to the next option.
16+
If this agent exists, it will be used. If not, KIRO CLI will display an error and fall back to the next option.
1717

1818
### 2. User-Defined Default Agent
1919
The default agent configured via the settings system:
@@ -22,12 +22,12 @@ The default agent configured via the settings system:
2222
q settings chat.defaultAgent my-preferred-agent
2323
```
2424

25-
This setting is stored in your Q CLI configuration and will be used across all sessions unless overridden by the `--agent` flag.
25+
This setting is stored in your KIRO CLI configuration and will be used across all sessions unless overridden by the `--agent` flag.
2626

27-
If the configured default agent cannot be found, Q CLI will display an error and fall back to the built-in default.
27+
If the configured default agent cannot be found, KIRO CLI will display an error and fall back to the built-in default.
2828

2929
### 3. Built-in Default Agent
30-
If no agent is specified or found, Q CLI uses a built-in default agent with the following configuration:
30+
If no agent is specified or found, KIRO CLI uses a built-in default agent with the following configuration:
3131

3232
```json
3333
{

docs/experiments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Experimental Features
22

3-
Amazon Q CLI includes experimental features that can be toggled on/off using the `/experiment` command. These features are in active development and may change or be removed at any time.
3+
KIRO CLI includes experimental features that can be toggled on/off using the `/experiment` command. These features are in active development and may change or be removed at any time.
44

55
## Available Experiments
66

docs/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Amazon Q CLI
1+
# KIRO CLI
22

3-
Welcome to the supplementary Amazon Q CLI Developer documentation.
4-
This documentation supplements [the primary Amazon Q CLI documentation](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line.html).
3+
Welcome to the supplementary KIRO CLI Developer documentation.
4+
This documentation supplements the primary KIRO CLI documentation.
55

66
These docs are experimental, work in progress, and subject to change. As of now, they do not represent latest stable builds, instead documenting the functionality of development builds.

0 commit comments

Comments
 (0)