@runtypelabs/cli 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/index.js +2050 -1323
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -263,6 +263,14 @@ What's optional:
|
|
|
263
263
|
✓ Verification Without it, no verification gate between milestones
|
|
264
264
|
```
|
|
265
265
|
|
|
266
|
+
#### Reasoning / Thinking
|
|
267
|
+
|
|
268
|
+
Marathon enables model reasoning by default for models that support it (Gemini 3, o-series, GPT-5, etc.). When active, the model's thinking process streams to the TUI in real time. To disable:
|
|
269
|
+
|
|
270
|
+
```bash
|
|
271
|
+
runtype marathon "Code Builder" --goal "Fix the bug" --no-reasoning
|
|
272
|
+
```
|
|
273
|
+
|
|
266
274
|
#### Tool Context Modes
|
|
267
275
|
|
|
268
276
|
When a marathon runs multiple sessions, tool call/result pairs from previous sessions are preserved in the conversation history. The `--tool-context` flag controls how older tool results are stored to balance cost and re-readability:
|