fabro/arc/workflows/hello/workflow.dot
Bryan Helmkamp 45ccdcee57 Add hello workflow as a minimal hello world example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 19:29:01 -04:00

11 lines
337 B
Text

digraph Hello {
graph [goal="Say hello and demonstrate a basic arc workflow"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
greet [label="Greet", prompt="Say hello! Introduce yourself and explain that this is a test of the arc workflow engine."]
start -> greet -> exit
}