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 prompt import exposes an MCP prompt to a workflow.
prompt writer_instructions from mcp.tasks.prompt.writer_instructions
Render a prompt in a dynamic block:
dynamic {
instructions: render prompt.writer_instructions
}
Prompts can also be provided to an agent through uses.
agent writer {
model: model.fast
uses: [prompt.writer_instructions]
instruction: "Use the writing instructions to draft a response for {{ input.topic }}."
output {
draft: string
}
}
uses accepts tools, prompts, and resources.