@runtypelabs/cli 1.8.2 → 1.8.4
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 +44 -0
- package/dist/index.js +3997 -1883
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -62,6 +62,14 @@ runtype marathon agent_abc123 --goal "Write integration tests for the API" \
|
|
|
62
62
|
# Override the agent's configured model
|
|
63
63
|
runtype marathon "Code Builder" --goal "Build a calculator" --model claude-sonnet-4-5
|
|
64
64
|
|
|
65
|
+
# Enable built-in tools for the task (web search, scraping, image generation, etc.)
|
|
66
|
+
runtype marathon "Code Builder" --goal "Search the web and summarize" --tools exa
|
|
67
|
+
runtype marathon "Code Builder" -g "Find docs and scrape them" --tools exa firecrawl
|
|
68
|
+
|
|
69
|
+
# Combine tools with other options
|
|
70
|
+
runtype marathon "Code Builder" --goal "Research and generate images" \
|
|
71
|
+
--tools exa dalle --max-sessions 5
|
|
72
|
+
|
|
65
73
|
# Enable sandboxed code execution tooling for the task (QuickJS or Daytona)
|
|
66
74
|
runtype marathon "Code Builder" --goal "Compute totals from this dataset" --sandbox quickjs
|
|
67
75
|
runtype marathon "Code Builder" -g "Generate a script and run it" --sandbox daytona
|
|
@@ -124,6 +132,42 @@ runtype marathon "Code Builder" --goal "Fix the bug" \
|
|
|
124
132
|
runtype marathon "Code Builder" --goal "Fix the bug" --tool-context full-inline
|
|
125
133
|
```
|
|
126
134
|
|
|
135
|
+
#### Built-in Tools
|
|
136
|
+
|
|
137
|
+
The `--tools` (or `-t`) flag enables built-in platform tools during agent execution. Tools are validated at startup against the built-in tools registry, and compatibility is checked against all models used in the task (including planning and execution phase models).
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Enable a single tool
|
|
141
|
+
runtype marathon "Code Builder" --goal "Search the web" --tools exa
|
|
142
|
+
|
|
143
|
+
# Enable multiple tools (space-separated)
|
|
144
|
+
runtype marathon "Code Builder" --goal "Research and generate" --tools exa firecrawl dalle
|
|
145
|
+
|
|
146
|
+
# Short flag
|
|
147
|
+
runtype marathon "Code Builder" -g "Scrape docs" -t firecrawl
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**Available tools:**
|
|
151
|
+
|
|
152
|
+
| Tool ID | Description |
|
|
153
|
+
| ---------------- | ------------------------------------------- |
|
|
154
|
+
| `exa` | Semantic web search |
|
|
155
|
+
| `firecrawl` | Web scraping and content extraction |
|
|
156
|
+
| `dalle` | DALL-E image generation |
|
|
157
|
+
| `elevenlabs-tts` | Text-to-speech via ElevenLabs |
|
|
158
|
+
| `elevenlabs-stt` | Speech-to-text transcription via ElevenLabs |
|
|
159
|
+
|
|
160
|
+
**Not available via CLI:**
|
|
161
|
+
|
|
162
|
+
- `openai_web_search`, `anthropic_web_search`, `anthropic_web_fetch` — provider-native tools handled automatically by compatible models
|
|
163
|
+
- `vector-search` — requires additional configuration (use the dashboard instead)
|
|
164
|
+
|
|
165
|
+
**Validation behavior:**
|
|
166
|
+
|
|
167
|
+
- Unknown tool IDs produce an error listing all available tools
|
|
168
|
+
- Tools incompatible with the selected model(s) are rejected with a specific error
|
|
169
|
+
- All validation errors are reported together so you can fix them in one pass
|
|
170
|
+
|
|
127
171
|
## Configuration
|
|
128
172
|
|
|
129
173
|
```bash
|