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 7b5d732 commit 4b73cdfCopy full SHA for 4b73cdf
1 file changed
AGENTS.md
@@ -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