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.

A resource import exposes an MCP resource to a workflow.
resource project_readme from mcp.tasks.resource.project_readme
Read a resource in a dynamic block:
dynamic {
    readme: read resource.project_readme
}
Resources can also be made available to agents through uses.
agent writer {
    model: model.fast
    uses: [resource.project_readme]
    instruction: "Use the project README to write a short overview."

    output {
        overview: string
    }
}