Skip to content

Commit 53fc00a

Browse files
committed
docs: add local runner concept
1 parent 6441025 commit 53fc00a

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

docs/local-runner/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)