danelcsb commited on
Commit
ce39512
·
verified ·
1 Parent(s): 50a945c

annotator fixes (run_python/download_file) + expand (freeform_train, scenario_single, episodes)

Browse files
README.md CHANGED
@@ -23,6 +23,7 @@ configs:
23
  - {split: eval, path: scenarios_episodes_eval.jsonl}
24
  - config_name: freeform
25
  data_files:
 
26
  - {split: eval, path: freeform_eval.jsonl}
27
  ---
28
 
@@ -41,9 +42,9 @@ Synthetic data for training/evaluating a **generable tool-dispatch** model over
41
  |---|---|---|
42
  | `paraphrase` | 1000 / 1000 | many natural phrasings per tool (all 50 tools), single-turn |
43
  | `contextual` | 230 / 230 | **referent-conditioned**: same instruction → different tool by referent ("Open status.host.io"→`open_url`, "Open 'Chrome'"→`open_app`, "Open docs/intro.md"→`read_file`) |
44
- | `scenarios_single` | 38 / 31 | clarify / **abstain** (over-trigger negatives, no tool) / parallel (≥2 calls) |
45
  | `scenarios_episodes` | 60 / 60 | multi-turn episodes: workflow / chained / error-recovery |
46
- | `freeform` | / 44 | hand-written out-of-distribution eval queries (the honest generalization test) |
47
 
48
  ## Schema
49
 
 
23
  - {split: eval, path: scenarios_episodes_eval.jsonl}
24
  - config_name: freeform
25
  data_files:
26
+ - {split: train, path: freeform_train.jsonl}
27
  - {split: eval, path: freeform_eval.jsonl}
28
  ---
29
 
 
42
  |---|---|---|
43
  | `paraphrase` | 1000 / 1000 | many natural phrasings per tool (all 50 tools), single-turn |
44
  | `contextual` | 230 / 230 | **referent-conditioned**: same instruction → different tool by referent ("Open status.host.io"→`open_url`, "Open 'Chrome'"→`open_app`, "Open docs/intro.md"→`read_file`) |
45
+ | `scenarios_single` | 60 / 40 | clarify / **abstain** (over-trigger negatives, no tool) / parallel (≥2 calls) |
46
  | `scenarios_episodes` | 60 / 60 | multi-turn episodes: workflow / chained / error-recovery |
47
+ | `freeform` | 86 / 45 | hand-written natural queries — **train** (86) + out-of-distribution **eval** (45) |
48
 
49
  ## Schema
50
 
contextual_eval.jsonl CHANGED
@@ -23,7 +23,7 @@
23
  {"prompt": "Please search for 'RateLimiter' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateLimiter\"},\"name\":\"grep_search\"}"}
24
  {"prompt": "Could you write the output to the file out/metrics.csv?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
25
  {"prompt": "Look over what's in the deploy directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
26
- {"prompt": "Run the Python script 'export_data.py' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"export_data.py\"},\"name\":\"run_python\"}"}
27
  {"prompt": "Open the app 'Postman' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Postman\"},\"name\":\"open_app\"}"}
28
  {"prompt": "Could you search for any files matching '*.gradle'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.gradle\"},\"name\":\"find_files\"}"}
29
  {"prompt": "Could you write 'rollback complete' over on Slack?", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
@@ -56,7 +56,7 @@
56
  {"prompt": "Please check the repo status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
57
  {"prompt": "Go fetch me the details on secondhand camera prices.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"secondhand camera prices\"},\"name\":\"web_search\"}"}
58
  {"prompt": "Could you open the app 'Obsidian'?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Obsidian\"},\"name\":\"open_app\"}"}
59
- {"prompt": "Kick off the shell command 'make lint'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
60
  {"prompt": "Write 'retro action items' onto my Notion page for me.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
61
  {"prompt": "Check the weather over in Tirana for me.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Tirana\"},\"name\":\"get_weather\"}"}
62
  {"prompt": "Could you get the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
@@ -73,7 +73,7 @@
73
  {"prompt": "Could you get the file from https://cdn.vendor.net/installer.dmg and save it locally?", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://cdn.vendor.net/installer.dmg\"},\"name\":\"download_file\"}"}
74
  {"prompt": "Please check the repo status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
75
  {"prompt": "Could you fetch the file from downloads.forge.io/patch.zip and save it locally?", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"downloads.forge.io/patch.zip\"},\"name\":\"download_file\"}"}
76
- {"prompt": "Run the shell command 'make lint' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
77
  {"prompt": "Check the page at https://forum.example.org/thread/42 for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://forum.example.org/thread/42\"},\"name\":\"open_url\"}"}
78
  {"prompt": "Look over the post at https://support.vendor.com/faq.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
79
  {"prompt": "Go search for any files matching '**/*.scss'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
@@ -98,7 +98,7 @@
98
  {"prompt": "Give me a quick summary of the folder deploy.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
99
  {"prompt": "Go search for 'RateLimiter' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateLimiter\"},\"name\":\"grep_search\"}"}
100
  {"prompt": "Write the output to the file out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
101
- {"prompt": "Could you run the Python script 'export_data.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"export_data.py\"},\"name\":\"run_python\"}"}
102
  {"prompt": "Could you check what changed in the working tree?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
103
  {"prompt": "Write 'retro action items' onto my Notion page for me.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
104
  {"prompt": "Write the recap to out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
@@ -114,8 +114,8 @@
114
  {"prompt": "Open the app 'iTerm' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
115
  {"prompt": "Look over what's in the build directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"build\"},\"name\":\"list_dir\"}"}
116
  {"prompt": "Inspect the folder artifacts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"artifacts\"},\"name\":\"list_dir\"}"}
117
- {"prompt": "Run the Python script 'export_data.py' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"export_data.py\"},\"name\":\"run_python\"}"}
118
- {"prompt": "Run the shell command 'make lint' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
119
  {"prompt": "Could you search for any files matching '**/*.scss'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
120
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
121
  {"prompt": "Could you open the app 'iTerm'?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
@@ -151,7 +151,7 @@
151
  {"prompt": "Go fetch me the details on weekend pottery classes.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"weekend pottery classes\"},\"name\":\"web_search\"}"}
152
  {"prompt": "Go fetch the file from downloads.forge.io/patch.zip and save it locally.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"downloads.forge.io/patch.zip\"},\"name\":\"download_file\"}"}
153
  {"prompt": "Go fetch the JSON at data.metrics.io/summary.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
154
- {"prompt": "Could you run the Python script 'migrate.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"migrate.py\"},\"name\":\"run_python\"}"}
155
  {"prompt": "Pop open the local file data/loader.py.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
156
  {"prompt": "Could you write 'retro action items' onto my Notion page?", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
157
  {"prompt": "Inspect the JSON payload at https://api.forum.org/threads.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
@@ -159,13 +159,13 @@
159
  {"prompt": "Could you analyze what's in the deploy directory?", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
160
  {"prompt": "Could you analyze the post at https://support.vendor.com/faq?", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
161
  {"prompt": "Go search for secondhand camera prices on the internet.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"secondhand camera prices\"},\"name\":\"web_search\"}"}
162
- {"prompt": "Could you run the Python script 'migrate.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"migrate.py\"},\"name\":\"run_python\"}"}
163
  {"prompt": "Write 'rollback complete' over on Slack for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
164
  {"prompt": "Open the app 'iTerm' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
165
  {"prompt": "Run the whole test suite for me.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
166
  {"prompt": "Could you check the latest diff?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
167
  {"prompt": "Could you check what changed in the working tree?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
168
- {"prompt": "Run the Python script 'migrate.py' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"migrate.py\"},\"name\":\"run_python\"}"}
169
  {"prompt": "Check what changed in the working tree for me.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
170
  {"prompt": "Check the working tree status for me.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
171
  {"prompt": "Could you fetch the JSON at https://api.forum.org/threads?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
@@ -186,20 +186,20 @@
186
  {"prompt": "Could you analyze the local file data/loader.py?", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
187
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
188
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
189
- {"prompt": "Could you run the shell command 'make lint'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
190
  {"prompt": "Could you search for any files matching 'conftest_*.py'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"conftest_*.py\"},\"name\":\"find_files\"}"}
191
  {"prompt": "Look over the folder artifacts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"artifacts\"},\"name\":\"list_dir\"}"}
192
  {"prompt": "Could you fetch the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
193
  {"prompt": "Go search for 'flush_cache' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"flush_cache\"},\"name\":\"grep_search\"}"}
194
- {"prompt": "Could you run the shell command 'git pull'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
195
  {"prompt": "Pop open the local file data/loader.py.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
196
  {"prompt": "Pop open the link https://forum.example.org/thread/42.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://forum.example.org/thread/42\"},\"name\":\"open_url\"}"}
197
- {"prompt": "Run the shell command 'make lint' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
198
- {"prompt": "Run the Python script 'migrate.py' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"migrate.py\"},\"name\":\"run_python\"}"}
199
  {"prompt": "Check today's weather in Reykjavik for me.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Reykjavik\"},\"name\":\"get_weather\"}"}
200
  {"prompt": "Please check what changed in the working tree.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
201
- {"prompt": "Could you run the Python script 'migrate.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"migrate.py\"},\"name\":\"run_python\"}"}
202
- {"prompt": "Kick off the shell command 'make lint'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
203
  {"prompt": "Write 'rollback complete' over on Slack for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
204
  {"prompt": "Inspect the folder deploy.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
205
  {"prompt": "Write 'rollback complete' to the #ops channel for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
@@ -218,13 +218,13 @@
218
  {"prompt": "Kick off the shell command 'docker ps'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker ps\"},\"name\":\"run_command\"}"}
219
  {"prompt": "Please search for 'decode_token' in the source files.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"decode_token\"},\"name\":\"grep_search\"}"}
220
  {"prompt": "Could you write 'ideas backlog' down in my notes?", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"ideas backlog\"},\"name\":\"notion_write\"}"}
221
- {"prompt": "Kick off the Python script 'export_data.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"export_data.py\"},\"name\":\"run_python\"}"}
222
  {"prompt": "Inspect the post at media.host.com/gallery.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"media.host.com/gallery\"},\"name\":\"open_url\"}"}
223
- {"prompt": "Kick off the Python script 'export_data.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"export_data.py\"},\"name\":\"run_python\"}"}
224
  {"prompt": "Could you search for any files matching '**/*.scss'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
225
  {"prompt": "Have a look at the JSON payload at https://api.forum.org/threads.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
226
  {"prompt": "Could you get the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
227
  {"prompt": "Write the output to the file out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
228
  {"prompt": "Go search for any files matching 'conftest_*.py'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"conftest_*.py\"},\"name\":\"find_files\"}"}
229
  {"prompt": "Could you write the recap to notes/recap.md?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"notes/recap.md\"},\"name\":\"write_file\"}"}
230
- {"prompt": "Run the shell command 'docker ps' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker ps\"},\"name\":\"run_command\"}"}
 
23
  {"prompt": "Please search for 'RateLimiter' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateLimiter\"},\"name\":\"grep_search\"}"}
24
  {"prompt": "Could you write the output to the file out/metrics.csv?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
25
  {"prompt": "Look over what's in the deploy directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
26
+ {"prompt": "Run 'abs(-3)' through Python for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-3)\"},\"name\":\"run_python\"}"}
27
  {"prompt": "Open the app 'Postman' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Postman\"},\"name\":\"open_app\"}"}
28
  {"prompt": "Could you search for any files matching '*.gradle'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.gradle\"},\"name\":\"find_files\"}"}
29
  {"prompt": "Could you write 'rollback complete' over on Slack?", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
 
56
  {"prompt": "Please check the repo status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
57
  {"prompt": "Go fetch me the details on secondhand camera prices.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"secondhand camera prices\"},\"name\":\"web_search\"}"}
58
  {"prompt": "Could you open the app 'Obsidian'?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Obsidian\"},\"name\":\"open_app\"}"}
59
+ {"prompt": "Kick off the shell command 'git pull'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
60
  {"prompt": "Write 'retro action items' onto my Notion page for me.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
61
  {"prompt": "Check the weather over in Tirana for me.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Tirana\"},\"name\":\"get_weather\"}"}
62
  {"prompt": "Could you get the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
 
73
  {"prompt": "Could you get the file from https://cdn.vendor.net/installer.dmg and save it locally?", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://cdn.vendor.net/installer.dmg\"},\"name\":\"download_file\"}"}
74
  {"prompt": "Please check the repo status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
75
  {"prompt": "Could you fetch the file from downloads.forge.io/patch.zip and save it locally?", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"downloads.forge.io/patch.zip\"},\"name\":\"download_file\"}"}
76
+ {"prompt": "Run the shell command 'git pull' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
77
  {"prompt": "Check the page at https://forum.example.org/thread/42 for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://forum.example.org/thread/42\"},\"name\":\"open_url\"}"}
78
  {"prompt": "Look over the post at https://support.vendor.com/faq.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
79
  {"prompt": "Go search for any files matching '**/*.scss'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
 
98
  {"prompt": "Give me a quick summary of the folder deploy.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
99
  {"prompt": "Go search for 'RateLimiter' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateLimiter\"},\"name\":\"grep_search\"}"}
100
  {"prompt": "Write the output to the file out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
101
+ {"prompt": "Could you run 'abs(-3)' through Python?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-3)\"},\"name\":\"run_python\"}"}
102
  {"prompt": "Could you check what changed in the working tree?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
103
  {"prompt": "Write 'retro action items' onto my Notion page for me.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
104
  {"prompt": "Write the recap to out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
 
114
  {"prompt": "Open the app 'iTerm' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
115
  {"prompt": "Look over what's in the build directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"build\"},\"name\":\"list_dir\"}"}
116
  {"prompt": "Inspect the folder artifacts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"artifacts\"},\"name\":\"list_dir\"}"}
117
+ {"prompt": "Run 'abs(-3)' through Python for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-3)\"},\"name\":\"run_python\"}"}
118
+ {"prompt": "Run the shell command 'git pull' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
119
  {"prompt": "Could you search for any files matching '**/*.scss'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
120
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
121
  {"prompt": "Could you open the app 'iTerm'?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
 
151
  {"prompt": "Go fetch me the details on weekend pottery classes.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"weekend pottery classes\"},\"name\":\"web_search\"}"}
152
  {"prompt": "Go fetch the file from downloads.forge.io/patch.zip and save it locally.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"downloads.forge.io/patch.zip\"},\"name\":\"download_file\"}"}
153
  {"prompt": "Go fetch the JSON at data.metrics.io/summary.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
154
+ {"prompt": "Could you run 'min(5, 2)' through Python?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"min(5, 2)\"},\"name\":\"run_python\"}"}
155
  {"prompt": "Pop open the local file data/loader.py.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
156
  {"prompt": "Could you write 'retro action items' onto my Notion page?", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"retro action items\"},\"name\":\"notion_write\"}"}
157
  {"prompt": "Inspect the JSON payload at https://api.forum.org/threads.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
 
159
  {"prompt": "Could you analyze what's in the deploy directory?", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
160
  {"prompt": "Could you analyze the post at https://support.vendor.com/faq?", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
161
  {"prompt": "Go search for secondhand camera prices on the internet.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"secondhand camera prices\"},\"name\":\"web_search\"}"}
162
+ {"prompt": "Could you run 'min(5, 2)' through Python?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"min(5, 2)\"},\"name\":\"run_python\"}"}
163
  {"prompt": "Write 'rollback complete' over on Slack for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
164
  {"prompt": "Open the app 'iTerm' for me.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"iTerm\"},\"name\":\"open_app\"}"}
165
  {"prompt": "Run the whole test suite for me.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
166
  {"prompt": "Could you check the latest diff?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
167
  {"prompt": "Could you check what changed in the working tree?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
168
+ {"prompt": "Run 'min(5, 2)' through Python for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"min(5, 2)\"},\"name\":\"run_python\"}"}
169
  {"prompt": "Check what changed in the working tree for me.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
170
  {"prompt": "Check the working tree status for me.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
171
  {"prompt": "Could you fetch the JSON at https://api.forum.org/threads?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
 
186
  {"prompt": "Could you analyze the local file data/loader.py?", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
187
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
188
  {"prompt": "Check the page at https://support.vendor.com/faq for me.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://support.vendor.com/faq\"},\"name\":\"open_url\"}"}
189
+ {"prompt": "Kick off the shell command 'git pull'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
190
  {"prompt": "Could you search for any files matching 'conftest_*.py'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"conftest_*.py\"},\"name\":\"find_files\"}"}
191
  {"prompt": "Look over the folder artifacts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"artifacts\"},\"name\":\"list_dir\"}"}
192
  {"prompt": "Could you fetch the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
193
  {"prompt": "Go search for 'flush_cache' across the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"flush_cache\"},\"name\":\"grep_search\"}"}
194
+ {"prompt": "Could you run the shell command 'make lint'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
195
  {"prompt": "Pop open the local file data/loader.py.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/loader.py\"},\"name\":\"read_file\"}"}
196
  {"prompt": "Pop open the link https://forum.example.org/thread/42.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://forum.example.org/thread/42\"},\"name\":\"open_url\"}"}
197
+ {"prompt": "Run the shell command 'git pull' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
198
+ {"prompt": "Run 'min(5, 2)' through Python for me.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"min(5, 2)\"},\"name\":\"run_python\"}"}
199
  {"prompt": "Check today's weather in Reykjavik for me.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Reykjavik\"},\"name\":\"get_weather\"}"}
200
  {"prompt": "Please check what changed in the working tree.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
201
+ {"prompt": "Could you run 'min(5, 2)' through Python?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"min(5, 2)\"},\"name\":\"run_python\"}"}
202
+ {"prompt": "Kick off the shell command 'git pull'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git pull\"},\"name\":\"run_command\"}"}
203
  {"prompt": "Write 'rollback complete' over on Slack for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
204
  {"prompt": "Inspect the folder deploy.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"deploy\"},\"name\":\"list_dir\"}"}
205
  {"prompt": "Write 'rollback complete' to the #ops channel for me.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"rollback complete\"},\"name\":\"slack_send\"}"}
 
218
  {"prompt": "Kick off the shell command 'docker ps'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker ps\"},\"name\":\"run_command\"}"}
219
  {"prompt": "Please search for 'decode_token' in the source files.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"decode_token\"},\"name\":\"grep_search\"}"}
220
  {"prompt": "Could you write 'ideas backlog' down in my notes?", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"ideas backlog\"},\"name\":\"notion_write\"}"}
221
+ {"prompt": "Kick off 'abs(-3)' through Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-3)\"},\"name\":\"run_python\"}"}
222
  {"prompt": "Inspect the post at media.host.com/gallery.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"media.host.com/gallery\"},\"name\":\"open_url\"}"}
223
+ {"prompt": "Kick off 'abs(-3)' through Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-3)\"},\"name\":\"run_python\"}"}
224
  {"prompt": "Could you search for any files matching '**/*.scss'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.scss\"},\"name\":\"find_files\"}"}
225
  {"prompt": "Have a look at the JSON payload at https://api.forum.org/threads.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.forum.org/threads\"},\"name\":\"http_request\"}"}
226
  {"prompt": "Could you get the JSON at data.metrics.io/summary?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"data.metrics.io/summary\"},\"name\":\"http_request\"}"}
227
  {"prompt": "Write the output to the file out/metrics.csv for me.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"out/metrics.csv\"},\"name\":\"write_file\"}"}
228
  {"prompt": "Go search for any files matching 'conftest_*.py'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"conftest_*.py\"},\"name\":\"find_files\"}"}
229
  {"prompt": "Could you write the recap to notes/recap.md?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"notes/recap.md\"},\"name\":\"write_file\"}"}
230
+ {"prompt": "Run the shell command 'make lint' for me.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make lint\"},\"name\":\"run_command\"}"}
contextual_train.jsonl CHANGED
@@ -1,7 +1,7 @@
1
  {"prompt": "Go through the contents of assets/icons.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets/icons\"},\"name\":\"list_dir\"}"}
2
  {"prompt": "Can you check the page https://docs.product.com/guide?", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
3
  {"prompt": "Go ahead and write the summary to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
4
- {"prompt": "Run 'ingest.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"ingest.py\"},\"name\":\"run_python\"}"}
5
  {"prompt": "Please write 'deploy is done' to Slack.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy is done\"},\"name\":\"slack_send\"}"}
6
  {"prompt": "Search for files named '**/*.java'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.java\"},\"name\":\"find_files\"}"}
7
  {"prompt": "Please write the results out to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
@@ -44,7 +44,7 @@
44
  {"prompt": "Check on the page news.site.org/today.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
45
  {"prompt": "Go ahead and open https://docs.product.com/guide.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
46
  {"prompt": "Please fetch the API response at https://api.service.dev/orders.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.service.dev/orders\"},\"name\":\"http_request\"}"}
47
- {"prompt": "Run the test suite.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
48
  {"prompt": "Check the diff real quick.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
49
  {"prompt": "Check on git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
50
  {"prompt": "Check README.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"README.md\"},\"name\":\"read_file\"}"}
@@ -62,8 +62,8 @@
62
  {"prompt": "Open up 'Notion'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Notion\"},\"name\":\"open_app\"}"}
63
  {"prompt": "Open up data/notes.txt.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/notes.txt\"},\"name\":\"read_file\"}"}
64
  {"prompt": "Can you run 'docker build .'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker build .\"},\"name\":\"run_command\"}"}
65
- {"prompt": "Go get the API response at https://data.portal.app/metrics.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://data.portal.app/metrics\"},\"name\":\"http_request\"}"}
66
- {"prompt": "Run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
67
  {"prompt": "Can you check https://blog.dev/intro-post?", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://blog.dev/intro-post\"},\"name\":\"open_url\"}"}
68
  {"prompt": "Can you write the results out to reports/q1.txt?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"reports/q1.txt\"},\"name\":\"write_file\"}"}
69
  {"prompt": "Open up https://docs.product.com/guide.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
@@ -75,14 +75,14 @@
75
  {"prompt": "Check on the repo.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
76
  {"prompt": "Fetch a copy of files.depot.dev/report.pdf onto disk.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.depot.dev/report.pdf\"},\"name\":\"download_file\"}"}
77
  {"prompt": "Search for files matching 'test_*.py'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"test_*.py\"},\"name\":\"find_files\"}"}
78
- {"prompt": "Run the test suite now.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
79
  {"prompt": "Check news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
80
- {"prompt": "Go run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
81
  {"prompt": "Can you search for winter running shoes?", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"winter running shoes\"},\"name\":\"web_search\"}"}
82
  {"prompt": "Summarize https://portal.app/changelog.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://portal.app/changelog\"},\"name\":\"open_url\"}"}
83
  {"prompt": "Do a search for files named '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
84
  {"prompt": "Fetch a copy of mirror.host.dev/tool.deb onto disk.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"mirror.host.dev/tool.deb\"},\"name\":\"download_file\"}"}
85
- {"prompt": "Please run the command 'docker build .'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker build .\"},\"name\":\"run_command\"}"}
86
  {"prompt": "Check the state of the repo.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
87
  {"prompt": "Take a look at the article at status.host.io/incidents.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"status.host.io/incidents\"},\"name\":\"open_url\"}"}
88
  {"prompt": "Do a search for 'MAX_BUFFER' in the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"MAX_BUFFER\"},\"name\":\"grep_search\"}"}
@@ -93,7 +93,7 @@
93
  {"prompt": "Please open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
94
  {"prompt": "Open up the file config/settings.yaml.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"config/settings.yaml\"},\"name\":\"read_file\"}"}
95
  {"prompt": "Can you check what's changed in the code?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
96
- {"prompt": "Can you run the unit tests?", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
97
  {"prompt": "Check on what changed.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
98
  {"prompt": "Go ahead and open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
99
  {"prompt": "Please fetch me info about cheap flights to Lisbon.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"cheap flights to Lisbon\"},\"name\":\"web_search\"}"}
@@ -112,20 +112,20 @@
112
  {"prompt": "Look at the file docs/intro.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
113
  {"prompt": "Go get me info about the new metro timetable.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the new metro timetable\"},\"name\":\"web_search\"}"}
114
  {"prompt": "Can you search for 'render_sidebar' in the files?", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"render_sidebar\"},\"name\":\"grep_search\"}"}
115
- {"prompt": "Can you get the JSON from https://data.portal.app/metrics?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://data.portal.app/metrics\"},\"name\":\"http_request\"}"}
116
  {"prompt": "Check git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
117
  {"prompt": "Please open 'Notion'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Notion\"},\"name\":\"open_app\"}"}
118
  {"prompt": "Summarize the contents of scripts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"list_dir\"}"}
119
  {"prompt": "Take a look at the scripts directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"list_dir\"}"}
120
- {"prompt": "Run the script 'ingest.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"ingest.py\"},\"name\":\"run_python\"}"}
121
  {"prompt": "Please run 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
122
  {"prompt": "Do a search for files matching '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
123
  {"prompt": "Run a search for files named '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
124
  {"prompt": "Can you open the 'Figma' app?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Figma\"},\"name\":\"open_app\"}"}
125
  {"prompt": "Please fetch me info about beginner sourdough recipes.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"beginner sourdough recipes\"},\"name\":\"web_search\"}"}
126
  {"prompt": "Search for 'parse_headers' in the repo.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"parse_headers\"},\"name\":\"grep_search\"}"}
127
- {"prompt": "Go run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
128
- {"prompt": "Please run 'demo.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"demo.py\"},\"name\":\"run_python\"}"}
129
  {"prompt": "Please fetch me some information on local coworking spaces.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"local coworking spaces\"},\"name\":\"web_search\"}"}
130
  {"prompt": "Please open 'Chrome'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Chrome\"},\"name\":\"open_app\"}"}
131
  {"prompt": "Summarize what's inside internal.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"internal\"},\"name\":\"list_dir\"}"}
@@ -149,11 +149,11 @@
149
  {"prompt": "Check on the weather in Stockholm.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Stockholm\"},\"name\":\"get_weather\"}"}
150
  {"prompt": "Can you open the file docs/intro.md?", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
151
  {"prompt": "Look at src/utils.py.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"src/utils.py\"},\"name\":\"read_file\"}"}
152
- {"prompt": "Run 'git fetch --all'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git fetch --all\"},\"name\":\"run_command\"}"}
153
  {"prompt": "Go ahead and write 'demo went well' to Slack.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"demo went well\"},\"name\":\"slack_send\"}"}
154
  {"prompt": "Go get the file at files.depot.dev/report.pdf and save it.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.depot.dev/report.pdf\"},\"name\":\"download_file\"}"}
155
  {"prompt": "Fetch the API response at https://api.acme.io/v1/users.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.acme.io/v1/users\"},\"name\":\"http_request\"}"}
156
- {"prompt": "Run 'cleanup.py' now.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"cleanup.py\"},\"name\":\"run_python\"}"}
157
  {"prompt": "Open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
158
  {"prompt": "Go ahead and write 'ideas for the offsite' to my Notion page.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"ideas for the offsite\"},\"name\":\"notion_write\"}"}
159
  {"prompt": "Review the API response from api.blog.dev/posts.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.blog.dev/posts\"},\"name\":\"http_request\"}"}
@@ -162,13 +162,13 @@
162
  {"prompt": "Look at news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
163
  {"prompt": "Can you write 'release is live' in the #dev channel?", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"release is live\"},\"name\":\"slack_send\"}"}
164
  {"prompt": "I need you to search for local coworking spaces online.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"local coworking spaces\"},\"name\":\"web_search\"}"}
165
- {"prompt": "Please run 'cleanup.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"cleanup.py\"},\"name\":\"run_python\"}"}
166
  {"prompt": "Write 'demo went well' to the #general channel.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"demo went well\"},\"name\":\"slack_send\"}"}
167
  {"prompt": "Go ahead and open the 'Spotify' app.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Spotify\"},\"name\":\"open_app\"}"}
168
- {"prompt": "Please run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
169
  {"prompt": "Check what's changed in the code.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
170
  {"prompt": "Go check the diff.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
171
- {"prompt": "Run 'demo.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"demo.py\"},\"name\":\"run_python\"}"}
172
  {"prompt": "Check git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
173
  {"prompt": "Can you check the repo?", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
174
  {"prompt": "Can you get the JSON from https://api.acme.io/v1/users?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.acme.io/v1/users\"},\"name\":\"http_request\"}"}
@@ -185,7 +185,7 @@
185
  {"prompt": "Go through the article at https://acme.io/blog.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://acme.io/blog\"},\"name\":\"open_url\"}"}
186
  {"prompt": "Check on the diff.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
187
  {"prompt": "Check on the page status.host.io/incidents.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"status.host.io/incidents\"},\"name\":\"open_url\"}"}
188
- {"prompt": "Can you run the test suite?", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
189
  {"prompt": "Look at src/utils.py.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"src/utils.py\"},\"name\":\"read_file\"}"}
190
  {"prompt": "Please write the summary to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
191
  {"prompt": "Can you write the summary to notes/summary.md?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"notes/summary.md\"},\"name\":\"write_file\"}"}
@@ -198,11 +198,11 @@
198
  {"prompt": "Can you open lib/helpers.js?", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
199
  {"prompt": "Open the page https://acme.io/blog.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://acme.io/blog\"},\"name\":\"open_url\"}"}
200
  {"prompt": "Go run 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
201
- {"prompt": "Run 'cleanup.py' now.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"cleanup.py\"},\"name\":\"run_python\"}"}
202
  {"prompt": "Check the forecast for Oslo.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Oslo\"},\"name\":\"get_weather\"}"}
203
  {"prompt": "Go check what changed.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
204
- {"prompt": "Can you run the script 'report.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"report.py\"},\"name\":\"run_python\"}"}
205
- {"prompt": "Can you run the command 'kubectl get pods'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
206
  {"prompt": "Please write 'deploy is done' in the #dev channel.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy is done\"},\"name\":\"slack_send\"}"}
207
  {"prompt": "Can you check what changed?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
208
  {"prompt": "Go through the src directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"list_dir\"}"}
@@ -215,16 +215,16 @@
215
  {"prompt": "Can you check the state of the repo?", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
216
  {"prompt": "Open up https://portal.app/changelog.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://portal.app/changelog\"},\"name\":\"open_url\"}"}
217
  {"prompt": "Go through docs/intro.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
218
- {"prompt": "Please run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
219
  {"prompt": "Run a search for standing desk reviews online.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"standing desk reviews\"},\"name\":\"web_search\"}"}
220
  {"prompt": "Can you search for files matching '*.css'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
221
  {"prompt": "Open up 'Chrome'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Chrome\"},\"name\":\"open_app\"}"}
222
- {"prompt": "Run 'git fetch --all'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"git fetch --all\"},\"name\":\"run_command\"}"}
223
  {"prompt": "Search for 'render_sidebar' in the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"render_sidebar\"},\"name\":\"grep_search\"}"}
224
  {"prompt": "Please write 'q3 planning draft' to my notes.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"q3 planning draft\"},\"name\":\"notion_write\"}"}
225
- {"prompt": "Go run the script 'cleanup.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"cleanup.py\"},\"name\":\"run_python\"}"}
226
  {"prompt": "Look at the article at news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
227
- {"prompt": "Can you run the script 'ingest.py'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"ingest.py\"},\"name\":\"run_python\"}"}
228
  {"prompt": "Search for files matching '*.ipynb'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.ipynb\"},\"name\":\"find_files\"}"}
229
  {"prompt": "Take a look at the JSON from https://api.service.dev/orders.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.service.dev/orders\"},\"name\":\"http_request\"}"}
230
  {"prompt": "Get the JSON from api.blog.dev/posts.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.blog.dev/posts\"},\"name\":\"http_request\"}"}
 
1
  {"prompt": "Go through the contents of assets/icons.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets/icons\"},\"name\":\"list_dir\"}"}
2
  {"prompt": "Can you check the page https://docs.product.com/guide?", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
3
  {"prompt": "Go ahead and write the summary to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
4
+ {"prompt": "Run 'sum(range(8))' in Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum(range(8))\"},\"name\":\"run_python\"}"}
5
  {"prompt": "Please write 'deploy is done' to Slack.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy is done\"},\"name\":\"slack_send\"}"}
6
  {"prompt": "Search for files named '**/*.java'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.java\"},\"name\":\"find_files\"}"}
7
  {"prompt": "Please write the results out to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
 
44
  {"prompt": "Check on the page news.site.org/today.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
45
  {"prompt": "Go ahead and open https://docs.product.com/guide.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
46
  {"prompt": "Please fetch the API response at https://api.service.dev/orders.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.service.dev/orders\"},\"name\":\"http_request\"}"}
47
+ {"prompt": "Please run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
48
  {"prompt": "Check the diff real quick.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
49
  {"prompt": "Check on git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
50
  {"prompt": "Check README.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"README.md\"},\"name\":\"read_file\"}"}
 
62
  {"prompt": "Open up 'Notion'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Notion\"},\"name\":\"open_app\"}"}
63
  {"prompt": "Open up data/notes.txt.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/notes.txt\"},\"name\":\"read_file\"}"}
64
  {"prompt": "Can you run 'docker build .'?", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"docker build .\"},\"name\":\"run_command\"}"}
65
+ {"prompt": "Can you get the API response at https://data.portal.app/metrics?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://data.portal.app/metrics\"},\"name\":\"http_request\"}"}
66
+ {"prompt": "Can you run the test suite?", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
67
  {"prompt": "Can you check https://blog.dev/intro-post?", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://blog.dev/intro-post\"},\"name\":\"open_url\"}"}
68
  {"prompt": "Can you write the results out to reports/q1.txt?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"reports/q1.txt\"},\"name\":\"write_file\"}"}
69
  {"prompt": "Open up https://docs.product.com/guide.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/guide\"},\"name\":\"open_url\"}"}
 
75
  {"prompt": "Check on the repo.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
76
  {"prompt": "Fetch a copy of files.depot.dev/report.pdf onto disk.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.depot.dev/report.pdf\"},\"name\":\"download_file\"}"}
77
  {"prompt": "Search for files matching 'test_*.py'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"test_*.py\"},\"name\":\"find_files\"}"}
78
+ {"prompt": "Run the test suite.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
79
  {"prompt": "Check news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
80
+ {"prompt": "Run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
81
  {"prompt": "Can you search for winter running shoes?", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"winter running shoes\"},\"name\":\"web_search\"}"}
82
  {"prompt": "Summarize https://portal.app/changelog.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://portal.app/changelog\"},\"name\":\"open_url\"}"}
83
  {"prompt": "Do a search for files named '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
84
  {"prompt": "Fetch a copy of mirror.host.dev/tool.deb onto disk.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"mirror.host.dev/tool.deb\"},\"name\":\"download_file\"}"}
85
+ {"prompt": "Please run the command 'python scripts/ingest.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"python scripts/ingest.py\"},\"name\":\"run_command\"}"}
86
  {"prompt": "Check the state of the repo.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
87
  {"prompt": "Take a look at the article at status.host.io/incidents.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"status.host.io/incidents\"},\"name\":\"open_url\"}"}
88
  {"prompt": "Do a search for 'MAX_BUFFER' in the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"MAX_BUFFER\"},\"name\":\"grep_search\"}"}
 
93
  {"prompt": "Please open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
94
  {"prompt": "Open up the file config/settings.yaml.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"config/settings.yaml\"},\"name\":\"read_file\"}"}
95
  {"prompt": "Can you check what's changed in the code?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
96
+ {"prompt": "Run the test suite.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
97
  {"prompt": "Check on what changed.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
98
  {"prompt": "Go ahead and open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
99
  {"prompt": "Please fetch me info about cheap flights to Lisbon.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"cheap flights to Lisbon\"},\"name\":\"web_search\"}"}
 
112
  {"prompt": "Look at the file docs/intro.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
113
  {"prompt": "Go get me info about the new metro timetable.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the new metro timetable\"},\"name\":\"web_search\"}"}
114
  {"prompt": "Can you search for 'render_sidebar' in the files?", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"render_sidebar\"},\"name\":\"grep_search\"}"}
115
+ {"prompt": "Please fetch the JSON from https://data.portal.app/metrics.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://data.portal.app/metrics\"},\"name\":\"http_request\"}"}
116
  {"prompt": "Check git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
117
  {"prompt": "Please open 'Notion'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Notion\"},\"name\":\"open_app\"}"}
118
  {"prompt": "Summarize the contents of scripts.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"list_dir\"}"}
119
  {"prompt": "Take a look at the scripts directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"list_dir\"}"}
120
+ {"prompt": "Run the Python snippet 'sum(range(8))'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum(range(8))\"},\"name\":\"run_python\"}"}
121
  {"prompt": "Please run 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
122
  {"prompt": "Do a search for files matching '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
123
  {"prompt": "Run a search for files named '*.css'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
124
  {"prompt": "Can you open the 'Figma' app?", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Figma\"},\"name\":\"open_app\"}"}
125
  {"prompt": "Please fetch me info about beginner sourdough recipes.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"beginner sourdough recipes\"},\"name\":\"web_search\"}"}
126
  {"prompt": "Search for 'parse_headers' in the repo.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"parse_headers\"},\"name\":\"grep_search\"}"}
127
+ {"prompt": "Run the unit tests now.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
128
+ {"prompt": "Please run 'print('ok')' in Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"print('ok')\"},\"name\":\"run_python\"}"}
129
  {"prompt": "Please fetch me some information on local coworking spaces.", "kind": "tool", "category": "ctx_fetch", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"local coworking spaces\"},\"name\":\"web_search\"}"}
130
  {"prompt": "Please open 'Chrome'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Chrome\"},\"name\":\"open_app\"}"}
131
  {"prompt": "Summarize what's inside internal.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"internal\"},\"name\":\"list_dir\"}"}
 
149
  {"prompt": "Check on the weather in Stockholm.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Stockholm\"},\"name\":\"get_weather\"}"}
150
  {"prompt": "Can you open the file docs/intro.md?", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
151
  {"prompt": "Look at src/utils.py.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"src/utils.py\"},\"name\":\"read_file\"}"}
152
+ {"prompt": "Go run the command 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
153
  {"prompt": "Go ahead and write 'demo went well' to Slack.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"demo went well\"},\"name\":\"slack_send\"}"}
154
  {"prompt": "Go get the file at files.depot.dev/report.pdf and save it.", "kind": "tool", "category": "ctx_fetch", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.depot.dev/report.pdf\"},\"name\":\"download_file\"}"}
155
  {"prompt": "Fetch the API response at https://api.acme.io/v1/users.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.acme.io/v1/users\"},\"name\":\"http_request\"}"}
156
+ {"prompt": "Run 'len([1, 2, 3])' in Python now.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len([1, 2, 3])\"},\"name\":\"run_python\"}"}
157
  {"prompt": "Open lib/helpers.js.", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
158
  {"prompt": "Go ahead and write 'ideas for the offsite' to my Notion page.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"ideas for the offsite\"},\"name\":\"notion_write\"}"}
159
  {"prompt": "Review the API response from api.blog.dev/posts.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.blog.dev/posts\"},\"name\":\"http_request\"}"}
 
162
  {"prompt": "Look at news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
163
  {"prompt": "Can you write 'release is live' in the #dev channel?", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"release is live\"},\"name\":\"slack_send\"}"}
164
  {"prompt": "I need you to search for local coworking spaces online.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"local coworking spaces\"},\"name\":\"web_search\"}"}
165
+ {"prompt": "Please run 'len([1, 2, 3])' in Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len([1, 2, 3])\"},\"name\":\"run_python\"}"}
166
  {"prompt": "Write 'demo went well' to the #general channel.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"demo went well\"},\"name\":\"slack_send\"}"}
167
  {"prompt": "Go ahead and open the 'Spotify' app.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Spotify\"},\"name\":\"open_app\"}"}
168
+ {"prompt": "Go run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
169
  {"prompt": "Check what's changed in the code.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
170
  {"prompt": "Go check the diff.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
171
+ {"prompt": "Run 'print('ok')' in Python.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"print('ok')\"},\"name\":\"run_python\"}"}
172
  {"prompt": "Check git status.", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
173
  {"prompt": "Can you check the repo?", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
174
  {"prompt": "Can you get the JSON from https://api.acme.io/v1/users?", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.acme.io/v1/users\"},\"name\":\"http_request\"}"}
 
185
  {"prompt": "Go through the article at https://acme.io/blog.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://acme.io/blog\"},\"name\":\"open_url\"}"}
186
  {"prompt": "Check on the diff.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
187
  {"prompt": "Check on the page status.host.io/incidents.", "kind": "tool", "category": "ctx_check", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"status.host.io/incidents\"},\"name\":\"open_url\"}"}
188
+ {"prompt": "Go run the tests.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
189
  {"prompt": "Look at src/utils.py.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"src/utils.py\"},\"name\":\"read_file\"}"}
190
  {"prompt": "Please write the summary to logs/run.log.", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"logs/run.log\"},\"name\":\"write_file\"}"}
191
  {"prompt": "Can you write the summary to notes/summary.md?", "kind": "tool", "category": "ctx_write", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"notes/summary.md\"},\"name\":\"write_file\"}"}
 
198
  {"prompt": "Can you open lib/helpers.js?", "kind": "tool", "category": "ctx_open", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/helpers.js\"},\"name\":\"read_file\"}"}
199
  {"prompt": "Open the page https://acme.io/blog.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://acme.io/blog\"},\"name\":\"open_url\"}"}
200
  {"prompt": "Go run 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
201
+ {"prompt": "Run 'len([1, 2, 3])' in Python now.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len([1, 2, 3])\"},\"name\":\"run_python\"}"}
202
  {"prompt": "Check the forecast for Oslo.", "kind": "tool", "category": "ctx_check", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Oslo\"},\"name\":\"get_weather\"}"}
203
  {"prompt": "Go check what changed.", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
204
+ {"prompt": "Can you run the Python snippet 'max(4, 9)'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"max(4, 9)\"},\"name\":\"run_python\"}"}
205
+ {"prompt": "Go run the command 'kubectl get pods'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"kubectl get pods\"},\"name\":\"run_command\"}"}
206
  {"prompt": "Please write 'deploy is done' in the #dev channel.", "kind": "tool", "category": "ctx_write", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy is done\"},\"name\":\"slack_send\"}"}
207
  {"prompt": "Can you check what changed?", "kind": "tool", "category": "ctx_check", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
208
  {"prompt": "Go through the src directory.", "kind": "tool", "category": "ctx_analyze", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"list_dir\"}"}
 
215
  {"prompt": "Can you check the state of the repo?", "kind": "tool", "category": "ctx_check", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
216
  {"prompt": "Open up https://portal.app/changelog.", "kind": "tool", "category": "ctx_open", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"https://portal.app/changelog\"},\"name\":\"open_url\"}"}
217
  {"prompt": "Go through docs/intro.md.", "kind": "tool", "category": "ctx_analyze", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"docs/intro.md\"},\"name\":\"read_file\"}"}
218
+ {"prompt": "Please run the test suite.", "kind": "tool", "category": "ctx_run", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
219
  {"prompt": "Run a search for standing desk reviews online.", "kind": "tool", "category": "ctx_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"standing desk reviews\"},\"name\":\"web_search\"}"}
220
  {"prompt": "Can you search for files matching '*.css'?", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.css\"},\"name\":\"find_files\"}"}
221
  {"prompt": "Open up 'Chrome'.", "kind": "tool", "category": "ctx_open", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Chrome\"},\"name\":\"open_app\"}"}
222
+ {"prompt": "Run 'python scripts/ingest.py'.", "kind": "tool", "category": "ctx_run", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"python scripts/ingest.py\"},\"name\":\"run_command\"}"}
223
  {"prompt": "Search for 'render_sidebar' in the codebase.", "kind": "tool", "category": "ctx_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"render_sidebar\"},\"name\":\"grep_search\"}"}
224
  {"prompt": "Please write 'q3 planning draft' to my notes.", "kind": "tool", "category": "ctx_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"q3 planning draft\"},\"name\":\"notion_write\"}"}
225
+ {"prompt": "Go run the Python snippet 'len([1, 2, 3])'.", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len([1, 2, 3])\"},\"name\":\"run_python\"}"}
226
  {"prompt": "Look at the article at news.site.org/today.", "kind": "tool", "category": "ctx_analyze", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org/today\"},\"name\":\"open_url\"}"}
227
+ {"prompt": "Can you run the Python snippet 'sum(range(8))'?", "kind": "tool", "category": "ctx_run", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum(range(8))\"},\"name\":\"run_python\"}"}
228
  {"prompt": "Search for files matching '*.ipynb'.", "kind": "tool", "category": "ctx_search", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.ipynb\"},\"name\":\"find_files\"}"}
229
  {"prompt": "Take a look at the JSON from https://api.service.dev/orders.", "kind": "tool", "category": "ctx_analyze", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"https://api.service.dev/orders\"},\"name\":\"http_request\"}"}
230
  {"prompt": "Get the JSON from api.blog.dev/posts.", "kind": "tool", "category": "ctx_fetch", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.blog.dev/posts\"},\"name\":\"http_request\"}"}
freeform_eval.jsonl CHANGED
@@ -26,7 +26,8 @@
26
  {"prompt": "mkdir logs please.", "tool": "make_dir"}
27
  {"prompt": "Run the test suite.", "tool": "run_tests"}
28
  {"prompt": "Execute the unit tests.", "tool": "run_tests"}
29
- {"prompt": "Run the python script train.py.", "tool": "run_python"}
 
30
  {"prompt": "Run the command echo hello in the shell.", "tool": "run_command"}
31
  {"prompt": "Read the file data/loader.py.", "tool": "read_file"}
32
  {"prompt": "Open and show me the contents of README.md.", "tool": "read_file"}
 
26
  {"prompt": "mkdir logs please.", "tool": "make_dir"}
27
  {"prompt": "Run the test suite.", "tool": "run_tests"}
28
  {"prompt": "Execute the unit tests.", "tool": "run_tests"}
29
+ {"prompt": "Run python train.py.", "tool": "run_command"}
30
+ {"prompt": "Run this Python: print(2 ** 16).", "tool": "run_python"}
31
  {"prompt": "Run the command echo hello in the shell.", "tool": "run_command"}
32
  {"prompt": "Read the file data/loader.py.", "tool": "read_file"}
33
  {"prompt": "Open and show me the contents of README.md.", "tool": "read_file"}
freeform_train.jsonl ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"prompt": "How many moons does Jupiter have?", "tool": "web_search"}
2
+ {"prompt": "Look up who painted the Mona Lisa.", "tool": "web_search"}
3
+ {"prompt": "I keep forgetting \u2014 what year did the Berlin Wall fall?", "tool": "web_search"}
4
+ {"prompt": "Quick, find me the capital of Mongolia.", "tool": "web_search"}
5
+ {"prompt": "Can you check how tall Mount Kilimanjaro is?", "tool": "web_search"}
6
+ {"prompt": "What does the term 'serendipitous' actually mean?", "tool": "define"}
7
+ {"prompt": "Define mitochondria.", "tool": "define"}
8
+ {"prompt": "Give me a quick definition of 'recursion'.", "tool": "define"}
9
+ {"prompt": "Pull up news.ycombinator.com in my browser.", "tool": "open_url"}
10
+ {"prompt": "Take me to the homepage at wikipedia.org.", "tool": "open_url"}
11
+ {"prompt": "Hit the endpoint at https://api.stripe.com/v1/charges and show the response.", "tool": "http_request"}
12
+ {"prompt": "Send a GET to https://jsonplaceholder.typicode.com/todos/1.", "tool": "http_request"}
13
+ {"prompt": "Pull down the archive at https://releases.ubuntu.com/jammy.iso for me.", "tool": "download_file"}
14
+ {"prompt": "Save the spreadsheet from https://files.example.org/q3-budget.xlsx to disk.", "tool": "download_file"}
15
+ {"prompt": "Grab https://cdn.fonts.net/inter.woff2 and store it locally.", "tool": "download_file"}
16
+ {"prompt": "Anything happening with the housing market lately?", "tool": "get_news"}
17
+ {"prompt": "Catch me up on the latest in AI regulation.", "tool": "get_news"}
18
+ {"prompt": "What's the buzz around the upcoming Olympics?", "tool": "get_news"}
19
+ {"prompt": "Show me everything inside the vendor folder.", "tool": "list_dir"}
20
+ {"prompt": "What's sitting in the migrations directory?", "tool": "list_dir"}
21
+ {"prompt": "Track down every .yaml file under config.", "tool": "find_files"}
22
+ {"prompt": "Locate all the test_*.go files in the repo.", "tool": "find_files"}
23
+ {"prompt": "Hunt through the source for where compute_loss is called.", "tool": "grep_search"}
24
+ {"prompt": "Find every spot we reference the API_TOKEN constant.", "tool": "grep_search"}
25
+ {"prompt": "Where in the code do we handle the SIGTERM signal?", "tool": "grep_search"}
26
+ {"prompt": "Spin up a folder called artifacts for me.", "tool": "make_dir"}
27
+ {"prompt": "I need a new directory named checkpoints.", "tool": "make_dir"}
28
+ {"prompt": "Kick off the whole test suite, please.", "tool": "run_tests"}
29
+ {"prompt": "Can we run all the unit tests now?", "tool": "run_tests"}
30
+ {"prompt": "Run python manage.py migrate.", "tool": "run_command"}
31
+ {"prompt": "Go ahead and execute python scripts/seed_db.py.", "tool": "run_command"}
32
+ {"prompt": "Fire off du -sh in the terminal.", "tool": "run_command"}
33
+ {"prompt": "Run this Python: print([n*n for n in range(5)]).", "tool": "run_python"}
34
+ {"prompt": "Evaluate sorted({'b':2,'a':1}.items()) in Python for me.", "tool": "run_python"}
35
+ {"prompt": "Let me see what's in src/config/loader.ts.", "tool": "read_file"}
36
+ {"prompt": "Cat the file pyproject.toml.", "tool": "read_file"}
37
+ {"prompt": "Drop a new dotenv file at deploy/.env.production.", "tool": "write_file"}
38
+ {"prompt": "Make a fresh file called notes/standup.md.", "tool": "write_file"}
39
+ {"prompt": "Go tweak the function signatures in lib/handlers.go.", "tool": "edit_file"}
40
+ {"prompt": "Patch up the typo in docs/getting-started.md.", "tool": "edit_file"}
41
+ {"prompt": "How's the working tree looking right now?", "tool": "git_status"}
42
+ {"prompt": "Show me what I've changed but haven't staged yet.", "tool": "git_diff"}
43
+ {"prompt": "Wrap up these changes with a commit message of tidy logging output.", "tool": "git_commit"}
44
+ {"prompt": "Commit everything as bump dependencies to latest.", "tool": "git_commit"}
45
+ {"prompt": "Apply this diff to the file core/scheduler.py.", "tool": "apply_patch"}
46
+ {"prompt": "Roll the patch into web/components/Header.tsx.", "tool": "apply_patch"}
47
+ {"prompt": "Shoot Priyanka an email about the budget review.", "tool": "send_email"}
48
+ {"prompt": "Drop a message in the #releases channel saying we shipped v2.", "tool": "slack_send"}
49
+ {"prompt": "Block off my calendar tomorrow for the dentist.", "tool": "calendar_event"}
50
+ {"prompt": "Nudge me later to refill my prescription.", "tool": "set_reminder"}
51
+ {"prompt": "Jot down 'brainstorm Q4 OKRs' in my Notion.", "tool": "notion_write"}
52
+ {"prompt": "File a Jira ticket for the broken password reset flow.", "tool": "jira_issue"}
53
+ {"prompt": "Give me a 25 minute timer for a focus block.", "tool": "set_timer"}
54
+ {"prompt": "How much is 4096 divided by 16?", "tool": "calculator"}
55
+ {"prompt": "What's 27 squared?", "tool": "calculator"}
56
+ {"prompt": "Is it going to rain in Reykjavik today?", "tool": "get_weather"}
57
+ {"prompt": "How chilly is it over in Helsinki right now?", "tool": "get_weather"}
58
+ {"prompt": "Throw on some Fleetwood Mac \u2014 Dreams.", "tool": "play_music"}
59
+ {"prompt": "Put on Take Five by Dave Brubeck.", "tool": "play_music"}
60
+ {"prompt": "Help me put together a plan to learn the cello.", "tool": "planner"}
61
+ {"prompt": "I want to map out how to migrate us off the monolith.", "tool": "planner"}
62
+ {"prompt": "Run SELECT * FROM subscriptions WHERE active = 0 against the db.", "tool": "sql_query"}
63
+ {"prompt": "Query the database with SELECT count(*) FROM page_views.", "tool": "sql_query"}
64
+ {"prompt": "What's the DATABASE_URL set to in the environment?", "tool": "env_get"}
65
+ {"prompt": "Read the env var STRIPE_SECRET_KEY for me.", "tool": "env_get"}
66
+ {"prompt": "Spin up a container from postgres:16.", "tool": "docker_run"}
67
+ {"prompt": "Boot the redis:7-alpine image in Docker.", "tool": "docker_run"}
68
+ {"prompt": "Add the package httpx to the project.", "tool": "install_package"}
69
+ {"prompt": "Pull in pytest-asyncio as a dependency.", "tool": "install_package"}
70
+ {"prompt": "Kill the stray gunicorn process.", "tool": "kill_process"}
71
+ {"prompt": "Terminate whatever's running as celery-worker.", "tool": "kill_process"}
72
+ {"prompt": "What processes are eating my CPU right now?", "tool": "list_processes"}
73
+ {"prompt": "Unzip the bundle frontend-dist.tar.gz.", "tool": "unzip"}
74
+ {"prompt": "Extract everything out of logs-2026.zip.", "tool": "unzip"}
75
+ {"prompt": "Snap a screenshot of whatever's on my screen.", "tool": "screenshot"}
76
+ {"prompt": "Click the 'Submit order' button.", "tool": "click"}
77
+ {"prompt": "Double-click the 'README' file to open it.", "tool": "double_click"}
78
+ {"prompt": "Type my email address jordan@studio.dev into the form.", "tool": "type_text"}
79
+ {"prompt": "Just hit the Escape key.", "tool": "key_press"}
80
+ {"prompt": "Scroll down a bit so I can see the footer.", "tool": "scroll"}
81
+ {"prompt": "Drag the 'Inbox' card over onto the 'Done' column.", "tool": "drag"}
82
+ {"prompt": "Hold on for about 5 seconds before continuing.", "tool": "wait"}
83
+ {"prompt": "Move the cursor over to the 'Settings' gear.", "tool": "move_cursor"}
84
+ {"prompt": "Fire up the Calculator app.", "tool": "open_app"}
85
+ {"prompt": "What's sitting in my clipboard at the moment?", "tool": "read_clipboard"}
86
+ {"prompt": "Copy the order number 99213 to my clipboard.", "tool": "write_clipboard"}
paraphrase_eval.jsonl CHANGED
The diff for this file is too large to render. See raw diff
 
paraphrase_train.jsonl CHANGED
@@ -5,7 +5,7 @@
5
  {"prompt": "Put 'client call' on the calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"client call\"},\"name\":\"calendar_event\"}"}
6
  {"prompt": "Search for files matching 'src/**/*.rb'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"src/**/*.rb\"},\"name\":\"find_files\"}"}
7
  {"prompt": "Slide 'the avatar' onto 'the menu icon'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the menu icon\",\"source\":\"the avatar\"},\"name\":\"drag\"}"}
8
- {"prompt": "Download the file from shop.co.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"download_file\"}"}
9
  {"prompt": "Drag and drop 'the Login link' to 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the Login link\"},\"name\":\"drag\"}"}
10
  {"prompt": "Find all '*.proto' files.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.proto\"},\"name\":\"find_files\"}"}
11
  {"prompt": "Run 'caddy' as a container.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"caddy\"},\"name\":\"docker_run\"}"}
@@ -38,14 +38,14 @@
38
  {"prompt": "What's in the assets directory?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets\"},\"name\":\"list_dir\"}"}
39
  {"prompt": "Open the 'Books' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Books\"},\"name\":\"open_app\"}"}
40
  {"prompt": "Mouse over and click 'the avatar'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the avatar\"},\"name\":\"click\"}"}
41
- {"prompt": "Update the file report.csv.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"report.csv\"},\"name\":\"edit_file\"}"}
42
  {"prompt": "Update me on the championship game.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the championship game\"},\"name\":\"get_news\"}"}
43
  {"prompt": "I want to build a treehouse.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"build a treehouse\"},\"name\":\"planner\"}"}
44
  {"prompt": "Make me a directory src.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"make_dir\"}"}
45
  {"prompt": "Slide the cursor to 'the logo'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the logo\"},\"name\":\"move_cursor\"}"}
46
  {"prompt": "Capture a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
47
  {"prompt": "Tap Enter.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Enter\"},\"name\":\"key_press\"}"}
48
- {"prompt": "Run the Python code 'sorted([3, 1, 2])'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sorted([3, 1, 2])\"},\"name\":\"run_python\"}"}
49
  {"prompt": "Set a reminder to drink water.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"drink water\"},\"name\":\"set_reminder\"}"}
50
  {"prompt": "Drag 'the plus button' over onto 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the plus button\"},\"name\":\"drag\"}"}
51
  {"prompt": "Give me the contents of notes.md.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"read_file\"}"}
@@ -71,7 +71,7 @@
71
  {"prompt": "Show me files matching '*.proto'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.proto\"},\"name\":\"find_files\"}"}
72
  {"prompt": "Press the Space key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
73
  {"prompt": "Fire off 'tox'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"tox\"},\"name\":\"run_command\"}"}
74
- {"prompt": "Change main.go.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"edit_file\"}"}
75
  {"prompt": "Stop 'php' from running.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"php\"},\"name\":\"kill_process\"}"}
76
  {"prompt": "Go ahead and click 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
77
  {"prompt": "Kill the process 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
@@ -88,7 +88,7 @@
88
  {"prompt": "Find every 'test_*.go' file.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"test_*.go\"},\"name\":\"find_files\"}"}
89
  {"prompt": "Query the database with 'INSERT INTO logs VALUES (1)'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"INSERT INTO logs VALUES (1)\"},\"name\":\"sql_query\"}"}
90
  {"prompt": "Get 'dentist appointment' on my calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"dentist appointment\"},\"name\":\"calendar_event\"}"}
91
- {"prompt": "Run the snippet 'list(reversed([1, 2]))' in Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
92
  {"prompt": "Reach Omar by email.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
93
  {"prompt": "Put a timer on for 50 seconds.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"50 seconds\"},\"name\":\"set_timer\"}"}
94
  {"prompt": "Write 'home address' in the box.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"home address\"},\"name\":\"type_text\"}"}
@@ -106,9 +106,9 @@
106
  {"prompt": "Search the repo for 'handle_request'.", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"handle_request\"},\"name\":\"grep_search\"}"}
107
  {"prompt": "Open blog.dev.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"open_url\"}"}
108
  {"prompt": "Do a GET on api.service.dev.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.service.dev\"},\"name\":\"http_request\"}"}
109
- {"prompt": "Make changes to schema.graphql.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"schema.graphql\"},\"name\":\"edit_file\"}"}
110
  {"prompt": "Patch the file server.rb.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"apply_patch\"}"}
111
- {"prompt": "Edit styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
112
  {"prompt": "Work out 44+11.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"44+11\"},\"name\":\"calculator\"}"}
113
  {"prompt": "What's on the clipboard?", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
114
  {"prompt": "Unpack the file src.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"src.zip\"},\"name\":\"unzip\"}"}
@@ -130,7 +130,7 @@
130
  {"prompt": "Write 'study schedule' in Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"study schedule\"},\"name\":\"notion_write\"}"}
131
  {"prompt": "Get 'dentist appointment' on my calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"dentist appointment\"},\"name\":\"calendar_event\"}"}
132
  {"prompt": "Can you visit store.example.net?", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"open_url\"}"}
133
- {"prompt": "Grab files.example.com for me.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.example.com\"},\"name\":\"download_file\"}"}
134
  {"prompt": "What's the git status?", "kind": "tool", "category": "git_status", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
135
  {"prompt": "Print the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
136
  {"prompt": "Plan how to get into shape.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"get into shape\"},\"name\":\"planner\"}"}
@@ -183,17 +183,17 @@
183
  {"prompt": "docker run 'consul'.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
184
  {"prompt": "Slack the team 'lgtm'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"lgtm\"},\"name\":\"slack_send\"}"}
185
  {"prompt": "Search the repo for 'class Server'.", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"class Server\"},\"name\":\"grep_search\"}"}
186
- {"prompt": "Modify styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
187
  {"prompt": "Tap 'the logo'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the logo\"},\"name\":\"click\"}"}
188
  {"prompt": "Do I need an umbrella in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
189
- {"prompt": "Go edit notes.md.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"edit_file\"}"}
190
  {"prompt": "Make a plan to train for a triathlon.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"train for a triathlon\"},\"name\":\"planner\"}"}
191
  {"prompt": "Click on 'the tab'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the tab\"},\"name\":\"click\"}"}
192
  {"prompt": "Raise a Jira ticket for 'image upload error'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"image upload error\"},\"name\":\"jira_issue\"}"}
193
  {"prompt": "Put 'promo code' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"promo code\"},\"name\":\"write_clipboard\"}"}
194
  {"prompt": "Run 'tox'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"tox\"},\"name\":\"run_command\"}"}
195
  {"prompt": "Log a Jira issue: 'timezone bug'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"timezone bug\"},\"name\":\"jira_issue\"}"}
196
- {"prompt": "Download portal.app.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"download_file\"}"}
197
  {"prompt": "Reach Elena by email.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Elena\"},\"name\":\"send_email\"}"}
198
  {"prompt": "Stream Counting Stars.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Counting Stars\"},\"name\":\"play_music\"}"}
199
  {"prompt": "Knock out 'envoy'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"envoy\"},\"name\":\"kill_process\"}"}
@@ -204,7 +204,7 @@
204
  {"prompt": "Do I need an umbrella in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
205
  {"prompt": "List out assets.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets\"},\"name\":\"list_dir\"}"}
206
  {"prompt": "Press 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
207
- {"prompt": "Download the file located at blog.dev.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"download_file\"}"}
208
  {"prompt": "Ping Slack with 'standup in 10'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"standup in 10\"},\"name\":\"slack_send\"}"}
209
  {"prompt": "I need to remember to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
210
  {"prompt": "Read what's in the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
@@ -213,7 +213,7 @@
213
  {"prompt": "Copy 'ticket number' for me.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
214
  {"prompt": "Tell me what 'DB_HOST' is set to.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"DB_HOST\"},\"name\":\"env_get\"}"}
215
  {"prompt": "Double click 'the layer'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the layer\"},\"name\":\"double_click\"}"}
216
- {"prompt": "Touch up styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
217
  {"prompt": "Add the dependency 'express'.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"express\"},\"name\":\"install_package\"}"}
218
  {"prompt": "Create a directory named templates.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"make_dir\"}"}
219
  {"prompt": "Select 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
@@ -265,10 +265,10 @@
265
  {"prompt": "Visit store.example.net.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"open_url\"}"}
266
  {"prompt": "Let me see the diff.", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
267
  {"prompt": "What is nostalgia?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"nostalgia\"},\"name\":\"define\"}"}
268
- {"prompt": "Apply the patch to queries.sql.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"apply_patch\"}"}
269
  {"prompt": "Execute all tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
270
  {"prompt": "Grab a screenshot of the screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
271
- {"prompt": "Run this Python: 'print(42)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"print(42)\"},\"name\":\"run_python\"}"}
272
  {"prompt": "Open up 'Music'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Music\"},\"name\":\"open_app\"}"}
273
  {"prompt": "Make a directory called scripts.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"make_dir\"}"}
274
  {"prompt": "Run the unit tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
@@ -290,7 +290,7 @@
290
  {"prompt": "Screenshot the current screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
291
  {"prompt": "Run the unit tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
292
  {"prompt": "Show me the process list.", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
293
- {"prompt": "Pull down store.example.net.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"download_file\"}"}
294
  {"prompt": "Pause for 14 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":14},\"name\":\"wait\"}"}
295
  {"prompt": "Meaning of empathy?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"empathy\"},\"name\":\"define\"}"}
296
  {"prompt": "Capture a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
@@ -311,7 +311,7 @@
311
  {"prompt": "Open a Jira issue for 'timezone bug'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"timezone bug\"},\"name\":\"jira_issue\"}"}
312
  {"prompt": "Make a plan to start a business.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"start a business\"},\"name\":\"planner\"}"}
313
  {"prompt": "Set a reminder to check email.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"check email\"},\"name\":\"set_reminder\"}"}
314
- {"prompt": "Interpret 'list(reversed([1, 2]))' as Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
315
  {"prompt": "Create the directory logs.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"logs\"},\"name\":\"make_dir\"}"}
316
  {"prompt": "Kill 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
317
  {"prompt": "Show the value of 'TOKEN'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"TOKEN\"},\"name\":\"env_get\"}"}
@@ -325,7 +325,7 @@
325
  {"prompt": "Let me see Makefile.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"read_file\"}"}
326
  {"prompt": "Commit the changes: 'refactor api'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"refactor api\"},\"name\":\"git_commit\"}"}
327
  {"prompt": "Email a note to Maya.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Maya\"},\"name\":\"send_email\"}"}
328
- {"prompt": "Modify index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
329
  {"prompt": "Set up a folder called vendor.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"make_dir\"}"}
330
  {"prompt": "Check the environment variable 'MAX_RETRIES'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"MAX_RETRIES\"},\"name\":\"env_get\"}"}
331
  {"prompt": "Bring up portal.app.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"open_url\"}"}
@@ -335,13 +335,13 @@
335
  {"prompt": "Help me plan to build a treehouse.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"build a treehouse\"},\"name\":\"planner\"}"}
336
  {"prompt": "What processes are running?", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
337
  {"prompt": "Remind me to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
338
- {"prompt": "Fix up index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
339
  {"prompt": "Set the clipboard to 'ticket number'.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
340
  {"prompt": "Hit 'the node' twice.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the node\"},\"name\":\"double_click\"}"}
341
  {"prompt": "Slide 'the Save button' onto 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
342
  {"prompt": "Hit shop.co with a request.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"http_request\"}"}
343
  {"prompt": "Wake me in 55 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
344
- {"prompt": "Compute 'len('hello')' with Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len('hello')\"},\"name\":\"run_python\"}"}
345
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
346
  {"prompt": "Install the 'axios' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"axios\"},\"name\":\"install_package\"}"}
347
  {"prompt": "Explain the word candid.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"candid\"},\"name\":\"define\"}"}
@@ -402,7 +402,7 @@
402
  {"prompt": "Set a timer for 5 hours.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"5 hours\"},\"name\":\"set_timer\"}"}
403
  {"prompt": "Expand logs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"logs.zip\"},\"name\":\"unzip\"}"}
404
  {"prompt": "Look up the tallest mountain.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the tallest mountain\"},\"name\":\"web_search\"}"}
405
- {"prompt": "Retrieve the file from mail.provider.net.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"mail.provider.net\"},\"name\":\"download_file\"}"}
406
  {"prompt": "Unpack the archive samples.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"samples.zip\"},\"name\":\"unzip\"}"}
407
  {"prompt": "Spin up a file handler.kt.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"write_file\"}"}
408
  {"prompt": "Decompress release.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"release.zip\"},\"name\":\"unzip\"}"}
@@ -413,9 +413,9 @@
413
  {"prompt": "Sit tight 11 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":11},\"name\":\"wait\"}"}
414
  {"prompt": "Start counting down 50 seconds.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"50 seconds\"},\"name\":\"set_timer\"}"}
415
  {"prompt": "Nudge me to log hours.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"log hours\"},\"name\":\"set_reminder\"}"}
416
- {"prompt": "Run 'len('hello')' in Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len('hello')\"},\"name\":\"run_python\"}"}
417
  {"prompt": "Do the math on 20-4.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"20-4\"},\"name\":\"calculator\"}"}
418
- {"prompt": "Download cdn.assets.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.assets.io\"},\"name\":\"download_file\"}"}
419
  {"prompt": "Create a reminder to stretch.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"stretch\"},\"name\":\"set_reminder\"}"}
420
  {"prompt": "Kill the process 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
421
  {"prompt": "Explain the word ephemeral.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"ephemeral\"},\"name\":\"define\"}"}
@@ -438,7 +438,7 @@
438
  {"prompt": "How's the weather in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
439
  {"prompt": "I need to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
440
  {"prompt": "Send 'deploy finished' to the Slack channel.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy finished\"},\"name\":\"slack_send\"}"}
441
- {"prompt": "Edit the file notes.md.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"edit_file\"}"}
442
  {"prompt": "Take me to docs.product.com.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"docs.product.com\"},\"name\":\"open_url\"}"}
443
  {"prompt": "Add a calendar event called '1:1 with manager'.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"1:1 with manager\"},\"name\":\"calendar_event\"}"}
444
  {"prompt": "What's in examples?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"examples\"},\"name\":\"list_dir\"}"}
@@ -510,17 +510,17 @@
510
  {"prompt": "Where is 'retry_count' used?", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"retry_count\"},\"name\":\"grep_search\"}"}
511
  {"prompt": "Hover over 'the toggle'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"move_cursor\"}"}
512
  {"prompt": "Press the Space key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
513
- {"prompt": "Fix up pipeline.yml.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"edit_file\"}"}
514
  {"prompt": "Send a request to shop.co.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"http_request\"}"}
515
  {"prompt": "Create a directory named logs.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"logs\"},\"name\":\"make_dir\"}"}
516
  {"prompt": "Unpack the archive exports.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"exports.zip\"},\"name\":\"unzip\"}"}
517
  {"prompt": "Snap a picture of what's on screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
518
  {"prompt": "Install the 'eslint' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"eslint\"},\"name\":\"install_package\"}"}
519
- {"prompt": "Make a quick edit to index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
520
  {"prompt": "Log a Jira issue: 'missing translations'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"missing translations\"},\"name\":\"jira_issue\"}"}
521
  {"prompt": "Put 'promo code' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"promo code\"},\"name\":\"write_clipboard\"}"}
522
  {"prompt": "Look up the distance to the moon.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the distance to the moon\"},\"name\":\"web_search\"}"}
523
- {"prompt": "Download the file located at status.host.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"status.host.io\"},\"name\":\"download_file\"}"}
524
  {"prompt": "Run the patch on handler.kt.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"apply_patch\"}"}
525
  {"prompt": "Show what's inside templates.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"list_dir\"}"}
526
  {"prompt": "Execute 'SELECT name FROM teams' on the database.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"SELECT name FROM teams\"},\"name\":\"sql_query\"}"}
@@ -528,17 +528,17 @@
528
  {"prompt": "Can you play Shape of You?", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Shape of You\"},\"name\":\"play_music\"}"}
529
  {"prompt": "Peek inside vendor.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"list_dir\"}"}
530
  {"prompt": "Read out main.go.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"read_file\"}"}
531
- {"prompt": "Pull the file down from api.service.dev.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"api.service.dev\"},\"name\":\"download_file\"}"}
532
  {"prompt": "Open 'Pages'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
533
  {"prompt": "Drag and drop 'the Save button' to 'the Login link'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the Login link\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
534
  {"prompt": "Hit 'the plus button'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the plus button\"},\"name\":\"click\"}"}
535
  {"prompt": "Install the 'zod' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"zod\"},\"name\":\"install_package\"}"}
536
- {"prompt": "Download the file from status.host.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"status.host.io\"},\"name\":\"download_file\"}"}
537
  {"prompt": "Start the 'consul' image in Docker.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
538
  {"prompt": "Slack the team 'out for lunch'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"out for lunch\"},\"name\":\"slack_send\"}"}
539
  {"prompt": "Make a file called main.go.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"write_file\"}"}
540
  {"prompt": "Read the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
541
- {"prompt": "Run this Python: 'bool(0)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"bool(0)\"},\"name\":\"run_python\"}"}
542
  {"prompt": "What's in the docs directory?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"docs\"},\"name\":\"list_dir\"}"}
543
  {"prompt": "Time 55 minutes for me.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
544
  {"prompt": "Take a screen capture.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
@@ -547,7 +547,7 @@
547
  {"prompt": "Open the 'Keynote' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Keynote\"},\"name\":\"open_app\"}"}
548
  {"prompt": "Hit 'the OK button'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the OK button\"},\"name\":\"click\"}"}
549
  {"prompt": "Grab 'the menu icon' and drag it to 'the avatar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the avatar\",\"source\":\"the menu icon\"},\"name\":\"drag\"}"}
550
- {"prompt": "Fix up server.rb.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"edit_file\"}"}
551
  {"prompt": "Put together a plan to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
552
  {"prompt": "Send an HTTP GET to status.host.io.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"status.host.io\"},\"name\":\"http_request\"}"}
553
  {"prompt": "Apply changes to report.csv as a patch.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"report.csv\"},\"name\":\"apply_patch\"}"}
@@ -567,7 +567,7 @@
567
  {"prompt": "Email Omar.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
568
  {"prompt": "Give it 100 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":100},\"name\":\"wait\"}"}
569
  {"prompt": "Swipe up.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
570
- {"prompt": "Compute 'sum([1, 2, 3])' with Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum([1, 2, 3])\"},\"name\":\"run_python\"}"}
571
  {"prompt": "Can you tell me why the sky is blue?", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"why the sky is blue\"},\"name\":\"web_search\"}"}
572
  {"prompt": "Make a Jira issue about 'bad redirect'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"bad redirect\"},\"name\":\"jira_issue\"}"}
573
  {"prompt": "Save the file main.go.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"write_file\"}"}
@@ -580,7 +580,7 @@
580
  {"prompt": "Spin up a file schema.graphql.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"schema.graphql\"},\"name\":\"write_file\"}"}
581
  {"prompt": "Copy 'license key' to the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"license key\"},\"name\":\"write_clipboard\"}"}
582
  {"prompt": "Do the math on 100-33.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"100-33\"},\"name\":\"calculator\"}"}
583
- {"prompt": "Grab status.host.io for me.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"status.host.io\"},\"name\":\"download_file\"}"}
584
  {"prompt": "Display main.go.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"read_file\"}"}
585
  {"prompt": "Give me a plan to plan a road trip.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"plan a road trip\"},\"name\":\"planner\"}"}
586
  {"prompt": "Tell me the latest about the celebrity scandal.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the celebrity scandal\"},\"name\":\"get_news\"}"}
@@ -596,7 +596,7 @@
596
  {"prompt": "Throw 'ticket number' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
597
  {"prompt": "Commit everything with 'wip'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"wip\"},\"name\":\"git_commit\"}"}
598
  {"prompt": "Stop the 'watchman' process.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"watchman\"},\"name\":\"kill_process\"}"}
599
- {"prompt": "Pull the file down from docs.product.com.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"docs.product.com\"},\"name\":\"download_file\"}"}
600
  {"prompt": "Key in 'order 3310'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"order 3310\"},\"name\":\"type_text\"}"}
601
  {"prompt": "Open up the archive logs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"logs.zip\"},\"name\":\"unzip\"}"}
602
  {"prompt": "Trigger the test suite.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
@@ -612,7 +612,7 @@
612
  {"prompt": "What did I change?", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
613
  {"prompt": "Fire up news.site.org in the browser.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org\"},\"name\":\"open_url\"}"}
614
  {"prompt": "Let's run the tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
615
- {"prompt": "Make a quick edit to index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
616
  {"prompt": "Lay the patch over notes.md.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"apply_patch\"}"}
617
  {"prompt": "Start the 'node:18' image in Docker.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"node:18\"},\"name\":\"docker_run\"}"}
618
  {"prompt": "Hit Space.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
@@ -635,7 +635,7 @@
635
  {"prompt": "Wait for 22 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":22},\"name\":\"wait\"}"}
636
  {"prompt": "Which files match '*.yml'?", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.yml\"},\"name\":\"find_files\"}"}
637
  {"prompt": "List files matching '*.cfg'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.cfg\"},\"name\":\"find_files\"}"}
638
- {"prompt": "Download the file from cdn.assets.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.assets.io\"},\"name\":\"download_file\"}"}
639
  {"prompt": "Snap a picture of what's on screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
640
  {"prompt": "Execute 'npm ci'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"npm ci\"},\"name\":\"run_command\"}"}
641
  {"prompt": "Send Tariq an email message.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Tariq\"},\"name\":\"send_email\"}"}
@@ -643,15 +643,15 @@
643
  {"prompt": "Type 'rake db:migrate' in the terminal.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"rake db:migrate\"},\"name\":\"run_command\"}"}
644
  {"prompt": "Send a Slack message saying 'merging this'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"merging this\"},\"name\":\"slack_send\"}"}
645
  {"prompt": "Brief me on the election results.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the election results\"},\"name\":\"get_news\"}"}
646
- {"prompt": "Use Python to run 'int('100')'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"int('100')\"},\"name\":\"run_python\"}"}
647
  {"prompt": "Show the contents of server.rb.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"read_file\"}"}
648
  {"prompt": "Give me 12+7.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"12+7\"},\"name\":\"calculator\"}"}
649
  {"prompt": "Remind me later to call mom.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"call mom\"},\"name\":\"set_reminder\"}"}
650
- {"prompt": "Edit the file queries.sql.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"edit_file\"}"}
651
  {"prompt": "Start playing Shape of You.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Shape of You\"},\"name\":\"play_music\"}"}
652
  {"prompt": "Run our tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
653
  {"prompt": "Unpack the archive src.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"src.zip\"},\"name\":\"unzip\"}"}
654
- {"prompt": "Download the file located at acme.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"acme.io\"},\"name\":\"download_file\"}"}
655
  {"prompt": "Fetch the value of 'API_URL'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"API_URL\"},\"name\":\"env_get\"}"}
656
  {"prompt": "Run the 'consul' image.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
657
  {"prompt": "Double tap 'the thumbnail'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the thumbnail\"},\"name\":\"double_click\"}"}
@@ -661,7 +661,7 @@
661
  {"prompt": "Move the cursor to 'the OK button'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the OK button\"},\"name\":\"move_cursor\"}"}
662
  {"prompt": "Calculate 15+8.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"15+8\"},\"name\":\"calculator\"}"}
663
  {"prompt": "Get the clipboard contents.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
664
- {"prompt": "Compute 'bool(0)' with Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"bool(0)\"},\"name\":\"run_python\"}"}
665
  {"prompt": "I want to know the weight of an elephant.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the weight of an elephant\"},\"name\":\"web_search\"}"}
666
  {"prompt": "What did I change?", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
667
  {"prompt": "Run this command: 'df -h'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"df -h\"},\"name\":\"run_command\"}"}
@@ -676,7 +676,7 @@
676
  {"prompt": "Drag 'the search bar' onto 'the Save button'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the Save button\",\"source\":\"the search bar\"},\"name\":\"drag\"}"}
677
  {"prompt": "Give me a plan to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
678
  {"prompt": "Save a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
679
- {"prompt": "Have Python evaluate 'list(reversed([1, 2]))'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
680
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
681
  {"prompt": "Fetch the value of 'QUEUE_NAME'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"QUEUE_NAME\"},\"name\":\"env_get\"}"}
682
  {"prompt": "Run the shell command 'df -h'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"df -h\"},\"name\":\"run_command\"}"}
@@ -713,7 +713,7 @@
713
  {"prompt": "Type 'full name'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"full name\"},\"name\":\"type_text\"}"}
714
  {"prompt": "Kill 'bun'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"bun\"},\"name\":\"kill_process\"}"}
715
  {"prompt": "Tell me the weather for Sydney.", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Sydney\"},\"name\":\"get_weather\"}"}
716
- {"prompt": "Get the file at blog.dev.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"download_file\"}"}
717
  {"prompt": "Drag the page down.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
718
  {"prompt": "Email a note to Elena.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Elena\"},\"name\":\"send_email\"}"}
719
  {"prompt": "Copy the text 'see you soon'.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"see you soon\"},\"name\":\"write_clipboard\"}"}
@@ -723,7 +723,7 @@
723
  {"prompt": "Open a Jira issue for 'missing translations'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"missing translations\"},\"name\":\"jira_issue\"}"}
724
  {"prompt": "Call out to portal.app.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"http_request\"}"}
725
  {"prompt": "Commit the changes: 'update readme'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"update readme\"},\"name\":\"git_commit\"}"}
726
- {"prompt": "Run this Python: 'list(reversed([1, 2]))'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
727
  {"prompt": "Wipe out the 'dotnet' process.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"dotnet\"},\"name\":\"kill_process\"}"}
728
  {"prompt": "Hit 'the app icon' twice.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the app icon\"},\"name\":\"double_click\"}"}
729
  {"prompt": "What is 'API_URL' set to?", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"API_URL\"},\"name\":\"env_get\"}"}
@@ -751,7 +751,7 @@
751
  {"prompt": "Kick off a timer for 18 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"18 minutes\"},\"name\":\"set_timer\"}"}
752
  {"prompt": "Hit 'the Login link'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the Login link\"},\"name\":\"click\"}"}
753
  {"prompt": "Print the diff.", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
754
- {"prompt": "Update the file index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
755
  {"prompt": "Let the team know on Slack: 'deploy finished'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy finished\"},\"name\":\"slack_send\"}"}
756
  {"prompt": "Peek inside src.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"list_dir\"}"}
757
  {"prompt": "Apply changes to handler.kt as a patch.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"apply_patch\"}"}
@@ -762,7 +762,7 @@
762
  {"prompt": "Add a Jira ticket titled 'stale cache'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"stale cache\"},\"name\":\"jira_issue\"}"}
763
  {"prompt": "Show me headlines about the new tax bill.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the new tax bill\"},\"name\":\"get_news\"}"}
764
  {"prompt": "Show me headlines about the new tax bill.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the new tax bill\"},\"name\":\"get_news\"}"}
765
- {"prompt": "Run this Python: 'range(5)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"range(5)\"},\"name\":\"run_python\"}"}
766
  {"prompt": "Message the channel 'out for lunch'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"out for lunch\"},\"name\":\"slack_send\"}"}
767
  {"prompt": "Let me know in 35 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"35 minutes\"},\"name\":\"set_timer\"}"}
768
  {"prompt": "Save 'gift ideas' to Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"gift ideas\"},\"name\":\"notion_write\"}"}
@@ -780,7 +780,7 @@
780
  {"prompt": "Take a shot of the screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
781
  {"prompt": "Move the mouse to 'the search bar'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the search bar\"},\"name\":\"move_cursor\"}"}
782
  {"prompt": "Show all running processes.", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
783
- {"prompt": "Download the file from shop.co.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"download_file\"}"}
784
  {"prompt": "What does the term frugal mean?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"frugal\"},\"name\":\"define\"}"}
785
  {"prompt": "Open blog.dev.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"open_url\"}"}
786
  {"prompt": "Scroll down some more.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
@@ -827,7 +827,7 @@
827
  {"prompt": "Fetch the value of 'REGION'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"REGION\"},\"name\":\"env_get\"}"}
828
  {"prompt": "Check the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
829
  {"prompt": "Input 'billing info'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"billing info\"},\"name\":\"type_text\"}"}
830
- {"prompt": "Download whatever is at store.example.net.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"download_file\"}"}
831
  {"prompt": "What's a meticulous?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"meticulous\"},\"name\":\"define\"}"}
832
  {"prompt": "Hang on 11 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":11},\"name\":\"wait\"}"}
833
  {"prompt": "Create folder vendor.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"make_dir\"}"}
@@ -848,14 +848,14 @@
848
  {"prompt": "Help me remember to feed the cat.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"feed the cat\"},\"name\":\"set_reminder\"}"}
849
  {"prompt": "Type in 'March 2026'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"March 2026\"},\"name\":\"type_text\"}"}
850
  {"prompt": "Create a Jira ticket titled 'duplicate emails'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"duplicate emails\"},\"name\":\"jira_issue\"}"}
851
- {"prompt": "Apply the patch to schema.graphql.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"schema.graphql\"},\"name\":\"apply_patch\"}"}
852
- {"prompt": "Grab the file at portal.app.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"download_file\"}"}
853
  {"prompt": "Press the Escape key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Escape\"},\"name\":\"key_press\"}"}
854
  {"prompt": "Press Space now.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
855
  {"prompt": "Read what's in the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
856
  {"prompt": "Set up a reminder to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
857
  {"prompt": "Pop on Levitating.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Levitating\"},\"name\":\"play_music\"}"}
858
- {"prompt": "What does 'sorted([3, 1, 2])' return in Python?", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sorted([3, 1, 2])\"},\"name\":\"run_python\"}"}
859
  {"prompt": "Type 'daily notes'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"daily notes\"},\"name\":\"type_text\"}"}
860
  {"prompt": "Got any info on why the sky is blue?", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"why the sky is blue\"},\"name\":\"web_search\"}"}
861
  {"prompt": "Two clicks on 'the row'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the row\"},\"name\":\"double_click\"}"}
@@ -888,8 +888,8 @@
888
  {"prompt": "Make a new folder scripts.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"make_dir\"}"}
889
  {"prompt": "Create queries.sql.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"write_file\"}"}
890
  {"prompt": "Stick 'address line' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"address line\"},\"name\":\"write_clipboard\"}"}
891
- {"prompt": "Tweak Makefile.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"edit_file\"}"}
892
- {"prompt": "Get the file at acme.io.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"acme.io\"},\"name\":\"download_file\"}"}
893
  {"prompt": "Sum up 15+8.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"15+8\"},\"name\":\"calculator\"}"}
894
  {"prompt": "Check the environment variable 'MAX_RETRIES'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"MAX_RETRIES\"},\"name\":\"env_get\"}"}
895
  {"prompt": "Scroll down some more.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
@@ -925,14 +925,14 @@
925
  {"prompt": "Define vivid.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"vivid\"},\"name\":\"define\"}"}
926
  {"prompt": "Send 'great work everyone' on Slack.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"great work everyone\"},\"name\":\"slack_send\"}"}
927
  {"prompt": "Create the file Makefile.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"write_file\"}"}
928
- {"prompt": "Evaluate 'abs(-7)' in a Python shell.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-7)\"},\"name\":\"run_python\"}"}
929
  {"prompt": "Search for files matching '**/*.md'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.md\"},\"name\":\"find_files\"}"}
930
  {"prompt": "Query the database with 'SELECT * FROM clients'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"SELECT * FROM clients\"},\"name\":\"sql_query\"}"}
931
  {"prompt": "Add a reminder to drink water.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"drink water\"},\"name\":\"set_reminder\"}"}
932
  {"prompt": "Pop on Uptown Funk.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Uptown Funk\"},\"name\":\"play_music\"}"}
933
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
934
  {"prompt": "Open the 'Stocks' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Stocks\"},\"name\":\"open_app\"}"}
935
- {"prompt": "Fix up pipeline.yml.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"edit_file\"}"}
936
  {"prompt": "Launch the 'Pages' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
937
  {"prompt": "Shell out 'whoami'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"whoami\"},\"name\":\"run_command\"}"}
938
  {"prompt": "Execute the SQL statement 'DELETE FROM sessions'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"DELETE FROM sessions\"},\"name\":\"sql_query\"}"}
@@ -943,7 +943,7 @@
943
  {"prompt": "Swipe up.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
944
  {"prompt": "Decompress assets.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"assets.zip\"},\"name\":\"unzip\"}"}
945
  {"prompt": "List out examples.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"examples\"},\"name\":\"list_dir\"}"}
946
- {"prompt": "Fix up index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
947
  {"prompt": "Start 'Pages'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
948
  {"prompt": "Put the cursor on 'the search bar'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the search bar\"},\"name\":\"move_cursor\"}"}
949
  {"prompt": "What's it like outside in Cork?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Cork\"},\"name\":\"get_weather\"}"}
@@ -974,12 +974,12 @@
974
  {"prompt": "Drag 'the Save button' onto 'the menu icon'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the menu icon\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
975
  {"prompt": "Dash off an email to Omar.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
976
  {"prompt": "Tap Tab.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Tab\"},\"name\":\"key_press\"}"}
977
- {"prompt": "Edit the file queries.sql.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"edit_file\"}"}
978
  {"prompt": "Can you visit cdn.assets.io?", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"cdn.assets.io\"},\"name\":\"open_url\"}"}
979
  {"prompt": "Save the file pipeline.yml.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"write_file\"}"}
980
  {"prompt": "Get the env variable 'REGION'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"REGION\"},\"name\":\"env_get\"}"}
981
  {"prompt": "I need to remember to send the invoice.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"send the invoice\"},\"name\":\"set_reminder\"}"}
982
- {"prompt": "Retrieve the file from portal.app.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"download_file\"}"}
983
  {"prompt": "Show me the repo status.", "kind": "tool", "category": "git_status", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
984
  {"prompt": "Spin up a Jira ticket for 'image upload error'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"image upload error\"},\"name\":\"jira_issue\"}"}
985
  {"prompt": "Get the clipboard contents.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
@@ -994,7 +994,7 @@
994
  {"prompt": "Peek inside templates.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"list_dir\"}"}
995
  {"prompt": "Set a timer for 55 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
996
  {"prompt": "List files matching 'src/**/*.rb'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"src/**/*.rb\"},\"name\":\"find_files\"}"}
997
- {"prompt": "Fire up Python and run 'sum([1, 2, 3])'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum([1, 2, 3])\"},\"name\":\"run_python\"}"}
998
  {"prompt": "Expand docs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"docs.zip\"},\"name\":\"unzip\"}"}
999
  {"prompt": "Get the env variable 'NODE_ENV'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"NODE_ENV\"},\"name\":\"env_get\"}"}
1000
  {"prompt": "Log 'workout log' in Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"workout log\"},\"name\":\"notion_write\"}"}
 
5
  {"prompt": "Put 'client call' on the calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"client call\"},\"name\":\"calendar_event\"}"}
6
  {"prompt": "Search for files matching 'src/**/*.rb'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"src/**/*.rb\"},\"name\":\"find_files\"}"}
7
  {"prompt": "Slide 'the avatar' onto 'the menu icon'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the menu icon\",\"source\":\"the avatar\"},\"name\":\"drag\"}"}
8
+ {"prompt": "Download the file from https://blog.dev/assets/data.csv.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://blog.dev/assets/data.csv\"},\"name\":\"download_file\"}"}
9
  {"prompt": "Drag and drop 'the Login link' to 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the Login link\"},\"name\":\"drag\"}"}
10
  {"prompt": "Find all '*.proto' files.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.proto\"},\"name\":\"find_files\"}"}
11
  {"prompt": "Run 'caddy' as a container.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"caddy\"},\"name\":\"docker_run\"}"}
 
38
  {"prompt": "What's in the assets directory?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets\"},\"name\":\"list_dir\"}"}
39
  {"prompt": "Open the 'Books' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Books\"},\"name\":\"open_app\"}"}
40
  {"prompt": "Mouse over and click 'the avatar'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the avatar\"},\"name\":\"click\"}"}
41
+ {"prompt": "Make changes to pipeline.yml.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"edit_file\"}"}
42
  {"prompt": "Update me on the championship game.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the championship game\"},\"name\":\"get_news\"}"}
43
  {"prompt": "I want to build a treehouse.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"build a treehouse\"},\"name\":\"planner\"}"}
44
  {"prompt": "Make me a directory src.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"make_dir\"}"}
45
  {"prompt": "Slide the cursor to 'the logo'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the logo\"},\"name\":\"move_cursor\"}"}
46
  {"prompt": "Capture a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
47
  {"prompt": "Tap Enter.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Enter\"},\"name\":\"key_press\"}"}
48
+ {"prompt": "Run this Python: 'sorted([3, 1, 2])'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sorted([3, 1, 2])\"},\"name\":\"run_python\"}"}
49
  {"prompt": "Set a reminder to drink water.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"drink water\"},\"name\":\"set_reminder\"}"}
50
  {"prompt": "Drag 'the plus button' over onto 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the plus button\"},\"name\":\"drag\"}"}
51
  {"prompt": "Give me the contents of notes.md.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"read_file\"}"}
 
71
  {"prompt": "Show me files matching '*.proto'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.proto\"},\"name\":\"find_files\"}"}
72
  {"prompt": "Press the Space key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
73
  {"prompt": "Fire off 'tox'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"tox\"},\"name\":\"run_command\"}"}
74
+ {"prompt": "Fix up index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
75
  {"prompt": "Stop 'php' from running.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"php\"},\"name\":\"kill_process\"}"}
76
  {"prompt": "Go ahead and click 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
77
  {"prompt": "Kill the process 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
 
88
  {"prompt": "Find every 'test_*.go' file.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"test_*.go\"},\"name\":\"find_files\"}"}
89
  {"prompt": "Query the database with 'INSERT INTO logs VALUES (1)'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"INSERT INTO logs VALUES (1)\"},\"name\":\"sql_query\"}"}
90
  {"prompt": "Get 'dentist appointment' on my calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"dentist appointment\"},\"name\":\"calendar_event\"}"}
91
+ {"prompt": "Have Python evaluate 'list(reversed([1, 2]))'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
92
  {"prompt": "Reach Omar by email.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
93
  {"prompt": "Put a timer on for 50 seconds.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"50 seconds\"},\"name\":\"set_timer\"}"}
94
  {"prompt": "Write 'home address' in the box.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"home address\"},\"name\":\"type_text\"}"}
 
106
  {"prompt": "Search the repo for 'handle_request'.", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"handle_request\"},\"name\":\"grep_search\"}"}
107
  {"prompt": "Open blog.dev.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"open_url\"}"}
108
  {"prompt": "Do a GET on api.service.dev.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"api.service.dev\"},\"name\":\"http_request\"}"}
109
+ {"prompt": "Modify styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
110
  {"prompt": "Patch the file server.rb.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"apply_patch\"}"}
111
+ {"prompt": "Make a quick edit to index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
112
  {"prompt": "Work out 44+11.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"44+11\"},\"name\":\"calculator\"}"}
113
  {"prompt": "What's on the clipboard?", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
114
  {"prompt": "Unpack the file src.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"src.zip\"},\"name\":\"unzip\"}"}
 
130
  {"prompt": "Write 'study schedule' in Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"study schedule\"},\"name\":\"notion_write\"}"}
131
  {"prompt": "Get 'dentist appointment' on my calendar.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"dentist appointment\"},\"name\":\"calendar_event\"}"}
132
  {"prompt": "Can you visit store.example.net?", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"open_url\"}"}
133
+ {"prompt": "Grab https://docs.product.com/manual.pdf for me.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://docs.product.com/manual.pdf\"},\"name\":\"download_file\"}"}
134
  {"prompt": "What's the git status?", "kind": "tool", "category": "git_status", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
135
  {"prompt": "Print the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
136
  {"prompt": "Plan how to get into shape.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"get into shape\"},\"name\":\"planner\"}"}
 
183
  {"prompt": "docker run 'consul'.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
184
  {"prompt": "Slack the team 'lgtm'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"lgtm\"},\"name\":\"slack_send\"}"}
185
  {"prompt": "Search the repo for 'class Server'.", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"class Server\"},\"name\":\"grep_search\"}"}
186
+ {"prompt": "Change main.go.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"edit_file\"}"}
187
  {"prompt": "Tap 'the logo'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the logo\"},\"name\":\"click\"}"}
188
  {"prompt": "Do I need an umbrella in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
189
+ {"prompt": "Make changes to setup.cfg.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"setup.cfg\"},\"name\":\"edit_file\"}"}
190
  {"prompt": "Make a plan to train for a triathlon.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"train for a triathlon\"},\"name\":\"planner\"}"}
191
  {"prompt": "Click on 'the tab'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the tab\"},\"name\":\"click\"}"}
192
  {"prompt": "Raise a Jira ticket for 'image upload error'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"image upload error\"},\"name\":\"jira_issue\"}"}
193
  {"prompt": "Put 'promo code' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"promo code\"},\"name\":\"write_clipboard\"}"}
194
  {"prompt": "Run 'tox'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"tox\"},\"name\":\"run_command\"}"}
195
  {"prompt": "Log a Jira issue: 'timezone bug'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"timezone bug\"},\"name\":\"jira_issue\"}"}
196
+ {"prompt": "Download cdn.assets.io/images.tar.gz.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.assets.io/images.tar.gz\"},\"name\":\"download_file\"}"}
197
  {"prompt": "Reach Elena by email.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Elena\"},\"name\":\"send_email\"}"}
198
  {"prompt": "Stream Counting Stars.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Counting Stars\"},\"name\":\"play_music\"}"}
199
  {"prompt": "Knock out 'envoy'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"envoy\"},\"name\":\"kill_process\"}"}
 
204
  {"prompt": "Do I need an umbrella in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
205
  {"prompt": "List out assets.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"assets\"},\"name\":\"list_dir\"}"}
206
  {"prompt": "Press 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
207
+ {"prompt": "Download the file located at https://assets.site.org/logo.png.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://assets.site.org/logo.png\"},\"name\":\"download_file\"}"}
208
  {"prompt": "Ping Slack with 'standup in 10'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"standup in 10\"},\"name\":\"slack_send\"}"}
209
  {"prompt": "I need to remember to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
210
  {"prompt": "Read what's in the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
 
213
  {"prompt": "Copy 'ticket number' for me.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
214
  {"prompt": "Tell me what 'DB_HOST' is set to.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"DB_HOST\"},\"name\":\"env_get\"}"}
215
  {"prompt": "Double click 'the layer'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the layer\"},\"name\":\"double_click\"}"}
216
+ {"prompt": "Modify styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
217
  {"prompt": "Add the dependency 'express'.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"express\"},\"name\":\"install_package\"}"}
218
  {"prompt": "Create a directory named templates.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"make_dir\"}"}
219
  {"prompt": "Select 'the toggle'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"click\"}"}
 
265
  {"prompt": "Visit store.example.net.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"store.example.net\"},\"name\":\"open_url\"}"}
266
  {"prompt": "Let me see the diff.", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
267
  {"prompt": "What is nostalgia?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"nostalgia\"},\"name\":\"define\"}"}
268
+ {"prompt": "Apply the patch to notes.md.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"apply_patch\"}"}
269
  {"prompt": "Execute all tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
270
  {"prompt": "Grab a screenshot of the screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
271
+ {"prompt": "Run the Python code 'print(sum(range(10)))'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"print(sum(range(10)))\"},\"name\":\"run_python\"}"}
272
  {"prompt": "Open up 'Music'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Music\"},\"name\":\"open_app\"}"}
273
  {"prompt": "Make a directory called scripts.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"make_dir\"}"}
274
  {"prompt": "Run the unit tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
 
290
  {"prompt": "Screenshot the current screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
291
  {"prompt": "Run the unit tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
292
  {"prompt": "Show me the process list.", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
293
+ {"prompt": "Pull down files.example.com/report.pdf.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.example.com/report.pdf\"},\"name\":\"download_file\"}"}
294
  {"prompt": "Pause for 14 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":14},\"name\":\"wait\"}"}
295
  {"prompt": "Meaning of empathy?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"empathy\"},\"name\":\"define\"}"}
296
  {"prompt": "Capture a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
 
311
  {"prompt": "Open a Jira issue for 'timezone bug'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"timezone bug\"},\"name\":\"jira_issue\"}"}
312
  {"prompt": "Make a plan to start a business.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"start a business\"},\"name\":\"planner\"}"}
313
  {"prompt": "Set a reminder to check email.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"check email\"},\"name\":\"set_reminder\"}"}
314
+ {"prompt": "Let Python compute 'round(3.14159, 2)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"round(3.14159, 2)\"},\"name\":\"run_python\"}"}
315
  {"prompt": "Create the directory logs.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"logs\"},\"name\":\"make_dir\"}"}
316
  {"prompt": "Kill 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
317
  {"prompt": "Show the value of 'TOKEN'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"TOKEN\"},\"name\":\"env_get\"}"}
 
325
  {"prompt": "Let me see Makefile.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"read_file\"}"}
326
  {"prompt": "Commit the changes: 'refactor api'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"refactor api\"},\"name\":\"git_commit\"}"}
327
  {"prompt": "Email a note to Maya.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Maya\"},\"name\":\"send_email\"}"}
328
+ {"prompt": "Fix up handler.kt.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"edit_file\"}"}
329
  {"prompt": "Set up a folder called vendor.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"make_dir\"}"}
330
  {"prompt": "Check the environment variable 'MAX_RETRIES'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"MAX_RETRIES\"},\"name\":\"env_get\"}"}
331
  {"prompt": "Bring up portal.app.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"open_url\"}"}
 
335
  {"prompt": "Help me plan to build a treehouse.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"build a treehouse\"},\"name\":\"planner\"}"}
336
  {"prompt": "What processes are running?", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
337
  {"prompt": "Remind me to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
338
+ {"prompt": "Edit the file queries.sql.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"edit_file\"}"}
339
  {"prompt": "Set the clipboard to 'ticket number'.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
340
  {"prompt": "Hit 'the node' twice.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the node\"},\"name\":\"double_click\"}"}
341
  {"prompt": "Slide 'the Save button' onto 'the search bar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the search bar\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
342
  {"prompt": "Hit shop.co with a request.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"http_request\"}"}
343
  {"prompt": "Wake me in 55 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
344
+ {"prompt": "Evaluate 'sorted([3, 1, 2])' in a Python shell.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sorted([3, 1, 2])\"},\"name\":\"run_python\"}"}
345
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
346
  {"prompt": "Install the 'axios' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"axios\"},\"name\":\"install_package\"}"}
347
  {"prompt": "Explain the word candid.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"candid\"},\"name\":\"define\"}"}
 
402
  {"prompt": "Set a timer for 5 hours.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"5 hours\"},\"name\":\"set_timer\"}"}
403
  {"prompt": "Expand logs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"logs.zip\"},\"name\":\"unzip\"}"}
404
  {"prompt": "Look up the tallest mountain.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the tallest mountain\"},\"name\":\"web_search\"}"}
405
+ {"prompt": "Retrieve the file from cdn.acme.io/fonts.woff2.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.acme.io/fonts.woff2\"},\"name\":\"download_file\"}"}
406
  {"prompt": "Unpack the archive samples.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"samples.zip\"},\"name\":\"unzip\"}"}
407
  {"prompt": "Spin up a file handler.kt.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"write_file\"}"}
408
  {"prompt": "Decompress release.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"release.zip\"},\"name\":\"unzip\"}"}
 
413
  {"prompt": "Sit tight 11 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":11},\"name\":\"wait\"}"}
414
  {"prompt": "Start counting down 50 seconds.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"50 seconds\"},\"name\":\"set_timer\"}"}
415
  {"prompt": "Nudge me to log hours.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"log hours\"},\"name\":\"set_reminder\"}"}
416
+ {"prompt": "Evaluate 'sorted([3, 1, 2])' in a Python shell.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sorted([3, 1, 2])\"},\"name\":\"run_python\"}"}
417
  {"prompt": "Do the math on 20-4.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"20-4\"},\"name\":\"calculator\"}"}
418
+ {"prompt": "Download store.example.net/export.json.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"store.example.net/export.json\"},\"name\":\"download_file\"}"}
419
  {"prompt": "Create a reminder to stretch.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"stretch\"},\"name\":\"set_reminder\"}"}
420
  {"prompt": "Kill the process 'ngrok'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"ngrok\"},\"name\":\"kill_process\"}"}
421
  {"prompt": "Explain the word ephemeral.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"ephemeral\"},\"name\":\"define\"}"}
 
438
  {"prompt": "How's the weather in Galway?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Galway\"},\"name\":\"get_weather\"}"}
439
  {"prompt": "I need to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
440
  {"prompt": "Send 'deploy finished' to the Slack channel.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy finished\"},\"name\":\"slack_send\"}"}
441
+ {"prompt": "Change schema.graphql.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"schema.graphql\"},\"name\":\"edit_file\"}"}
442
  {"prompt": "Take me to docs.product.com.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"docs.product.com\"},\"name\":\"open_url\"}"}
443
  {"prompt": "Add a calendar event called '1:1 with manager'.", "kind": "tool", "category": "calendar_event", "tool": "calendar_event", "target": "{\"arguments\":{\"title\":\"1:1 with manager\"},\"name\":\"calendar_event\"}"}
444
  {"prompt": "What's in examples?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"examples\"},\"name\":\"list_dir\"}"}
 
510
  {"prompt": "Where is 'retry_count' used?", "kind": "tool", "category": "grep_search", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"retry_count\"},\"name\":\"grep_search\"}"}
511
  {"prompt": "Hover over 'the toggle'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the toggle\"},\"name\":\"move_cursor\"}"}
512
  {"prompt": "Press the Space key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
513
+ {"prompt": "Touch up styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
514
  {"prompt": "Send a request to shop.co.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"shop.co\"},\"name\":\"http_request\"}"}
515
  {"prompt": "Create a directory named logs.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"logs\"},\"name\":\"make_dir\"}"}
516
  {"prompt": "Unpack the archive exports.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"exports.zip\"},\"name\":\"unzip\"}"}
517
  {"prompt": "Snap a picture of what's on screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
518
  {"prompt": "Install the 'eslint' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"eslint\"},\"name\":\"install_package\"}"}
519
+ {"prompt": "Edit index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
520
  {"prompt": "Log a Jira issue: 'missing translations'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"missing translations\"},\"name\":\"jira_issue\"}"}
521
  {"prompt": "Put 'promo code' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"promo code\"},\"name\":\"write_clipboard\"}"}
522
  {"prompt": "Look up the distance to the moon.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the distance to the moon\"},\"name\":\"web_search\"}"}
523
+ {"prompt": "Download the file located at https://files.example.com/sample.xlsx.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://files.example.com/sample.xlsx\"},\"name\":\"download_file\"}"}
524
  {"prompt": "Run the patch on handler.kt.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"apply_patch\"}"}
525
  {"prompt": "Show what's inside templates.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"list_dir\"}"}
526
  {"prompt": "Execute 'SELECT name FROM teams' on the database.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"SELECT name FROM teams\"},\"name\":\"sql_query\"}"}
 
528
  {"prompt": "Can you play Shape of You?", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Shape of You\"},\"name\":\"play_music\"}"}
529
  {"prompt": "Peek inside vendor.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"list_dir\"}"}
530
  {"prompt": "Read out main.go.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"read_file\"}"}
531
+ {"prompt": "Pull the file down from https://portal.app/files/backup.zip.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://portal.app/files/backup.zip\"},\"name\":\"download_file\"}"}
532
  {"prompt": "Open 'Pages'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
533
  {"prompt": "Drag and drop 'the Save button' to 'the Login link'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the Login link\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
534
  {"prompt": "Hit 'the plus button'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the plus button\"},\"name\":\"click\"}"}
535
  {"prompt": "Install the 'zod' package.", "kind": "tool", "category": "install_package", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"zod\"},\"name\":\"install_package\"}"}
536
+ {"prompt": "Download the file from https://files.example.com/sample.xlsx.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://files.example.com/sample.xlsx\"},\"name\":\"download_file\"}"}
537
  {"prompt": "Start the 'consul' image in Docker.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
538
  {"prompt": "Slack the team 'out for lunch'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"out for lunch\"},\"name\":\"slack_send\"}"}
539
  {"prompt": "Make a file called main.go.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"write_file\"}"}
540
  {"prompt": "Read the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
541
+ {"prompt": "Have Python evaluate 'round(3.14159, 2)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"round(3.14159, 2)\"},\"name\":\"run_python\"}"}
542
  {"prompt": "What's in the docs directory?", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"docs\"},\"name\":\"list_dir\"}"}
543
  {"prompt": "Time 55 minutes for me.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
544
  {"prompt": "Take a screen capture.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
 
547
  {"prompt": "Open the 'Keynote' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Keynote\"},\"name\":\"open_app\"}"}
548
  {"prompt": "Hit 'the OK button'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the OK button\"},\"name\":\"click\"}"}
549
  {"prompt": "Grab 'the menu icon' and drag it to 'the avatar'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the avatar\",\"source\":\"the menu icon\"},\"name\":\"drag\"}"}
550
+ {"prompt": "Touch up styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
551
  {"prompt": "Put together a plan to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
552
  {"prompt": "Send an HTTP GET to status.host.io.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"status.host.io\"},\"name\":\"http_request\"}"}
553
  {"prompt": "Apply changes to report.csv as a patch.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"report.csv\"},\"name\":\"apply_patch\"}"}
 
567
  {"prompt": "Email Omar.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
568
  {"prompt": "Give it 100 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":100},\"name\":\"wait\"}"}
569
  {"prompt": "Swipe up.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
570
+ {"prompt": "Run the Python code '[x*x for x in range(4)]'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"[x*x for x in range(4)]\"},\"name\":\"run_python\"}"}
571
  {"prompt": "Can you tell me why the sky is blue?", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"why the sky is blue\"},\"name\":\"web_search\"}"}
572
  {"prompt": "Make a Jira issue about 'bad redirect'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"bad redirect\"},\"name\":\"jira_issue\"}"}
573
  {"prompt": "Save the file main.go.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"write_file\"}"}
 
580
  {"prompt": "Spin up a file schema.graphql.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"schema.graphql\"},\"name\":\"write_file\"}"}
581
  {"prompt": "Copy 'license key' to the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"license key\"},\"name\":\"write_clipboard\"}"}
582
  {"prompt": "Do the math on 100-33.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"100-33\"},\"name\":\"calculator\"}"}
583
+ {"prompt": "Grab https://files.example.com/sample.xlsx for me.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://files.example.com/sample.xlsx\"},\"name\":\"download_file\"}"}
584
  {"prompt": "Display main.go.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"read_file\"}"}
585
  {"prompt": "Give me a plan to plan a road trip.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"plan a road trip\"},\"name\":\"planner\"}"}
586
  {"prompt": "Tell me the latest about the celebrity scandal.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the celebrity scandal\"},\"name\":\"get_news\"}"}
 
596
  {"prompt": "Throw 'ticket number' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"ticket number\"},\"name\":\"write_clipboard\"}"}
597
  {"prompt": "Commit everything with 'wip'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"wip\"},\"name\":\"git_commit\"}"}
598
  {"prompt": "Stop the 'watchman' process.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"watchman\"},\"name\":\"kill_process\"}"}
599
+ {"prompt": "Pull the file down from mirror.service.dev/pkg.whl.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"mirror.service.dev/pkg.whl\"},\"name\":\"download_file\"}"}
600
  {"prompt": "Key in 'order 3310'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"order 3310\"},\"name\":\"type_text\"}"}
601
  {"prompt": "Open up the archive logs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"logs.zip\"},\"name\":\"unzip\"}"}
602
  {"prompt": "Trigger the test suite.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
 
612
  {"prompt": "What did I change?", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
613
  {"prompt": "Fire up news.site.org in the browser.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"news.site.org\"},\"name\":\"open_url\"}"}
614
  {"prompt": "Let's run the tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
615
+ {"prompt": "Fix up server.rb.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"edit_file\"}"}
616
  {"prompt": "Lay the patch over notes.md.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"notes.md\"},\"name\":\"apply_patch\"}"}
617
  {"prompt": "Start the 'node:18' image in Docker.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"node:18\"},\"name\":\"docker_run\"}"}
618
  {"prompt": "Hit Space.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
 
635
  {"prompt": "Wait for 22 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":22},\"name\":\"wait\"}"}
636
  {"prompt": "Which files match '*.yml'?", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.yml\"},\"name\":\"find_files\"}"}
637
  {"prompt": "List files matching '*.cfg'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"*.cfg\"},\"name\":\"find_files\"}"}
638
+ {"prompt": "Download the file from store.example.net/export.json.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"store.example.net/export.json\"},\"name\":\"download_file\"}"}
639
  {"prompt": "Snap a picture of what's on screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
640
  {"prompt": "Execute 'npm ci'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"npm ci\"},\"name\":\"run_command\"}"}
641
  {"prompt": "Send Tariq an email message.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Tariq\"},\"name\":\"send_email\"}"}
 
643
  {"prompt": "Type 'rake db:migrate' in the terminal.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"rake db:migrate\"},\"name\":\"run_command\"}"}
644
  {"prompt": "Send a Slack message saying 'merging this'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"merging this\"},\"name\":\"slack_send\"}"}
645
  {"prompt": "Brief me on the election results.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the election results\"},\"name\":\"get_news\"}"}
646
+ {"prompt": "Use Python to run 'abs(-7)'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"abs(-7)\"},\"name\":\"run_python\"}"}
647
  {"prompt": "Show the contents of server.rb.", "kind": "tool", "category": "read_file", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"server.rb\"},\"name\":\"read_file\"}"}
648
  {"prompt": "Give me 12+7.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"12+7\"},\"name\":\"calculator\"}"}
649
  {"prompt": "Remind me later to call mom.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"call mom\"},\"name\":\"set_reminder\"}"}
650
+ {"prompt": "Fix up index.ts.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"index.ts\"},\"name\":\"edit_file\"}"}
651
  {"prompt": "Start playing Shape of You.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Shape of You\"},\"name\":\"play_music\"}"}
652
  {"prompt": "Run our tests.", "kind": "tool", "category": "run_tests", "tool": "run_tests", "target": "{\"arguments\":{},\"name\":\"run_tests\"}"}
653
  {"prompt": "Unpack the archive src.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"src.zip\"},\"name\":\"unzip\"}"}
654
+ {"prompt": "Download the file located at https://cdn.acme.io/release.zip.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://cdn.acme.io/release.zip\"},\"name\":\"download_file\"}"}
655
  {"prompt": "Fetch the value of 'API_URL'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"API_URL\"},\"name\":\"env_get\"}"}
656
  {"prompt": "Run the 'consul' image.", "kind": "tool", "category": "docker_run", "tool": "docker_run", "target": "{\"arguments\":{\"image\":\"consul\"},\"name\":\"docker_run\"}"}
657
  {"prompt": "Double tap 'the thumbnail'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the thumbnail\"},\"name\":\"double_click\"}"}
 
661
  {"prompt": "Move the cursor to 'the OK button'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the OK button\"},\"name\":\"move_cursor\"}"}
662
  {"prompt": "Calculate 15+8.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"15+8\"},\"name\":\"calculator\"}"}
663
  {"prompt": "Get the clipboard contents.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
664
+ {"prompt": "Have Python evaluate 'len('hello')'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"len('hello')\"},\"name\":\"run_python\"}"}
665
  {"prompt": "I want to know the weight of an elephant.", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"the weight of an elephant\"},\"name\":\"web_search\"}"}
666
  {"prompt": "What did I change?", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
667
  {"prompt": "Run this command: 'df -h'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"df -h\"},\"name\":\"run_command\"}"}
 
676
  {"prompt": "Drag 'the search bar' onto 'the Save button'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the Save button\",\"source\":\"the search bar\"},\"name\":\"drag\"}"}
677
  {"prompt": "Give me a plan to learn to code.", "kind": "tool", "category": "planner", "tool": "planner", "target": "{\"arguments\":{\"goal\":\"learn to code\"},\"name\":\"planner\"}"}
678
  {"prompt": "Save a screenshot.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
679
+ {"prompt": "Interpret 'int('100')' as Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"int('100')\"},\"name\":\"run_python\"}"}
680
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
681
  {"prompt": "Fetch the value of 'QUEUE_NAME'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"QUEUE_NAME\"},\"name\":\"env_get\"}"}
682
  {"prompt": "Run the shell command 'df -h'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"df -h\"},\"name\":\"run_command\"}"}
 
713
  {"prompt": "Type 'full name'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"full name\"},\"name\":\"type_text\"}"}
714
  {"prompt": "Kill 'bun'.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"bun\"},\"name\":\"kill_process\"}"}
715
  {"prompt": "Tell me the weather for Sydney.", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Sydney\"},\"name\":\"get_weather\"}"}
716
+ {"prompt": "Get the file at https://assets.site.org/logo.png.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://assets.site.org/logo.png\"},\"name\":\"download_file\"}"}
717
  {"prompt": "Drag the page down.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
718
  {"prompt": "Email a note to Elena.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Elena\"},\"name\":\"send_email\"}"}
719
  {"prompt": "Copy the text 'see you soon'.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"see you soon\"},\"name\":\"write_clipboard\"}"}
 
723
  {"prompt": "Open a Jira issue for 'missing translations'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"missing translations\"},\"name\":\"jira_issue\"}"}
724
  {"prompt": "Call out to portal.app.", "kind": "tool", "category": "http_request", "tool": "http_request", "target": "{\"arguments\":{\"url\":\"portal.app\"},\"name\":\"http_request\"}"}
725
  {"prompt": "Commit the changes: 'update readme'.", "kind": "tool", "category": "git_commit", "tool": "git_commit", "target": "{\"arguments\":{\"message\":\"update readme\"},\"name\":\"git_commit\"}"}
726
+ {"prompt": "Let Python compute 'print(sum(range(10)))'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"print(sum(range(10)))\"},\"name\":\"run_python\"}"}
727
  {"prompt": "Wipe out the 'dotnet' process.", "kind": "tool", "category": "kill_process", "tool": "kill_process", "target": "{\"arguments\":{\"name\":\"dotnet\"},\"name\":\"kill_process\"}"}
728
  {"prompt": "Hit 'the app icon' twice.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the app icon\"},\"name\":\"double_click\"}"}
729
  {"prompt": "What is 'API_URL' set to?", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"API_URL\"},\"name\":\"env_get\"}"}
 
751
  {"prompt": "Kick off a timer for 18 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"18 minutes\"},\"name\":\"set_timer\"}"}
752
  {"prompt": "Hit 'the Login link'.", "kind": "tool", "category": "click", "tool": "click", "target": "{\"arguments\":{\"target\":\"the Login link\"},\"name\":\"click\"}"}
753
  {"prompt": "Print the diff.", "kind": "tool", "category": "git_diff", "tool": "git_diff", "target": "{\"arguments\":{},\"name\":\"git_diff\"}"}
754
+ {"prompt": "Tweak main.go.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"main.go\"},\"name\":\"edit_file\"}"}
755
  {"prompt": "Let the team know on Slack: 'deploy finished'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"deploy finished\"},\"name\":\"slack_send\"}"}
756
  {"prompt": "Peek inside src.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"src\"},\"name\":\"list_dir\"}"}
757
  {"prompt": "Apply changes to handler.kt as a patch.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"apply_patch\"}"}
 
762
  {"prompt": "Add a Jira ticket titled 'stale cache'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"stale cache\"},\"name\":\"jira_issue\"}"}
763
  {"prompt": "Show me headlines about the new tax bill.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the new tax bill\"},\"name\":\"get_news\"}"}
764
  {"prompt": "Show me headlines about the new tax bill.", "kind": "tool", "category": "get_news", "tool": "get_news", "target": "{\"arguments\":{\"topic\":\"the new tax bill\"},\"name\":\"get_news\"}"}
765
+ {"prompt": "Run the snippet 'max(3, 9)' in Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"max(3, 9)\"},\"name\":\"run_python\"}"}
766
  {"prompt": "Message the channel 'out for lunch'.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"out for lunch\"},\"name\":\"slack_send\"}"}
767
  {"prompt": "Let me know in 35 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"35 minutes\"},\"name\":\"set_timer\"}"}
768
  {"prompt": "Save 'gift ideas' to Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"gift ideas\"},\"name\":\"notion_write\"}"}
 
780
  {"prompt": "Take a shot of the screen.", "kind": "tool", "category": "screenshot", "tool": "screenshot", "target": "{\"arguments\":{},\"name\":\"screenshot\"}"}
781
  {"prompt": "Move the mouse to 'the search bar'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the search bar\"},\"name\":\"move_cursor\"}"}
782
  {"prompt": "Show all running processes.", "kind": "tool", "category": "list_processes", "tool": "list_processes", "target": "{\"arguments\":{},\"name\":\"list_processes\"}"}
783
+ {"prompt": "Download the file from https://blog.dev/assets/data.csv.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://blog.dev/assets/data.csv\"},\"name\":\"download_file\"}"}
784
  {"prompt": "What does the term frugal mean?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"frugal\"},\"name\":\"define\"}"}
785
  {"prompt": "Open blog.dev.", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"blog.dev\"},\"name\":\"open_url\"}"}
786
  {"prompt": "Scroll down some more.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
 
827
  {"prompt": "Fetch the value of 'REGION'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"REGION\"},\"name\":\"env_get\"}"}
828
  {"prompt": "Check the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
829
  {"prompt": "Input 'billing info'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"billing info\"},\"name\":\"type_text\"}"}
830
+ {"prompt": "Download whatever is at files.example.com/report.pdf.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"files.example.com/report.pdf\"},\"name\":\"download_file\"}"}
831
  {"prompt": "What's a meticulous?", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"meticulous\"},\"name\":\"define\"}"}
832
  {"prompt": "Hang on 11 seconds.", "kind": "tool", "category": "wait", "tool": "wait", "target": "{\"arguments\":{\"seconds\":11},\"name\":\"wait\"}"}
833
  {"prompt": "Create folder vendor.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"vendor\"},\"name\":\"make_dir\"}"}
 
848
  {"prompt": "Help me remember to feed the cat.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"feed the cat\"},\"name\":\"set_reminder\"}"}
849
  {"prompt": "Type in 'March 2026'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"March 2026\"},\"name\":\"type_text\"}"}
850
  {"prompt": "Create a Jira ticket titled 'duplicate emails'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"duplicate emails\"},\"name\":\"jira_issue\"}"}
851
+ {"prompt": "Patch up the file pipeline.yml.", "kind": "tool", "category": "apply_patch", "tool": "apply_patch", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"apply_patch\"}"}
852
+ {"prompt": "Grab the file at cdn.assets.io/images.tar.gz.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.assets.io/images.tar.gz\"},\"name\":\"download_file\"}"}
853
  {"prompt": "Press the Escape key.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Escape\"},\"name\":\"key_press\"}"}
854
  {"prompt": "Press Space now.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Space\"},\"name\":\"key_press\"}"}
855
  {"prompt": "Read what's in the clipboard.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
856
  {"prompt": "Set up a reminder to take out the trash.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"take out the trash\"},\"name\":\"set_reminder\"}"}
857
  {"prompt": "Pop on Levitating.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Levitating\"},\"name\":\"play_music\"}"}
858
+ {"prompt": "Run this Python: 'sum([1, 2, 3])'.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"sum([1, 2, 3])\"},\"name\":\"run_python\"}"}
859
  {"prompt": "Type 'daily notes'.", "kind": "tool", "category": "type_text", "tool": "type_text", "target": "{\"arguments\":{\"text\":\"daily notes\"},\"name\":\"type_text\"}"}
860
  {"prompt": "Got any info on why the sky is blue?", "kind": "tool", "category": "web_search", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"why the sky is blue\"},\"name\":\"web_search\"}"}
861
  {"prompt": "Two clicks on 'the row'.", "kind": "tool", "category": "double_click", "tool": "double_click", "target": "{\"arguments\":{\"target\":\"the row\"},\"name\":\"double_click\"}"}
 
888
  {"prompt": "Make a new folder scripts.", "kind": "tool", "category": "make_dir", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scripts\"},\"name\":\"make_dir\"}"}
889
  {"prompt": "Create queries.sql.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"queries.sql\"},\"name\":\"write_file\"}"}
890
  {"prompt": "Stick 'address line' on the clipboard.", "kind": "tool", "category": "write_clipboard", "tool": "write_clipboard", "target": "{\"arguments\":{\"text\":\"address line\"},\"name\":\"write_clipboard\"}"}
891
+ {"prompt": "Edit styles.css.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"styles.css\"},\"name\":\"edit_file\"}"}
892
+ {"prompt": "Get the file at https://cdn.acme.io/release.zip.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"https://cdn.acme.io/release.zip\"},\"name\":\"download_file\"}"}
893
  {"prompt": "Sum up 15+8.", "kind": "tool", "category": "calculator", "tool": "calculator", "target": "{\"arguments\":{\"expression\":\"15+8\"},\"name\":\"calculator\"}"}
894
  {"prompt": "Check the environment variable 'MAX_RETRIES'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"MAX_RETRIES\"},\"name\":\"env_get\"}"}
895
  {"prompt": "Scroll down some more.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"down\"},\"name\":\"scroll\"}"}
 
925
  {"prompt": "Define vivid.", "kind": "tool", "category": "define", "tool": "define", "target": "{\"arguments\":{\"term\":\"vivid\"},\"name\":\"define\"}"}
926
  {"prompt": "Send 'great work everyone' on Slack.", "kind": "tool", "category": "slack_send", "tool": "slack_send", "target": "{\"arguments\":{\"message\":\"great work everyone\"},\"name\":\"slack_send\"}"}
927
  {"prompt": "Create the file Makefile.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"write_file\"}"}
928
+ {"prompt": "What does 'round(3.14159, 2)' return in Python?", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"round(3.14159, 2)\"},\"name\":\"run_python\"}"}
929
  {"prompt": "Search for files matching '**/*.md'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"**/*.md\"},\"name\":\"find_files\"}"}
930
  {"prompt": "Query the database with 'SELECT * FROM clients'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"SELECT * FROM clients\"},\"name\":\"sql_query\"}"}
931
  {"prompt": "Add a reminder to drink water.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"drink water\"},\"name\":\"set_reminder\"}"}
932
  {"prompt": "Pop on Uptown Funk.", "kind": "tool", "category": "play_music", "tool": "play_music", "target": "{\"arguments\":{\"song\":\"Uptown Funk\"},\"name\":\"play_music\"}"}
933
  {"prompt": "Move up on the page.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
934
  {"prompt": "Open the 'Stocks' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Stocks\"},\"name\":\"open_app\"}"}
935
+ {"prompt": "Tweak Makefile.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"Makefile\"},\"name\":\"edit_file\"}"}
936
  {"prompt": "Launch the 'Pages' app.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
937
  {"prompt": "Shell out 'whoami'.", "kind": "tool", "category": "run_command", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"whoami\"},\"name\":\"run_command\"}"}
938
  {"prompt": "Execute the SQL statement 'DELETE FROM sessions'.", "kind": "tool", "category": "sql_query", "tool": "sql_query", "target": "{\"arguments\":{\"query\":\"DELETE FROM sessions\"},\"name\":\"sql_query\"}"}
 
943
  {"prompt": "Swipe up.", "kind": "tool", "category": "scroll", "tool": "scroll", "target": "{\"arguments\":{\"direction\":\"up\"},\"name\":\"scroll\"}"}
944
  {"prompt": "Decompress assets.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"assets.zip\"},\"name\":\"unzip\"}"}
945
  {"prompt": "List out examples.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"examples\"},\"name\":\"list_dir\"}"}
946
+ {"prompt": "Edit setup.cfg.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"setup.cfg\"},\"name\":\"edit_file\"}"}
947
  {"prompt": "Start 'Pages'.", "kind": "tool", "category": "open_app", "tool": "open_app", "target": "{\"arguments\":{\"name\":\"Pages\"},\"name\":\"open_app\"}"}
948
  {"prompt": "Put the cursor on 'the search bar'.", "kind": "tool", "category": "move_cursor", "tool": "move_cursor", "target": "{\"arguments\":{\"target\":\"the search bar\"},\"name\":\"move_cursor\"}"}
949
  {"prompt": "What's it like outside in Cork?", "kind": "tool", "category": "get_weather", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Cork\"},\"name\":\"get_weather\"}"}
 
974
  {"prompt": "Drag 'the Save button' onto 'the menu icon'.", "kind": "tool", "category": "drag", "tool": "drag", "target": "{\"arguments\":{\"dest\":\"the menu icon\",\"source\":\"the Save button\"},\"name\":\"drag\"}"}
975
  {"prompt": "Dash off an email to Omar.", "kind": "tool", "category": "send_email", "tool": "send_email", "target": "{\"arguments\":{\"recipient\":\"Omar\"},\"name\":\"send_email\"}"}
976
  {"prompt": "Tap Tab.", "kind": "tool", "category": "key_press", "tool": "key_press", "target": "{\"arguments\":{\"key\":\"Tab\"},\"name\":\"key_press\"}"}
977
+ {"prompt": "Make changes to handler.kt.", "kind": "tool", "category": "edit_file", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"handler.kt\"},\"name\":\"edit_file\"}"}
978
  {"prompt": "Can you visit cdn.assets.io?", "kind": "tool", "category": "open_url", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"cdn.assets.io\"},\"name\":\"open_url\"}"}
979
  {"prompt": "Save the file pipeline.yml.", "kind": "tool", "category": "write_file", "tool": "write_file", "target": "{\"arguments\":{\"path\":\"pipeline.yml\"},\"name\":\"write_file\"}"}
980
  {"prompt": "Get the env variable 'REGION'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"REGION\"},\"name\":\"env_get\"}"}
981
  {"prompt": "I need to remember to send the invoice.", "kind": "tool", "category": "set_reminder", "tool": "set_reminder", "target": "{\"arguments\":{\"task\":\"send the invoice\"},\"name\":\"set_reminder\"}"}
982
+ {"prompt": "Retrieve the file from cdn.assets.io/images.tar.gz.", "kind": "tool", "category": "download_file", "tool": "download_file", "target": "{\"arguments\":{\"url\":\"cdn.assets.io/images.tar.gz\"},\"name\":\"download_file\"}"}
983
  {"prompt": "Show me the repo status.", "kind": "tool", "category": "git_status", "tool": "git_status", "target": "{\"arguments\":{},\"name\":\"git_status\"}"}
984
  {"prompt": "Spin up a Jira ticket for 'image upload error'.", "kind": "tool", "category": "jira_issue", "tool": "jira_issue", "target": "{\"arguments\":{\"summary\":\"image upload error\"},\"name\":\"jira_issue\"}"}
985
  {"prompt": "Get the clipboard contents.", "kind": "tool", "category": "read_clipboard", "tool": "read_clipboard", "target": "{\"arguments\":{},\"name\":\"read_clipboard\"}"}
 
994
  {"prompt": "Peek inside templates.", "kind": "tool", "category": "list_dir", "tool": "list_dir", "target": "{\"arguments\":{\"path\":\"templates\"},\"name\":\"list_dir\"}"}
995
  {"prompt": "Set a timer for 55 minutes.", "kind": "tool", "category": "set_timer", "tool": "set_timer", "target": "{\"arguments\":{\"duration\":\"55 minutes\"},\"name\":\"set_timer\"}"}
996
  {"prompt": "List files matching 'src/**/*.rb'.", "kind": "tool", "category": "find_files", "tool": "find_files", "target": "{\"arguments\":{\"pattern\":\"src/**/*.rb\"},\"name\":\"find_files\"}"}
997
+ {"prompt": "Run the snippet 'list(reversed([1, 2]))' in Python.", "kind": "tool", "category": "run_python", "tool": "run_python", "target": "{\"arguments\":{\"code\":\"list(reversed([1, 2]))\"},\"name\":\"run_python\"}"}
998
  {"prompt": "Expand docs.zip.", "kind": "tool", "category": "unzip", "tool": "unzip", "target": "{\"arguments\":{\"path\":\"docs.zip\"},\"name\":\"unzip\"}"}
999
  {"prompt": "Get the env variable 'NODE_ENV'.", "kind": "tool", "category": "env_get", "tool": "env_get", "target": "{\"arguments\":{\"name\":\"NODE_ENV\"},\"name\":\"env_get\"}"}
1000
  {"prompt": "Log 'workout log' in Notion.", "kind": "tool", "category": "notion_write", "tool": "notion_write", "target": "{\"arguments\":{\"content\":\"workout log\"},\"name\":\"notion_write\"}"}
scenarios_episodes_eval.jsonl CHANGED
The diff for this file is too large to render. See raw diff
 
scenarios_episodes_train.jsonl CHANGED
The diff for this file is too large to render. See raw diff
 
scenarios_single_eval.jsonl CHANGED
@@ -1,31 +1,40 @@
1
- {"prompt": "Search the code for 'MIN_BATCH' and 'merge_shards'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"merge_shards\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}, {"name": "grep_search", "arguments": {"pattern": "merge_shards"}}]}
2
- {"prompt": "I rolled back the change myself.", "kind": "text", "category": "abstain", "tool": "", "target": "Good call rolling that back."}
3
- {"prompt": "Search the web for duckdb vs sqlite and for zig comptime basics.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"duckdb vs sqlite\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"zig comptime basics\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "duckdb vs sqlite"}}, {"name": "web_search", "arguments": {"query": "zig comptime basics"}}]}
4
- {"prompt": "Read data/etl.py and mod/auth.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/etl.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"mod/auth.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "data/etl.py"}}, {"name": "read_file", "arguments": {"path": "mod/auth.py"}}]}
5
- {"prompt": "Read mod/auth.py and svc/billing.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"mod/auth.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"svc/billing.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "mod/auth.py"}}, {"name": "read_file", "arguments": {"path": "svc/billing.py"}}]}
6
- {"prompt": "Create the directories dist/web and scratch/run.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"dist/web\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"scratch/run\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "dist/web"}}, {"name": "make_dir", "arguments": {"path": "scratch/run"}}]}
7
- {"prompt": "Search the web for duckdb vs sqlite and for redis stream consumers.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"duckdb vs sqlite\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"redis stream consumers\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "duckdb vs sqlite"}}, {"name": "web_search", "arguments": {"query": "redis stream consumers"}}]}
 
 
 
 
 
 
 
 
 
8
  {"prompt": "Cancel my subscription.", "kind": "text", "category": "clarify", "tool": "", "target": "Which subscription would you like me to cancel?"}
9
- {"prompt": "What's the weather in Aalborg, Cluj, and Bratislava?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Aalborg\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bratislava\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Aalborg"}}, {"name": "get_weather", "arguments": {"city": "Cluj"}}, {"name": "get_weather", "arguments": {"city": "Bratislava"}}]}
10
- {"prompt": "Search the code for 'MIN_BATCH' and 'decode_frame'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"decode_frame\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}, {"name": "grep_search", "arguments": {"pattern": "decode_frame"}}]}
11
- {"prompt": "Tell me a fun fact.", "kind": "text", "category": "abstain", "tool": "", "target": "Honey never spoils — it can last for thousands of years."}
12
- {"prompt": "Create the directories scratch/run and dist/web.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scratch/run\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"dist/web\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "scratch/run"}}, {"name": "make_dir", "arguments": {"path": "dist/web"}}]}
13
  {"prompt": "Cool, the build passed on its own.", "kind": "text", "category": "abstain", "tool": "", "target": "Great to hear the build is green."}
14
- {"prompt": "Just wanted to say hi.", "kind": "text", "category": "abstain", "tool": "", "target": "Hi there! How can I help?"}
15
- {"prompt": "Send the report.", "kind": "text", "category": "clarify", "tool": "", "target": "Which report, and who should receive it?"}
16
- {"prompt": "Search the code for 'RateGuard' and 'warm_cache'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"warm_cache\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RateGuard"}}, {"name": "grep_search", "arguments": {"pattern": "warm_cache"}}]}
17
- {"prompt": "Search the code for 'decode_frame' and 'MIN_BATCH'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"decode_frame\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "decode_frame"}}, {"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}]}
18
- {"prompt": "What's the weather in Cluj, Bratislava, and Leuven?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bratislava\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Leuven\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Cluj"}}, {"name": "get_weather", "arguments": {"city": "Bratislava"}}, {"name": "get_weather", "arguments": {"city": "Leuven"}}]}
19
- {"prompt": "What's the weather in Cluj, Aalborg, and Bratislava?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Aalborg\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bratislava\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Cluj"}}, {"name": "get_weather", "arguments": {"city": "Aalborg"}}, {"name": "get_weather", "arguments": {"city": "Bratislava"}}]}
20
  {"prompt": "I finished writing the docs already.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice, glad the docs are done."}
21
- {"prompt": "Search the code for 'MIN_BATCH' and 'RateGuard'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}, {"name": "grep_search", "arguments": {"pattern": "RateGuard"}}]}
 
 
 
 
 
 
 
 
 
 
 
22
  {"prompt": "Rename the file.", "kind": "text", "category": "clarify", "tool": "", "target": "Which file, and what should the new name be?"}
23
- {"prompt": "Search the code for 'RateGuard' and 'decode_frame'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"decode_frame\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RateGuard"}}, {"name": "grep_search", "arguments": {"pattern": "decode_frame"}}]}
24
- {"prompt": "Read mod/auth.py and data/etl.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"mod/auth.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"data/etl.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "mod/auth.py"}}, {"name": "read_file", "arguments": {"path": "data/etl.py"}}]}
25
- {"prompt": "Deploy it.", "kind": "text", "category": "clarify", "tool": "", "target": "Which service should I deploy, and to which environment?"}
26
- {"prompt": "Have a great weekend!", "kind": "text", "category": "abstain", "tool": "", "target": "Thanks, you too!"}
27
- {"prompt": "Translate this.", "kind": "text", "category": "clarify", "tool": "", "target": "What text should I translate, and into which language?"}
28
- {"prompt": "Search the code for 'RateGuard' and 'MIN_BATCH'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RateGuard"}}, {"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}]}
29
- {"prompt": "Search the web for redis stream consumers and for zig comptime basics.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"redis stream consumers\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"zig comptime basics\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "redis stream consumers"}}, {"name": "web_search", "arguments": {"query": "zig comptime basics"}}]}
30
- {"prompt": "Create the directories dist/web and cache/blobs.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"dist/web\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"cache/blobs\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "dist/web"}}, {"name": "make_dir", "arguments": {"path": "cache/blobs"}}]}
31
- {"prompt": "Read data/etl.py and net/socket.go.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"data/etl.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"net/socket.go\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "data/etl.py"}}, {"name": "read_file", "arguments": {"path": "net/socket.go"}}]}
 
1
+ {"prompt": "Search the code for 'RateGuard' and 'decode_frame'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"decode_frame\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RateGuard"}}, {"name": "grep_search", "arguments": {"pattern": "decode_frame"}}]}
2
+ {"prompt": "We sorted the outage out ourselves.", "kind": "text", "category": "abstain", "tool": "", "target": "Glad to hear it's resolved."}
3
+ {"prompt": "Edit mod/auth.py and svc/billing.py.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"mod/auth.py\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"svc/billing.py\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "mod/auth.py"}}, {"name": "edit_file", "arguments": {"path": "svc/billing.py"}}]}
4
+ {"prompt": "Search the web for zig comptime basics and for clickhouse merge trees.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"zig comptime basics\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"clickhouse merge trees\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "zig comptime basics"}}, {"name": "web_search", "arguments": {"query": "clickhouse merge trees"}}]}
5
+ {"prompt": "Create the directories scratch/run and cache/blobs.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"scratch/run\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"cache/blobs\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "scratch/run"}}, {"name": "make_dir", "arguments": {"path": "cache/blobs"}}]}
6
+ {"prompt": "Compare the weather in Trento and Cluj.", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Trento\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Trento"}}, {"name": "get_weather", "arguments": {"city": "Cluj"}}]}
7
+ {"prompt": "Send the report.", "kind": "text", "category": "clarify", "tool": "", "target": "Which report, and who should receive it?"}
8
+ {"prompt": "Compare the weather in Cluj and Aalborg.", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Aalborg\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Cluj"}}, {"name": "get_weather", "arguments": {"city": "Aalborg"}}]}
9
+ {"prompt": "Translate this.", "kind": "text", "category": "clarify", "tool": "", "target": "What text should I translate, and into which language?"}
10
+ {"prompt": "What's the weather in Bratislava, Leuven, and Cluj?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Bratislava\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Leuven\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Bratislava"}}, {"name": "get_weather", "arguments": {"city": "Leuven"}}, {"name": "get_weather", "arguments": {"city": "Cluj"}}]}
11
+ {"prompt": "What's the weather in Bratislava, Leuven, and Brno?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Bratislava\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Leuven\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Brno\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Bratislava"}}, {"name": "get_weather", "arguments": {"city": "Leuven"}}, {"name": "get_weather", "arguments": {"city": "Brno"}}]}
12
+ {"prompt": "Export the data.", "kind": "text", "category": "clarify", "tool": "", "target": "Which dataset, and in what format?"}
13
+ {"prompt": "Catch you later.", "kind": "text", "category": "abstain", "tool": "", "target": "See you — reach out anytime!"}
14
+ {"prompt": "Restart the service.", "kind": "text", "category": "clarify", "tool": "", "target": "Which service would you like me to restart?"}
15
+ {"prompt": "Create the directories out/reports and var/spool.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"out/reports\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"var/spool\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "out/reports"}}, {"name": "make_dir", "arguments": {"path": "var/spool"}}]}
16
+ {"prompt": "Compare the weather in Aalborg and Cluj.", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Aalborg\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cluj\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Aalborg"}}, {"name": "get_weather", "arguments": {"city": "Cluj"}}]}
17
  {"prompt": "Cancel my subscription.", "kind": "text", "category": "clarify", "tool": "", "target": "Which subscription would you like me to cancel?"}
18
+ {"prompt": "Deploy it.", "kind": "text", "category": "clarify", "tool": "", "target": "Which service should I deploy, and to which environment?"}
 
 
 
19
  {"prompt": "Cool, the build passed on its own.", "kind": "text", "category": "abstain", "tool": "", "target": "Great to hear the build is green."}
20
+ {"prompt": "Install tsx and hono.", "kind": "tool", "category": "parallel", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"tsx\"},\"name\":\"install_package\"} {\"arguments\":{\"name\":\"hono\"},\"name\":\"install_package\"}", "calls": [{"name": "install_package", "arguments": {"name": "tsx"}}, {"name": "install_package", "arguments": {"name": "hono"}}]}
21
+ {"prompt": "Run 'cargo clippy' and 'make package'.", "kind": "tool", "category": "parallel", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"cargo clippy\"},\"name\":\"run_command\"} {\"arguments\":{\"command\":\"make package\"},\"name\":\"run_command\"}", "calls": [{"name": "run_command", "arguments": {"command": "cargo clippy"}}, {"name": "run_command", "arguments": {"command": "make package"}}]}
22
+ {"prompt": "Have a great weekend!", "kind": "text", "category": "abstain", "tool": "", "target": "Thanks, you too!"}
23
+ {"prompt": "Thanks a ton for earlier.", "kind": "text", "category": "abstain", "tool": "", "target": "My pleasure glad it helped!"}
24
+ {"prompt": "Share the doc.", "kind": "text", "category": "clarify", "tool": "", "target": "Which document, and who should I share it with?"}
 
25
  {"prompt": "I finished writing the docs already.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice, glad the docs are done."}
26
+ {"prompt": "Search the code for 'RateGuard' and 'warm_cache'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RateGuard\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"warm_cache\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RateGuard"}}, {"name": "grep_search", "arguments": {"pattern": "warm_cache"}}]}
27
+ {"prompt": "I already cleared the cache.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, that should sort it out."}
28
+ {"prompt": "Update the record.", "kind": "text", "category": "clarify", "tool": "", "target": "Which record, and what fields should change?"}
29
+ {"prompt": "Edit ui/modal.tsx and net/dialer.go.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"ui/modal.tsx\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"net/dialer.go\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "ui/modal.tsx"}}, {"name": "edit_file", "arguments": {"path": "net/dialer.go"}}]}
30
+ {"prompt": "Install hono and tsx.", "kind": "tool", "category": "parallel", "tool": "install_package", "target": "{\"arguments\":{\"name\":\"hono\"},\"name\":\"install_package\"} {\"arguments\":{\"name\":\"tsx\"},\"name\":\"install_package\"}", "calls": [{"name": "install_package", "arguments": {"name": "hono"}}, {"name": "install_package", "arguments": {"name": "tsx"}}]}
31
+ {"prompt": "Search the code for 'merge_shards' and 'MIN_BATCH'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"merge_shards\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"MIN_BATCH\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "merge_shards"}}, {"name": "grep_search", "arguments": {"pattern": "MIN_BATCH"}}]}
32
+ {"prompt": "I rolled back the change myself.", "kind": "text", "category": "abstain", "tool": "", "target": "Good call rolling that back."}
33
+ {"prompt": "Search the code for 'merge_shards' and 'trim_prefix'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"merge_shards\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"trim_prefix\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "merge_shards"}}, {"name": "grep_search", "arguments": {"pattern": "trim_prefix"}}]}
34
+ {"prompt": "Read mod/session.py and svc/ledger.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"mod/session.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"svc/ledger.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "mod/session.py"}}, {"name": "read_file", "arguments": {"path": "svc/ledger.py"}}]}
35
+ {"prompt": "Run 'make package' and 'make release'.", "kind": "tool", "category": "parallel", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"make package\"},\"name\":\"run_command\"} {\"arguments\":{\"command\":\"make release\"},\"name\":\"run_command\"}", "calls": [{"name": "run_command", "arguments": {"command": "make package"}}, {"name": "run_command", "arguments": {"command": "make release"}}]}
36
+ {"prompt": "Create the directories var/spool and dist/web.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"var/spool\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"dist/web\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "var/spool"}}, {"name": "make_dir", "arguments": {"path": "dist/web"}}]}
37
+ {"prompt": "Tell me a fun fact.", "kind": "text", "category": "abstain", "tool": "", "target": "Honey never spoils — it can last for thousands of years."}
38
  {"prompt": "Rename the file.", "kind": "text", "category": "clarify", "tool": "", "target": "Which file, and what should the new name be?"}
39
+ {"prompt": "Just wanted to say hi.", "kind": "text", "category": "abstain", "tool": "", "target": "Hi there! How can I help?"}
40
+ {"prompt": "Add a label.", "kind": "text", "category": "clarify", "tool": "", "target": "Which item, and what label should I add?"}
 
 
 
 
 
 
 
scenarios_single_train.jsonl CHANGED
@@ -1,38 +1,60 @@
1
- {"prompt": "Book a meeting.", "kind": "text", "category": "clarify", "tool": "", "target": "What time, and with whom?"}
2
- {"prompt": "What can you help me with?", "kind": "text", "category": "abstain", "tool": "", "target": "I can help with coding, research, and everyday tasks."}
3
- {"prompt": "Search the web for sqlite wal mode and for rust async runtimes.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"sqlite wal mode\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"rust async runtimes\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "sqlite wal mode"}}, {"name": "web_search", "arguments": {"query": "rust async runtimes"}}]}
 
 
 
 
 
 
 
4
  {"prompt": "I already ran the tests, thanks.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, sounds like you're all set."}
 
 
 
5
  {"prompt": "Add it to my calendar.", "kind": "text", "category": "clarify", "tool": "", "target": "What is the event, and when is it?"}
6
- {"prompt": "That makes sense, thank you.", "kind": "text", "category": "abstain", "tool": "", "target": "You're welcome!"}
7
- {"prompt": "Good morning!", "kind": "text", "category": "abstain", "tool": "", "target": "Good morning! How can I help?"}
 
 
8
  {"prompt": "We already merged the PR.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, glad the PR is merged."}
9
- {"prompt": "Create the directories out/dist and build/cache.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"out/dist\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"build/cache\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "out/dist"}}, {"name": "make_dir", "arguments": {"path": "build/cache"}}]}
10
- {"prompt": "What's the weather in Graz, Cork, and Bergen?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Graz\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cork\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bergen\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Graz"}}, {"name": "get_weather", "arguments": {"city": "Cork"}}, {"name": "get_weather", "arguments": {"city": "Bergen"}}]}
11
- {"prompt": "Create the directories logs/jobs and tmp/work.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"logs/jobs\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"tmp/work\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "logs/jobs"}}, {"name": "make_dir", "arguments": {"path": "tmp/work"}}]}
12
- {"prompt": "What's the weather in Ghent, Bergen, and Bilbao?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Ghent\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bergen\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bilbao\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Ghent"}}, {"name": "get_weather", "arguments": {"city": "Bergen"}}, {"name": "get_weather", "arguments": {"city": "Bilbao"}}]}
13
- {"prompt": "Search the code for 'RetryQueue' and 'parse_token'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"RetryQueue\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"parse_token\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "RetryQueue"}}, {"name": "grep_search", "arguments": {"pattern": "parse_token"}}]}
14
- {"prompt": "Search the code for 'render_row' and 'compute_total'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"render_row\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"compute_total\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "render_row"}}, {"name": "grep_search", "arguments": {"pattern": "compute_total"}}]}
15
  {"prompt": "Email the team.", "kind": "text", "category": "clarify", "tool": "", "target": "Who should I email, and what should the message say?"}
16
- {"prompt": "What's the weather in Ghent, Graz, and Aarhus?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Ghent\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Graz\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Aarhus\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Ghent"}}, {"name": "get_weather", "arguments": {"city": "Graz"}}, {"name": "get_weather", "arguments": {"city": "Aarhus"}}]}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  {"prompt": "Nice, the deploy worked.", "kind": "text", "category": "abstain", "tool": "", "target": "Awesome, glad the deploy went smoothly!"}
18
- {"prompt": "What's the weather in Aarhus, Nantes, and Ghent?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Aarhus\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Nantes\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Ghent\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Aarhus"}}, {"name": "get_weather", "arguments": {"city": "Nantes"}}, {"name": "get_weather", "arguments": {"city": "Ghent"}}]}
19
- {"prompt": "Read pkg/store.go and lib/parse.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"pkg/store.go\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"lib/parse.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "pkg/store.go"}}, {"name": "read_file", "arguments": {"path": "lib/parse.py"}}]}
20
- {"prompt": "Open the file.", "kind": "text", "category": "clarify", "tool": "", "target": "Which file should I open?"}
21
- {"prompt": "Thanks, that's really helpful!", "kind": "text", "category": "abstain", "tool": "", "target": "Glad I could help!"}
 
 
22
  {"prompt": "Schedule a call.", "kind": "text", "category": "clarify", "tool": "", "target": "When should the call be, and who is on it?"}
23
- {"prompt": "Search the web for postgres index types and for wasm component model.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"postgres index types\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"wasm component model\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "postgres index types"}}, {"name": "web_search", "arguments": {"query": "wasm component model"}}]}
24
- {"prompt": "Search the web for kafka consumer groups and for rust async runtimes.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"kafka consumer groups\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"rust async runtimes\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "kafka consumer groups"}}, {"name": "web_search", "arguments": {"query": "rust async runtimes"}}]}
25
- {"prompt": "Read web/view.jsx and app/core.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"web/view.jsx\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"app/core.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "web/view.jsx"}}, {"name": "read_file", "arguments": {"path": "app/core.py"}}]}
26
  {"prompt": "I just committed the fix myself.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice work getting that committed."}
27
- {"prompt": "What's the weather in Graz, Ghent, and Cork?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Graz\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Ghent\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Cork\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Graz"}}, {"name": "get_weather", "arguments": {"city": "Ghent"}}, {"name": "get_weather", "arguments": {"city": "Cork"}}]}
28
- {"prompt": "Run the script.", "kind": "text", "category": "clarify", "tool": "", "target": "Which script should I run?"}
29
- {"prompt": "Create a reminder.", "kind": "text", "category": "clarify", "tool": "", "target": "What should I remind you about, and when?"}
30
- {"prompt": "Search the code for 'flush_buffer' and 'MAX_RETRIES'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"flush_buffer\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"MAX_RETRIES\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "flush_buffer"}}, {"name": "grep_search", "arguments": {"pattern": "MAX_RETRIES"}}]}
31
- {"prompt": "Read cli/main.rs and utils/net.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"cli/main.rs\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"utils/net.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "cli/main.rs"}}, {"name": "read_file", "arguments": {"path": "utils/net.py"}}]}
32
- {"prompt": "Create the directories out/dist and var/state.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"out/dist\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"var/state\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "out/dist"}}, {"name": "make_dir", "arguments": {"path": "var/state"}}]}
33
- {"prompt": "Search the code for 'parse_token' and 'render_row'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"parse_token\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"render_row\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "parse_token"}}, {"name": "grep_search", "arguments": {"pattern": "render_row"}}]}
34
- {"prompt": "How are you doing today?", "kind": "text", "category": "abstain", "tool": "", "target": "I'm doing well, thanks for asking!"}
35
- {"prompt": "Make a reservation.", "kind": "text", "category": "clarify", "tool": "", "target": "Where, for how many people, and at what time?"}
36
- {"prompt": "Search the web for sqlite wal mode and for wasm component model.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"sqlite wal mode\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"wasm component model\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "sqlite wal mode"}}, {"name": "web_search", "arguments": {"query": "wasm component model"}}]}
37
- {"prompt": "I'm going to grab a coffee.", "kind": "text", "category": "abstain", "tool": "", "target": "Enjoy your coffee!"}
38
- {"prompt": "Search the web for rust async runtimes and for sqlite wal mode.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"rust async runtimes\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"sqlite wal mode\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "rust async runtimes"}}, {"name": "web_search", "arguments": {"query": "sqlite wal mode"}}]}
 
1
+ {"prompt": "Search the codebase.", "kind": "text", "category": "clarify", "tool": "", "target": "What symbol or string should I search for?"}
2
+ {"prompt": "I'm heading out for lunch.", "kind": "text", "category": "abstain", "tool": "", "target": "Enjoy your lunch!"}
3
+ {"prompt": "Move the file.", "kind": "text", "category": "clarify", "tool": "", "target": "Which file, and where should it go?"}
4
+ {"prompt": "Open webassembly.org/specs and nginx.org/en/docs.", "kind": "tool", "category": "parallel", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"webassembly.org/specs\"},\"name\":\"open_url\"} {\"arguments\":{\"url\":\"nginx.org/en/docs\"},\"name\":\"open_url\"}", "calls": [{"name": "open_url", "arguments": {"url": "webassembly.org/specs"}}, {"name": "open_url", "arguments": {"url": "nginx.org/en/docs"}}]}
5
+ {"prompt": "Never mind, I figured it out.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice, glad you sorted it out!"}
6
+ {"prompt": "Run the script.", "kind": "text", "category": "clarify", "tool": "", "target": "Which script should I run?"}
7
+ {"prompt": "Search the code for 'validate_input' and 'WorkerPool'.", "kind": "tool", "category": "parallel", "tool": "grep_search", "target": "{\"arguments\":{\"pattern\":\"validate_input\"},\"name\":\"grep_search\"} {\"arguments\":{\"pattern\":\"WorkerPool\"},\"name\":\"grep_search\"}", "calls": [{"name": "grep_search", "arguments": {"pattern": "validate_input"}}, {"name": "grep_search", "arguments": {"pattern": "WorkerPool"}}]}
8
+ {"prompt": "Thanks, that's really helpful!", "kind": "text", "category": "abstain", "tool": "", "target": "Glad I could help!"}
9
+ {"prompt": "Compare the weather in Malmo and Bergen.", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Malmo\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Bergen\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Malmo"}}, {"name": "get_weather", "arguments": {"city": "Bergen"}}]}
10
+ {"prompt": "Write it down.", "kind": "text", "category": "clarify", "tool": "", "target": "What should I write, and where should it go?"}
11
  {"prompt": "I already ran the tests, thanks.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, sounds like you're all set."}
12
+ {"prompt": "Create a reminder.", "kind": "text", "category": "clarify", "tool": "", "target": "What should I remind you about, and when?"}
13
+ {"prompt": "What can you help me with?", "kind": "text", "category": "abstain", "tool": "", "target": "I can help with coding, research, and everyday tasks."}
14
+ {"prompt": "Set a timer.", "kind": "text", "category": "clarify", "tool": "", "target": "How long should the timer run for?"}
15
  {"prompt": "Add it to my calendar.", "kind": "text", "category": "clarify", "tool": "", "target": "What is the event, and when is it?"}
16
+ {"prompt": "I restarted the server already.", "kind": "text", "category": "abstain", "tool": "", "target": "Good call, sounds like it's back up."}
17
+ {"prompt": "Edit lib/parse.py and db/migrate.sql.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"lib/parse.py\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"db/migrate.sql\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "lib/parse.py"}}, {"name": "edit_file", "arguments": {"path": "db/migrate.sql"}}]}
18
+ {"prompt": "Set up the folder.", "kind": "text", "category": "clarify", "tool": "", "target": "What should the new folder be named?"}
19
+ {"prompt": "I already opened the file, no need.", "kind": "text", "category": "abstain", "tool": "", "target": "Got it, sounds like you've got it covered."}
20
  {"prompt": "We already merged the PR.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, glad the PR is merged."}
21
+ {"prompt": "We pushed the release last night.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice, congrats on getting it out."}
22
+ {"prompt": "Good morning!", "kind": "text", "category": "abstain", "tool": "", "target": "Good morning! How can I help?"}
 
 
 
 
23
  {"prompt": "Email the team.", "kind": "text", "category": "clarify", "tool": "", "target": "Who should I email, and what should the message say?"}
24
+ {"prompt": "Install the package.", "kind": "text", "category": "clarify", "tool": "", "target": "Which package would you like me to install?"}
25
+ {"prompt": "Block off some time.", "kind": "text", "category": "clarify", "tool": "", "target": "For what, and at what date and time?"}
26
+ {"prompt": "Create the directories tmp/scratch and out/dist.", "kind": "tool", "category": "parallel", "tool": "make_dir", "target": "{\"arguments\":{\"path\":\"tmp/scratch\"},\"name\":\"make_dir\"} {\"arguments\":{\"path\":\"out/dist\"},\"name\":\"make_dir\"}", "calls": [{"name": "make_dir", "arguments": {"path": "tmp/scratch"}}, {"name": "make_dir", "arguments": {"path": "out/dist"}}]}
27
+ {"prompt": "Play something.", "kind": "text", "category": "clarify", "tool": "", "target": "What song or artist would you like to hear?"}
28
+ {"prompt": "Open kafka.apache.org/intro and nginx.org/en/docs.", "kind": "tool", "category": "parallel", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"kafka.apache.org/intro\"},\"name\":\"open_url\"} {\"arguments\":{\"url\":\"nginx.org/en/docs\"},\"name\":\"open_url\"}", "calls": [{"name": "open_url", "arguments": {"url": "kafka.apache.org/intro"}}, {"name": "open_url", "arguments": {"url": "nginx.org/en/docs"}}]}
29
+ {"prompt": "Search the web for sqlite wal mode and for grpc streaming patterns.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"sqlite wal mode\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"grpc streaming patterns\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "sqlite wal mode"}}, {"name": "web_search", "arguments": {"query": "grpc streaming patterns"}}]}
30
+ {"prompt": "Make a reservation.", "kind": "text", "category": "clarify", "tool": "", "target": "Where, for how many people, and at what time?"}
31
+ {"prompt": "How are you doing today?", "kind": "text", "category": "abstain", "tool": "", "target": "I'm doing well, thanks for asking!"}
32
+ {"prompt": "I closed the ticket on my end.", "kind": "text", "category": "abstain", "tool": "", "target": "Great, thanks for wrapping that up."}
33
+ {"prompt": "Search the web for terraform state locking and for rust async runtimes.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"terraform state locking\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"rust async runtimes\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "terraform state locking"}}, {"name": "web_search", "arguments": {"query": "rust async runtimes"}}]}
34
+ {"prompt": "Download it.", "kind": "text", "category": "clarify", "tool": "", "target": "What is the URL of the file to download?"}
35
+ {"prompt": "That makes sense, thank you.", "kind": "text", "category": "abstain", "tool": "", "target": "You're welcome!"}
36
+ {"prompt": "You're a lifesaver.", "kind": "text", "category": "abstain", "tool": "", "target": "Happy to help anytime!"}
37
+ {"prompt": "Edit cli/main.rs and lib/cache.ts.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"cli/main.rs\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"lib/cache.ts\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "cli/main.rs"}}, {"name": "edit_file", "arguments": {"path": "lib/cache.ts"}}]}
38
+ {"prompt": "What's the weather in Porto, Nantes, and Turin?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Porto\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Nantes\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Turin\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Porto"}}, {"name": "get_weather", "arguments": {"city": "Nantes"}}, {"name": "get_weather", "arguments": {"city": "Turin"}}]}
39
+ {"prompt": "Create a ticket.", "kind": "text", "category": "clarify", "tool": "", "target": "What should the ticket title and description be?"}
40
+ {"prompt": "Kill the process.", "kind": "text", "category": "clarify", "tool": "", "target": "Which process should I terminate?"}
41
+ {"prompt": "Search the web for wasm component model and for elixir supervision trees.", "kind": "tool", "category": "parallel", "tool": "web_search", "target": "{\"arguments\":{\"query\":\"wasm component model\"},\"name\":\"web_search\"} {\"arguments\":{\"query\":\"elixir supervision trees\"},\"name\":\"web_search\"}", "calls": [{"name": "web_search", "arguments": {"query": "wasm component model"}}, {"name": "web_search", "arguments": {"query": "elixir supervision trees"}}]}
42
+ {"prompt": "Run 'npm run compile' and 'make build'.", "kind": "tool", "category": "parallel", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"npm run compile\"},\"name\":\"run_command\"} {\"arguments\":{\"command\":\"make build\"},\"name\":\"run_command\"}", "calls": [{"name": "run_command", "arguments": {"command": "npm run compile"}}, {"name": "run_command", "arguments": {"command": "make build"}}]}
43
+ {"prompt": "What's the weather in Nantes, Utrecht, and Graz?", "kind": "tool", "category": "parallel", "tool": "get_weather", "target": "{\"arguments\":{\"city\":\"Nantes\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Utrecht\"},\"name\":\"get_weather\"} {\"arguments\":{\"city\":\"Graz\"},\"name\":\"get_weather\"}", "calls": [{"name": "get_weather", "arguments": {"city": "Nantes"}}, {"name": "get_weather", "arguments": {"city": "Utrecht"}}, {"name": "get_weather", "arguments": {"city": "Graz"}}]}
44
+ {"prompt": "Open wiki.postgresql.org/Indexes and nginx.org/en/docs.", "kind": "tool", "category": "parallel", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"wiki.postgresql.org/Indexes\"},\"name\":\"open_url\"} {\"arguments\":{\"url\":\"nginx.org/en/docs\"},\"name\":\"open_url\"}", "calls": [{"name": "open_url", "arguments": {"url": "wiki.postgresql.org/Indexes"}}, {"name": "open_url", "arguments": {"url": "nginx.org/en/docs"}}]}
45
+ {"prompt": "Open grpc.io/docs/guides and nginx.org/en/docs.", "kind": "tool", "category": "parallel", "tool": "open_url", "target": "{\"arguments\":{\"url\":\"grpc.io/docs/guides\"},\"name\":\"open_url\"} {\"arguments\":{\"url\":\"nginx.org/en/docs\"},\"name\":\"open_url\"}", "calls": [{"name": "open_url", "arguments": {"url": "grpc.io/docs/guides"}}, {"name": "open_url", "arguments": {"url": "nginx.org/en/docs"}}]}
46
+ {"prompt": "Edit src/router.go and db/migrate.sql.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"src/router.go\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"db/migrate.sql\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "src/router.go"}}, {"name": "edit_file", "arguments": {"path": "db/migrate.sql"}}]}
47
+ {"prompt": "Edit services/mailer.py and utils/net.py.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"services/mailer.py\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"utils/net.py\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "services/mailer.py"}}, {"name": "edit_file", "arguments": {"path": "utils/net.py"}}]}
48
+ {"prompt": "Hey there.", "kind": "text", "category": "abstain", "tool": "", "target": "Hey! What can I do for you?"}
49
+ {"prompt": "Book a meeting.", "kind": "text", "category": "clarify", "tool": "", "target": "What time, and with whom?"}
50
  {"prompt": "Nice, the deploy worked.", "kind": "text", "category": "abstain", "tool": "", "target": "Awesome, glad the deploy went smoothly!"}
51
+ {"prompt": "Perfect, that worked.", "kind": "text", "category": "abstain", "tool": "", "target": "Awesome, glad that did the trick!"}
52
+ {"prompt": "Run 'go vet ./...' and 'make migrate'.", "kind": "tool", "category": "parallel", "tool": "run_command", "target": "{\"arguments\":{\"command\":\"go vet ./...\"},\"name\":\"run_command\"} {\"arguments\":{\"command\":\"make migrate\"},\"name\":\"run_command\"}", "calls": [{"name": "run_command", "arguments": {"command": "go vet ./..."}}, {"name": "run_command", "arguments": {"command": "make migrate"}}]}
53
+ {"prompt": "Read lib/parse.py and utils/net.py.", "kind": "tool", "category": "parallel", "tool": "read_file", "target": "{\"arguments\":{\"path\":\"lib/parse.py\"},\"name\":\"read_file\"} {\"arguments\":{\"path\":\"utils/net.py\"},\"name\":\"read_file\"}", "calls": [{"name": "read_file", "arguments": {"path": "lib/parse.py"}}, {"name": "read_file", "arguments": {"path": "utils/net.py"}}]}
54
+ {"prompt": "I'm going to grab a coffee.", "kind": "text", "category": "abstain", "tool": "", "target": "Enjoy your coffee!"}
55
+ {"prompt": "Appreciate the help earlier.", "kind": "text", "category": "abstain", "tool": "", "target": "Anytime — glad it worked out."}
56
+ {"prompt": "Edit web/form.jsx and utils/net.py.", "kind": "tool", "category": "parallel", "tool": "edit_file", "target": "{\"arguments\":{\"path\":\"web/form.jsx\"},\"name\":\"edit_file\"} {\"arguments\":{\"path\":\"utils/net.py\"},\"name\":\"edit_file\"}", "calls": [{"name": "edit_file", "arguments": {"path": "web/form.jsx"}}, {"name": "edit_file", "arguments": {"path": "utils/net.py"}}]}
57
  {"prompt": "Schedule a call.", "kind": "text", "category": "clarify", "tool": "", "target": "When should the call be, and who is on it?"}
58
+ {"prompt": "Commit the changes.", "kind": "text", "category": "clarify", "tool": "", "target": "What commit message should I use?"}
59
+ {"prompt": "Open the file.", "kind": "text", "category": "clarify", "tool": "", "target": "Which file should I open?"}
 
60
  {"prompt": "I just committed the fix myself.", "kind": "text", "category": "abstain", "tool": "", "target": "Nice work getting that committed."}