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 5a0d10f commit 2f17641Copy full SHA for 2f17641
1 file changed
docs/architecture/context-loading.md
@@ -0,0 +1,29 @@
1
+# Context Loading
2
+
3
+Context loading is the first technical step in AI-OS work.
4
5
+## Context loading flow
6
7
+```mermaid
8
+flowchart TD
9
+ A[Task] --> B[Read README]
10
+ B --> C[Read AGENTS]
11
+ C --> D[Read project context]
12
+ D --> E[Inspect relevant docs]
13
+ E --> F[Inspect relevant files]
14
+ F --> G[Select loop]
15
+```
16
17
+## Required context
18
19
+- repository purpose
20
+- active task goal
21
+- relevant documentation
22
+- relevant files
23
+- build and test commands
24
+- risk boundaries
25
+- project memory
26
27
+## Output
28
29
+The agent should know which loop to use and which files are likely to matter before implementation starts.
0 commit comments