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 d6a5c81 commit 71d41d8Copy full SHA for 71d41d8
1 file changed
docs/methodology/anti-patterns.md
@@ -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