Skip to content

Commit d63b2e2

Browse files
committed
docs: add prompt templates
1 parent 0f6bbe1 commit d63b2e2

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

prompts/README.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Prompt Templates
2+
3+
## Universal everyday prompt
4+
5+
```text
6+
Execute AI Engineering Operating System from this repository.
7+
8+
Task:
9+
[YOUR TASK]
10+
11+
Load context first.
12+
Select the correct loop.
13+
Plan before implementation.
14+
Verify before declaring completion.
15+
Return to the earliest failing phase when verification fails.
16+
Stop only when Definition of Done passes.
17+
```
18+
19+
## Feature prompt
20+
21+
```text
22+
Use the feature development loop.
23+
Define acceptance criteria first.
24+
Implement in small increments.
25+
Add or update tests.
26+
Update documentation.
27+
```
28+
29+
## Bug fix prompt
30+
31+
```text
32+
Use the bug fix loop.
33+
Reproduce the defect first when possible.
34+
Create a failing test when useful.
35+
Fix the root cause, not only the symptom.
36+
Run regression verification.
37+
```
38+
39+
## CI/CD repair prompt
40+
41+
```text
42+
Use the CI/CD repair loop.
43+
Fetch logs, classify the failure, identify root cause, make the minimal patch, and verify.
44+
```
45+
46+
## Refactoring prompt
47+
48+
```text
49+
Use the refactoring loop.
50+
Do not change behavior unless explicitly requested.
51+
Establish baseline verification before editing.
52+
```

0 commit comments

Comments
 (0)