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 fd6c482 commit 4e5973dCopy full SHA for 4e5973d
1 file changed
templates/agent-instructions-template.md
@@ -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