Skip to content

Commit fc00a02

Browse files
authored
Merge pull request #279 from kagent-dev/adb-gs
Revise getting started
2 parents 4de0592 + 69ff973 commit fc00a02

File tree

2 files changed

+5
-38
lines changed
  • src/app/docs/kagent

2 files changed

+5
-38
lines changed

src/app/docs/kagent/getting-started/quickstart/page.mdx

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ To run the AI agents you'll also need an [OpenAI](https://openai.com) API key. Y
4444
curl https://raw.githubusercontent.com/kagent-dev/kagent/refs/heads/main/scripts/get-kagent | bash
4545
```
4646

47-
3. Install kagent to the cluster by using the CLI. By default, kagent installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
47+
3. Install kagent to the cluster by using the CLI. The following command installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
4848

4949
```bash
50-
kagent install
50+
kagent install --profile demo
5151
```
5252

5353
Example output:
@@ -143,41 +143,8 @@ Interact with kagent in your terminal.
143143
```shell
144144
kagent invoke -t "What Helm charts are in my cluster?" --agent helm-agent
145145
```
146-
147-
Example output:
148-
149-
```console
150-
Event Type: ToolCall(s)
151-
Source: helm_agent
152-
+---+--------------------+-----------------------------------------+
153-
| # | NAME | ARGUMENTS |
154-
+---+--------------------+-----------------------------------------+
155-
| 0 | helm_list_releases | {"all_namespaces":true,"deployed":true} |
156-
+---+--------------------+-----------------------------------------+
157-
----------------------------------
158-
159-
Event Type: TextMessage
160-
Source: helm_agent
161-
162-
I found the following Helm release deployed across all namespaces:
163-
164-
- **Release Name:** kagent
165-
- **Namespace:** kagent
166-
- **Revision:** 11
167-
- **Updated:** 2025-03-13 19:18:49 UTC
168-
- **Status:** Deployed
169-
- **Chart:** kagent-v0.0.18-4-g4926e59-dirty
170-
171-
If you need more details about any specific release, let me know!
172-
----------------------------------
173-
174-
Usage: Prompt Tokens: 6573, Completion Tokens: 229
175-
helm-agent--test>
176-
```
177-
178-
As you can see from the example, the agent found the `kagent` Helm chart release. If anything else is running in your cluster, it will probably find that too.
179146

180-
Now, keep chatting with the agent to see what other things it can do :)
147+
In the output, verify that the agent found the `kagent` Helm chart release. If any other Helm charts are in your cluster, it finds those, too. Keep chatting with the agent to see what other things it can do :)
181148

182149
## Next Steps
183150

src/app/docs/kagent/introduction/installation/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Install kagent by using the kagent CLI or Helm.
4040
curl https://raw.githubusercontent.com/kagent-dev/kagent/refs/heads/main/scripts/get-kagent | bash
4141
```
4242

43-
3. Install kagent to the cluster by using the CLI. By default, kagent installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
43+
3. Install kagent to the cluster by using the CLI. The following command installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
4444

4545
```bash
46-
kagent install
46+
kagent install --profile demo
4747
```
4848

4949
```console

0 commit comments

Comments
 (0)