@runtypelabs/cli 0.2.0 → 0.2.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 +7 -0
- package/dist/index.js +531 -107
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -72,6 +72,13 @@ runtype marathon "Code Builder" -m "Refactor the auth module to use JWT tokens"
|
|
|
72
72
|
runtype marathon agent_abc123 -m "Write integration tests for the API" \
|
|
73
73
|
--max-sessions 10 --max-cost 2.50 --name "api-tests"
|
|
74
74
|
|
|
75
|
+
# Override the agent's configured model
|
|
76
|
+
runtype marathon "Code Builder" -m "Build a calculator" --model claude-sonnet-4-5
|
|
77
|
+
|
|
78
|
+
# Enable sandboxed code execution tooling for the task (QuickJS or Daytona)
|
|
79
|
+
runtype marathon "Code Builder" -m "Compute totals from this dataset" --sandbox quickjs
|
|
80
|
+
runtype marathon "Code Builder" -m "Generate a script and run it" --sandbox daytona
|
|
81
|
+
|
|
75
82
|
# Resume an interrupted task (picks up where it left off)
|
|
76
83
|
runtype marathon "Code Builder" -m "Refactor the auth module to use JWT tokens" \
|
|
77
84
|
--resume --name "auth-refactor" --debug
|