mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Bake the imagegen script into a Daytona snapshot so the agent can just run `imagegen <prompt> <output>` instead of manually calling the Gemini API with curl/jq. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
379 B
Text
11 lines
379 B
Text
digraph ImageGen {
|
|
graph [goal="A cute robot painting a landscape"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
generate [label="Generate Image", prompt="Generate an image of: $goal\n\nRun: imagegen \"$goal\" generated.png\n\nThen verify the file exists with: ls -la generated.png"]
|
|
|
|
start -> generate -> exit
|
|
}
|