Skip to content

Commit d98e4f7

Browse files
committed
docs: add agent compatibility guide
1 parent 1ce587f commit d98e4f7

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

docs/agent-compatibility/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)