act
Control Scrapybara instances using mouse/keyboard actions and bash commands to execute tasks like web browsing, data extraction, or system operations based on provided prompts.
Instructions
Take action on a Scrapybara instance through an agent. The agent can control the instance with mouse/keyboard and bash commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes | The ID of the instance to act on. | |
prompt | Yes | The prompt to act on. <EXAMPLES> - Go to https://ycombinator.com/companies, set batch filter to W25, and extract all company names. - Find the best way to contact Scrapybara. - Order a Big Mac from McDonald's on Doordash. </EXAMPLES> | |
schema | No | Optional schema if you want to extract structured output. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"instance_id": {
"description": "The ID of the instance to act on.",
"type": "string"
},
"prompt": {
"description": "The prompt to act on.\n<EXAMPLES>\n- Go to https://ycombinator.com/companies, set batch filter to W25, and extract all company names.\n- Find the best way to contact Scrapybara.\n- Order a Big Mac from McDonald's on Doordash.\n</EXAMPLES>\n",
"type": "string"
},
"schema": {
"description": "Optional schema if you want to extract structured output."
}
},
"required": [
"instance_id",
"prompt"
],
"type": "object"
}