get_build_recipe
Return a task-specific implementation plan, source-linked context, acceptance checks and fixture-tested server-side JavaScript. Does not deploy or create account state.
Get an integration recipe
Return a task-specific implementation plan, source-linked context, acceptance checks and fixture-tested server-side JavaScript. Does not deploy or create account state.
Permission and calling convention
Required scope: chain:read. This tool reads data or account-owned state.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/get_build_recipe
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"recipe": {
"type": "string",
"enum": [
"stock_accounting",
"oracle_guard",
"event_indexer",
"market_compare",
"deployment_review",
"pons_curve_read",
"stock_dashboard",
"wallet_view",
"simulate_contract",
"persistent_monitor"
]
},
"includeExample": {
"default": true,
"type": "boolean"
}
},
"required": [
"recipe",
"includeExample"
],
"additionalProperties": false
}