Skip to content

Commit 4e5973d

Browse files
committed
templates: add agent instructions template
1 parent fd6c482 commit 4e5973d

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Agent Instructions Template
2+
3+
Use this file as `AGENTS.md` in a target repository.
4+
5+
## Operating model
6+
7+
Follow AI Engineering Operating System.
8+
9+
```mermaid
10+
flowchart TD
11+
A[Goal] --> B[Load context]
12+
B --> C[Select loop]
13+
C --> D[Plan]
14+
D --> E[Work]
15+
E --> F[Verify]
16+
F --> G{Done?}
17+
G -- No --> C
18+
G -- Yes --> H[Report]
19+
```
20+
21+
## Required behavior
22+
23+
- Read repository context before editing.
24+
- Select the appropriate loop.
25+
- Plan before implementation.
26+
- Keep changes small and reversible.
27+
- Run available verifiers.
28+
- Update docs when behavior changes.
29+
- Report evidence honestly.
30+
31+
## Repository-specific commands
32+
33+
```text
34+
Build:
35+
Test:
36+
Lint:
37+
Security:
38+
Docs:
39+
```

0 commit comments

Comments
 (0)