Skip to content

Commit 7e69e13

Browse files
committed
docs: update README.md to use eval terminology
Signed-off-by: leocavalcante <leo@cavalcante.dev>
1 parent c094e7c commit 7e69e13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Instead of interactive sessions where you guide the AI, OpenCoder creates an *au
5959

6060
### The Philosophy
6161

62-
OpenCoder treats software development as an **infinite game**. There's always another test to write, another edge case to handle, another optimization to make. OpenCoder embraces this by never declaring "done"—it continuously cycles through plan, build, and evaluation until you tell it to stop.
62+
OpenCoder treats software development as an **infinite game**. There's always another test to write, another edge case to handle, another optimization to make. OpenCoder embraces this by never declaring "done"—it continuously cycles through plan, build, and eval until you tell it to stop.
6363

6464
## Installation
6565

@@ -125,7 +125,7 @@ opencoder -P anthropic/claude-opus-4 -B anthropic/claude-sonnet-4
125125
| Flag | Description |
126126
|------|-------------|
127127
| `-m, --model MODEL` | Model for both plan and build (provider/model format) |
128-
| `-P, --plan-model MODEL` | Model for plan/evaluation phases |
128+
| `-P, --plan-model MODEL` | Model for plan/eval phases |
129129
| `-B, --build-model MODEL` | Model for build phase |
130130
| `-p, --project DIR` | Project directory (default: current directory) |
131131
| `-v, --verbose` | Enable verbose logging |
@@ -148,7 +148,7 @@ OpenCoder implements an **agentic development loop** with three phases:
148148

149149
```
150150
+-------------+ +-------------+ +-------------+
151-
| Planning |---->| Build |---->| Evaluation |
151+
| Planning |---->| Build |---->| Eval |
152152
| Phase | | Phase | | Phase |
153153
+-------------+ +-------------+ +-------------+
154154
^ |
@@ -159,7 +159,7 @@ OpenCoder implements an **agentic development loop** with three phases:
159159

160160
1. **Plan Phase** - Analyzes the project and creates a markdown checklist with 3-7 actionable tasks
161161
2. **Build Phase** - Works through each task sequentially, making code changes
162-
3. **Evaluation Phase** - Reviews completed work and decides whether to start a new cycle (COMPLETE/NEEDS_WORK)
162+
3. **Eval Phase** - Reviews completed work and decides whether to start a new cycle (COMPLETE/NEEDS_WORK)
163163

164164
The loop continues indefinitely until manually stopped (Ctrl+C).
165165

0 commit comments

Comments
 (0)