You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i18n/en-us/docusaurus-plugin-content-docs/current/doc/getting-started-ai.md
+21-7Lines changed: 21 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ hide_table_of_contents: false
7
7
8
8
# AI Agent
9
9
10
-
SRS provides several ways to use AI: you can chat with the SRS Robot in Telegram or Discord for quick answers, or run AI locally with Claude Code, Codex, or OpenClaw using the pre-configured SRS knowledge base.
10
+
SRS provides several ways to use AI: you can chat with the SRS Robot in Telegram or Discord for quick answers, or run AI locally with OpenClaw, Claude Code, Codex, or Kiro using the pre-configured SRS knowledge base.
11
11
12
12
## SRS Robot
13
13
@@ -37,7 +37,7 @@ Claude Code will automatically load the configuration from `srs/.claude`, giving
37
37
38
38
## Codex
39
39
40
-
You can also use Codex locally with the SRS codebase. SRS ships with a pre-configured `.agents` directory so Codex works out of the box.
40
+
You can also use Codex locally with the SRS codebase. SRS ships with a pre-configured `.codex` directory so Codex works out of the box.
41
41
42
42
Clone the SRS code and start Codex:
43
43
@@ -47,7 +47,21 @@ cd srs
47
47
codex
48
48
```
49
49
50
-
Codex will automatically load the configuration from `srs/.agents`.
50
+
Codex will automatically load the configuration from `srs/.codex`.
51
+
52
+
## Kiro
53
+
54
+
You can also use Kiro locally with the SRS codebase. SRS ships with a pre-configured `.kiro` directory so Kiro works out of the box.
55
+
56
+
Clone the SRS code and start Kiro:
57
+
58
+
```bash
59
+
git clone https://github.com/ossrs/srs.git
60
+
cd srs
61
+
kiro-cli
62
+
```
63
+
64
+
Kiro will automatically load the configuration from `srs/.kiro`.
There are two ways to point the agent at the SRS knowledge base:
61
75
62
-
-**Set the workspace directly** — when creating the agent, set the workspace path to `srs/openclaw`.
63
-
-**Soft link** — create the agent with its default workspace, then remove the default workspace directory and replace it with a soft link to `srs/openclaw`:
76
+
-**Set the workspace directly** — when creating the agent, set the workspace path to `srs/.openclaw`.
77
+
-**Soft link** — create the agent with its default workspace, then remove the default workspace directory and replace it with a soft link to `srs/.openclaw`:
64
78
65
79
```bash
66
-
ln -sf ~/git/srs/openclaw ~/.openclaw/workspace
80
+
ln -sf ~/git/srs/.openclaw ~/.openclaw/workspace
67
81
```
68
82
69
83
Once the agent is running, list the available skills and trigger them to load the knowledge base. The skills tell the AI which files to load and how to work more effectively with the SRS codebase.
70
84
71
85
## Skills
72
86
73
-
After starting Claude Code, Codex, or OpenClaw with the SRS codebase, you should use skills to get the best results. Skills load the right knowledge base for your task and guide the AI through the correct workflow.
87
+
After starting OpenClaw, Claude Code, Codex, or Kiro with the SRS codebase, you should use skills to get the best results. Skills load the right knowledge base for your task and guide the AI through the correct workflow.
74
88
75
89
The `srs-support` skill is provided for answering questions about the SRS project. It automatically loads the relevant knowledge base based on your question, so the AI can give you accurate and context-aware answers.
0 commit comments