From 103d60887eff00be609d8bf0a46b22ce2e71ce36 Mon Sep 17 00:00:00 2001 From: Fabro Date: Wed, 15 Apr 2026 09:47:08 -0400 Subject: [PATCH] init run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ⚒️ Generated with [Fabro](https://fabro.sh) --- run.json | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++ sandbox.json | 5 ++ 2 files changed, 183 insertions(+) create mode 100644 run.json create mode 100644 sandbox.json diff --git a/run.json b/run.json new file mode 100644 index 000000000..29be22c2f --- /dev/null +++ b/run.json @@ -0,0 +1,178 @@ +{ + "run_id": "01KP8PA9BVTT124QR7A28FD3H6", + "settings": { + "_version": 1, + "project": { + "directory": "." + }, + "workflow": { + "graph": "workflow.fabro" + }, + "run": { + "goal": "Say hello and demonstrate a basic Fabro workflow", + "model": { + "provider": "openai", + "name": "gpt-5.4-mini" + }, + "prepare": { + "timeout": "5m" + }, + "execution": { + "mode": "normal", + "approval": "prompt", + "retros": true + }, + "sandbox": { + "provider": "daytona", + "preserve": false, + "devcontainer": false, + "local": { + "worktree_mode": "clean" + } + }, + "pull_request": { + "enabled": true, + "draft": true + } + }, + "cli": { + "target": { + "type": "http", + "url": "http://127.0.0.1:32276", + "tls": null + }, + "exec": { + "prevent_idle_sleep": false + }, + "output": { + "format": "text", + "verbosity": "normal" + }, + "updates": { + "check": true + } + }, + "server": { + "listen": { + "type": "tcp", + "address": "127.0.0.1:32276", + "tls": null + }, + "api": { + "url": "http://127.0.0.1:32276/api/v1" + }, + "web": { + "enabled": true, + "url": "http://127.0.0.1:32276" + }, + "auth": { + "methods": [ + "dev-token" + ] + }, + "storage": { + "root": "/Users/bhelmkamp/.fabro/storage" + }, + "artifacts": { + "provider": "local", + "prefix": "" + }, + "slatedb": { + "provider": "local", + "prefix": "", + "flush_interval": "1ms", + "disk_cache": false + }, + "scheduler": { + "max_concurrent_runs": 5 + }, + "integrations": { + "github": { + "strategy": "token" + } + } + }, + "features": { + "session_sandboxes": false + } + }, + "graph": { + "name": "Hello", + "nodes": { + "start": { + "id": "start", + "attrs": { + "label": { + "String": "Start" + }, + "shape": { + "String": "Mdiamond" + } + } + }, + "exit": { + "id": "exit", + "attrs": { + "shape": { + "String": "Msquare" + }, + "label": { + "String": "Exit" + } + } + }, + "greet": { + "id": "greet", + "attrs": { + "label": { + "String": "Greet" + }, + "prompt": { + "String": "Say hello! Explore this codebase. Introduce yourself and explain that this is a test of the Fabro workflow engine." + } + } + } + }, + "edges": [ + { + "from": "start", + "to": "greet", + "attrs": {} + }, + { + "from": "greet", + "to": "exit", + "attrs": {} + } + ], + "attrs": { + "goal": { + "String": "Say hello and demonstrate a basic Fabro workflow" + }, + "rankdir": { + "String": "LR" + } + } + }, + "workflow_slug": "hello", + "working_directory": "/Users/bhelmkamp/p/fabro-sh/fabro", + "host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro", + "repo_origin_url": "https://github.com/fabro-sh/fabro", + "base_branch": "main", + "provenance": { + "server": { + "version": "0.176.2" + }, + "client": { + "user_agent": "fabro-cli/0.176.2", + "name": "fabro-cli", + "version": "0.176.2" + }, + "subject": { + "login": "dev", + "auth_method": "dev_token" + } + }, + "manifest_blob": "5dc330e43d841ecab258de5218856ec395646135cec49b40ab7b1b99aaecb42a", + "definition_blob": "b433eda5087ebfff9e51997e591461a41f01715d5335772b5c0edbc7259834a0" +} \ No newline at end of file diff --git a/sandbox.json b/sandbox.json new file mode 100644 index 000000000..e1158b2ae --- /dev/null +++ b/sandbox.json @@ -0,0 +1,5 @@ +{ + "provider": "daytona", + "working_directory": "/home/daytona/workspace", + "identifier": "fabro-01KP8PA9BVTT124QR7A28FD3H6" +} \ No newline at end of file