Skip to content

Commit 71d41d8

Browse files
committed
docs: add AI-OS anti-patterns
1 parent d6a5c81 commit 71d41d8

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

docs/methodology/anti-patterns.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Anti-patterns
2+
3+
AI-OS exists to reduce common AI coding failure modes.
4+
5+
## Anti-pattern loop
6+
7+
```mermaid
8+
flowchart TD
9+
A[Observe behavior] --> B{Problem?}
10+
B -- No --> C[Continue]
11+
B -- Yes --> D[Name it]
12+
D --> E[Add rule or verifier]
13+
E --> F[Update docs]
14+
```
15+
16+
## Common anti-patterns
17+
18+
- Coding before understanding the goal.
19+
- Skipping repository context.
20+
- Making broad changes without a plan.
21+
- Treating self-review as proof.
22+
- Not updating docs after behavior changes.
23+
- Leaving wiki and docs inconsistent.
24+
- Creating automation without approval gates.
25+
- Optimizing without measurement.
26+
- Refactoring without baseline checks.

0 commit comments

Comments
 (0)