Dry run
estimate_deploymentPredicts instance deployment costs and teardown deadline before creating it, returning next steps and worst-case bill with zero spend.
Instructions
Exactly what create_instance would do with these arguments, including the teardown deadline and the worst-case bill. Spends nothing. Returns JSON: {ok, message, next_tool, next_args, ...tool-specific fields}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offer_id | No | Omit to let the planner pick | |
| template | Yes | ||
| idle_minutes | No | ||
| work_minutes | No | ||
| teardown_minutes | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | false only when the tool itself failed (bad input, missing key, API error). | |
| message | Yes | Human-readable summary to relay to the user. | |
| next_args | No | Suggested arguments for next_tool. | |
| next_tool | No | Suggested next tool, or null when nothing else is needed. |