Skip to content

Commit 4b73cdf

Browse files
committed
agents: add repository agent instructions
1 parent 7b5d732 commit 4b73cdf

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# AGENTS.md
2+
3+
All AI coding agents working in this repository must follow AI Engineering Operating System.
4+
5+
## Required loop
6+
7+
```mermaid
8+
flowchart TD
9+
A[Goal] --> B[Load context]
10+
B --> C[Plan]
11+
C --> D[Work]
12+
D --> E[Verify]
13+
E --> F{Done?}
14+
F -- No --> D
15+
F -- Yes --> G[Report]
16+
```
17+
18+
## Agent rules
19+
20+
- Load context before editing.
21+
- Plan before implementation.
22+
- Work in small reversible steps.
23+
- Verify with available tools.
24+
- Update docs and wiki sources when public docs change.
25+
- Report evidence honestly.

0 commit comments

Comments
 (0)