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 9f6a911 commit 9b7fff5Copy full SHA for 9b7fff5
1 file changed
docs/quality-system/README.md
@@ -0,0 +1,26 @@
1
+# Quality System
2
+
3
+AI-OS quality is based on evidence, not confidence.
4
5
+## Quality loop
6
7
+```mermaid
8
+flowchart TD
9
+ A[Change] --> B[Structure check]
10
+ B --> C[Link check]
11
+ C --> D[Diagram check]
12
+ D --> E[Policy check]
13
+ E --> F{Pass?}
14
+ F -- No --> G[Improve]
15
+ G --> B
16
+ F -- Yes --> H[Ready]
17
+```
18
19
+## Quality gates
20
21
+- required files exist
22
+- Markdown files have titles
23
+- key docs include Mermaid diagrams
24
+- relative links resolve
25
+- work-marker text is not left in docs
26
+- CI can run the verifier
0 commit comments