@runtypelabs/cli 0.2.5 → 1.0.0
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 +7 -7
- package/dist/index.js +6594 -2217
- package/dist/index.js.map +1 -1
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -66,25 +66,25 @@ Use `runtype marathon` (or `runtype agents task`) to run long-running, multi-ses
|
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
68
|
# Run a task — agent output streams to your terminal in real time
|
|
69
|
-
runtype marathon "Code Builder"
|
|
69
|
+
runtype marathon "Code Builder" --goal "Refactor the auth module to use JWT tokens"
|
|
70
70
|
|
|
71
71
|
# Set a budget and session limit, save progress with a custom name
|
|
72
|
-
runtype marathon agent_abc123
|
|
72
|
+
runtype marathon agent_abc123 --goal "Write integration tests for the API" \
|
|
73
73
|
--max-sessions 10 --max-cost 2.50 --name "api-tests"
|
|
74
74
|
|
|
75
75
|
# Override the agent's configured model
|
|
76
|
-
runtype marathon "Code Builder"
|
|
76
|
+
runtype marathon "Code Builder" --goal "Build a calculator" --model claude-sonnet-4-5
|
|
77
77
|
|
|
78
78
|
# Enable sandboxed code execution tooling for the task (QuickJS or Daytona)
|
|
79
|
-
runtype marathon "Code Builder"
|
|
80
|
-
runtype marathon "Code Builder" -
|
|
79
|
+
runtype marathon "Code Builder" --goal "Compute totals from this dataset" --sandbox quickjs
|
|
80
|
+
runtype marathon "Code Builder" -g "Generate a script and run it" --sandbox daytona
|
|
81
81
|
|
|
82
82
|
# Resume an interrupted task (picks up where it left off)
|
|
83
|
-
runtype marathon "Code Builder"
|
|
83
|
+
runtype marathon "Code Builder" --goal "Refactor the auth module to use JWT tokens" \
|
|
84
84
|
--resume --name "auth-refactor" --debug
|
|
85
85
|
|
|
86
86
|
# Sync progress to a Runtype record (visible in the dashboard)
|
|
87
|
-
runtype marathon "Code Builder"
|
|
87
|
+
runtype marathon "Code Builder" --goal "Build the payments integration" \
|
|
88
88
|
--max-sessions 20 --track --name "payments"
|
|
89
89
|
```
|
|
90
90
|
|