Files

18 lines
418 B
TOML

id = "qa_ping"
description = "Minimal one-stage smoke test: writes a single ping file to verify the pipeline runs end to end."
start = "ping"
[[stages]]
id = "ping"
prompt = "prompts/qa_ping.md"
produces = [{ name = "ping_result", kind = "file_written" }]
allowed_tools = ["file_write"]
token_budget = 1024
max_retries = 1
[[transitions]]
id = "ping-to-done"
from = "ping"
to = "done"
condition_type = "always_true"