We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce587f commit d98e4f7Copy full SHA for d98e4f7
1 file changed
docs/agent-compatibility/README.md
@@ -0,0 +1,35 @@
1
+# Agent Compatibility
2
+
3
+AI-OS is model- and tool-agnostic.
4
5
+## Compatible agent types
6
7
+- ChatGPT web sessions
8
+- Claude Code style local agents
9
+- Codex style coding agents
10
+- Gemini CLI style coding agents
11
+- Copilot coding agent workflows
12
+- MCP-enabled local toolchains
13
+- editor-integrated coding agents
14
15
+## Compatibility rule
16
17
+The agent does not need special support for every AI-OS concept. It only needs to follow the loop:
18
19
+```mermaid
20
+flowchart TD
21
+ A[Load context] --> B[Plan]
22
+ B --> C[Work]
23
+ C --> D[Verify]
24
+ D --> E{Done?}
25
+ E -- No --> B
26
+ E -- Yes --> F[Report]
27
+```
28
29
+## Minimum support
30
31
+- read files
32
+- edit files
33
+- explain plan
34
+- run or request checks
35
+- report evidence
0 commit comments