Skip to main content

Documentation Index

Fetch the complete documentation index at: https://superwire.dev/llms.txt

Use this file to discover all available pages before exploring further.

Dot access

Use dot access to read nested fields.
input.project_id
agent.summarize.summary
schema.shared.status
model.fast

Model usage

Agents reference named model profiles.
model: model.fast
Model inference overrides can be placed in a block after the model reference.
model: model.fast {
    inference {
        temperature: 0.2
        max_tokens: 1000
    }
}

Tool calls

Tool calls use bindings {} for runtime values.
call tool.fetch_task {
    bindings {
        task_id: input.task_id
    }
}

Inline separators

Use commas for inline arrays, tuples, objects, and enums:
["a", "b", "c"]
(string, number)
{ title: string, score: number }
enum { draft, ready, published }
When object or enum entries are on separate lines, commas are not required.