Ruby API Reference
Reference surface for the Ruby SDK. These APIs wrap the Autohand CLI JSON-RPC runtime while keeping host-language lifecycle and event handling idiomatic.
Install
`AutohandSDK.configure`
Configuration sets the working directory, CLI binary path, debug output, request timeout, model override, skills, system prompt additions, and execution-mode flags.
`AutohandSDK::Client`
Use the low-level wrapper when you need direct JSON-RPC control.
- .open(config = nil, **options) { |client| ... }
- #start / #stop / #close
- #stream_prompt(message_or_params, **options)
- #prompt(message_or_params, **options)
- #abort(reason: nil)
- #permission_response
- #set_permission_mode(mode)
- #set_plan_mode(enabled)
- #get_state
- #get_messages
`AutohandSDK::Agent`
The high-level agent API is the best fit for product code that sends prompts, streams events, and waits for final results.
- .create(config = nil, instructions: nil, **options)
- #send(input, **options)
- #run(input, **options)
- #run_json(input, schema_name: nil, schema: nil, output_instructions: nil, validate: nil, **options)
- #stream(input, **options)
Run
- #stream returns an event enumerator
- #wait returns the final result hash
- #json(validate: nil) parses the final text as JSON
- #abort aborts the active run
SDK events
All CLI-backed SDKs expose the same runtime event names, with language-specific wrappers or helper methods around the raw JSON payload.
agent_startturn_startmessage_updatemessage_endtool_starttool_updatetool_endpermission_requesterror
Structured JSON
Use the JSON helpers when the host application needs typed output from the final assistant response.