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 6441025 commit 53fc00aCopy full SHA for 53fc00a
1 file changed
docs/local-runner/README.md
@@ -0,0 +1,30 @@
1
+# Local Runner
2
+
3
+The local runner is the future executable layer of AI-OS.
4
5
+## Runner loop
6
7
+```mermaid
8
+flowchart TD
9
+ A[Goal] --> B[Load context]
10
+ B --> C[Select loop]
11
+ C --> D[Work step]
12
+ D --> E[Check result]
13
+ E --> F{Pass?}
14
+ F -- No --> G[Feedback]
15
+ G --> D
16
+ F -- Yes --> H[Report]
17
+```
18
19
+## Minimum responsibilities
20
21
+- read repository context
22
+- select task loop
23
+- run verifier commands
24
+- capture evidence
25
+- pause at approval gates
26
+- update memory files
27
28
+## First version
29
30
+The first version can be a simple command-line wrapper.
0 commit comments