Spool-driven generation
Consider this scenario. A job failed overnight, and the operator has the spool. The operator wants a recovery flow without having to summarize the failure by hand.
The pattern
Section titled “The pattern”Both steps run through the same provider path as any other AI node or DSL generation. There is no spool-specific model or command.
-
Interpret. Paste the spool into an
ainode bound to a capable local LLM (or a cloud provider) and ask it to summarize the failure. The PII sanitizer redacts dataset names, hostnames, and credentials before the spool text reaches the model. -
Generate. Feed that summary into the flow generator (the Generate screen’s prompt mode, or
flow generatein the CLI) to produce a recovery flow, which parses into a reviewable canvas graph.
flow "spool-triage" v1
interpret[ai: "Summarise failure"] { modelId: "local-llm" system: "You are a mainframe operator. Summarise this job failure and its likely cause in three sentences." input: "{{input}}"}
log[utility: "Log summary"] { actionId: "log" level: "info"}
interpret --> logReview the generated recovery flow before you run it. Like every generated flow, it goes through the review modal and pre-apply verification first.
Related
Section titled “Related”- Agentic and monitor
- Mainframe orchestration covers failure recovery in the mainframe use case.
- Local runtime