⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-05-08 07:53:02 -07:00
commit 6ca1f3a8a6
2 changed files with 486 additions and 0 deletions

60
graph.fabro Normal file
View file

@ -0,0 +1,60 @@
digraph Interview {
graph [goal="Run a progressive human interview and summarize the answers"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
yes_no [
shape=hexagon,
label="Is this interview workflow easy to follow so far?",
question_type="yes_no"
]
confirmation [
shape=hexagon,
label="Confirm that you want to continue into more structured questions.",
question_type="confirmation"
]
multiple_choice [
shape=hexagon,
label="Which theme should be the center of the final summary?",
question_type="multiple_choice"
]
multi_select [
shape=hexagon,
label="Which supporting areas should the final summary emphasize?",
question_type="multi_select"
]
freeform [
shape=hexagon,
label="Add any final context, constraints, or nuance for the summary.",
question_type="freeform"
]
summarize [
shape=tab,
label="Summarize Interview",
fidelity="summary:high",
prompt="Summarize the full human interview. Include each question and answer in order, then synthesize the user's priorities, constraints, and open questions. Use the human.gate.<node>.question and human.gate.<node>.answer context keys when present. Do not invent missing answers."
]
start -> yes_no
yes_no -> confirmation [label="[Y] Yes"]
yes_no -> confirmation [label="[N] No"]
confirmation -> multiple_choice [label="[Y] Continue"]
confirmation -> multiple_choice [label="[N] Stop after this, but still summarize"]
multiple_choice -> multi_select [label="[G] Goals"]
multiple_choice -> multi_select [label="[R] Risks"]
multiple_choice -> multi_select [label="[T] Tradeoffs"]
multiple_choice -> multi_select [label="[Q] Open questions"]
multi_select -> freeform [label="[S] Success criteria"]
multi_select -> freeform [label="[B] Blockers"]
multi_select -> freeform [label="[D] Decisions needed"]
multi_select -> freeform [label="[N] Next steps"]
freeform -> summarize [freeform=true]
summarize -> exit
}

426
run.json Normal file
View file

@ -0,0 +1,426 @@
{
"spec": {
"run_id": "01KR4179P219MHN43JAH948CKN",
"settings": {
"project": {
"name": null,
"description": null,
"directory": ".",
"metadata": {}
},
"workflow": {
"name": null,
"description": null,
"graph": "workflow.fabro",
"metadata": {}
},
"run": {
"goal": {
"type": "inline",
"value": "Run a progressive human interview and summarize the answers"
},
"working_dir": null,
"metadata": {},
"inputs": {},
"model": {
"provider": "anthropic",
"name": "claude-sonnet-4-6",
"fallbacks": []
},
"git": {
"author": null
},
"prepare": {
"commands": [],
"timeout_ms": 300000
},
"execution": {
"mode": "normal",
"approval": "prompt",
"retros": true
},
"checkpoint": {
"exclude_globs": []
},
"sandbox": {
"provider": "daytona",
"preserve": false,
"devcontainer": false,
"env": {},
"local": {
"worktree_mode": "always"
},
"docker": {
"image": "buildpack-deps:noble",
"network_mode": null,
"memory_limit": 4000000000,
"cpu_quota": 200000,
"env_vars": {},
"skip_clone": false
},
"daytona": {
"auto_stop_interval": 30,
"labels": {
"repo": "fabro-sh/fabro"
},
"snapshot": {
"name": "fabro-v8",
"cpu": 8,
"memory_gb": 16,
"disk_gb": 20,
"dockerfile": {
"type": "inline",
"value": "FROM ubuntu:24.04\n\nRUN apt-get update && apt-get install -y --no-install-recommends curl git ca-certificates build-essential pkg-config libssl-dev unzip python3 && rm -rf /var/lib/apt/lists/*\n\n# GitHub CLI\nRUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && apt-get update && apt-get install -y --no-install-recommends gh && rm -rf /var/lib/apt/lists/*\n\n# Rust\nRUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y\nENV PATH=\"/root/.cargo/bin:${PATH}\"\nRUN rustup toolchain install nightly-2026-04-14 --profile minimal --component clippy,rustfmt\nRUN cargo install cargo-nextest --locked\nENV CARGO_INCREMENTAL=0\n\n# Bun\nRUN curl -fsSL https://bun.sh/install | bash\nENV PATH=\"/root/.bun/bin:${PATH}\"\n\nWORKDIR /root\n"
}
},
"network": null,
"skip_clone": false
}
},
"notifications": {},
"interviews": {
"provider": null,
"slack": null,
"discord": null,
"teams": null
},
"agent": {
"permissions": null,
"mcps": {}
},
"hooks": [],
"scm": {
"provider": null,
"owner": null,
"repository": null,
"github": null
},
"pull_request": {
"enabled": true,
"draft": false,
"auto_merge": false,
"merge_strategy": "squash"
},
"artifacts": {
"include": []
},
"integrations": {
"github": {
"permissions": {}
}
}
}
},
"graph": {
"name": "Interview",
"nodes": {
"confirmation": {
"id": "confirmation",
"attrs": {
"shape": {
"String": "hexagon"
},
"label": {
"String": "Confirm that you want to continue into more structured questions."
},
"question_type": {
"String": "confirmation"
}
}
},
"multi_select": {
"id": "multi_select",
"attrs": {
"shape": {
"String": "hexagon"
},
"question_type": {
"String": "multi_select"
},
"label": {
"String": "Which supporting areas should the final summary emphasize?"
}
}
},
"yes_no": {
"id": "yes_no",
"attrs": {
"label": {
"String": "Is this interview workflow easy to follow so far?"
},
"question_type": {
"String": "yes_no"
},
"shape": {
"String": "hexagon"
}
}
},
"exit": {
"id": "exit",
"attrs": {
"label": {
"String": "Exit"
},
"shape": {
"String": "Msquare"
}
}
},
"multiple_choice": {
"id": "multiple_choice",
"attrs": {
"question_type": {
"String": "multiple_choice"
},
"label": {
"String": "Which theme should be the center of the final summary?"
},
"shape": {
"String": "hexagon"
}
}
},
"freeform": {
"id": "freeform",
"attrs": {
"question_type": {
"String": "freeform"
},
"label": {
"String": "Add any final context, constraints, or nuance for the summary."
},
"shape": {
"String": "hexagon"
}
}
},
"start": {
"id": "start",
"attrs": {
"label": {
"String": "Start"
},
"shape": {
"String": "Mdiamond"
}
}
},
"summarize": {
"id": "summarize",
"attrs": {
"shape": {
"String": "tab"
},
"prompt": {
"String": "Summarize the full human interview. Include each question and answer in order, then synthesize the user's priorities, constraints, and open questions. Use the human.gate.<node>.question and human.gate.<node>.answer context keys when present. Do not invent missing answers."
},
"fidelity": {
"String": "summary:high"
},
"label": {
"String": "Summarize Interview"
}
}
}
},
"edges": [
{
"from": "start",
"to": "yes_no",
"attrs": {}
},
{
"from": "yes_no",
"to": "confirmation",
"attrs": {
"label": {
"String": "[Y] Yes"
}
}
},
{
"from": "yes_no",
"to": "confirmation",
"attrs": {
"label": {
"String": "[N] No"
}
}
},
{
"from": "confirmation",
"to": "multiple_choice",
"attrs": {
"label": {
"String": "[Y] Continue"
}
}
},
{
"from": "confirmation",
"to": "multiple_choice",
"attrs": {
"label": {
"String": "[N] Stop after this, but still summarize"
}
}
},
{
"from": "multiple_choice",
"to": "multi_select",
"attrs": {
"label": {
"String": "[G] Goals"
}
}
},
{
"from": "multiple_choice",
"to": "multi_select",
"attrs": {
"label": {
"String": "[R] Risks"
}
}
},
{
"from": "multiple_choice",
"to": "multi_select",
"attrs": {
"label": {
"String": "[T] Tradeoffs"
}
}
},
{
"from": "multiple_choice",
"to": "multi_select",
"attrs": {
"label": {
"String": "[Q] Open questions"
}
}
},
{
"from": "multi_select",
"to": "freeform",
"attrs": {
"label": {
"String": "[S] Success criteria"
}
}
},
{
"from": "multi_select",
"to": "freeform",
"attrs": {
"label": {
"String": "[B] Blockers"
}
}
},
{
"from": "multi_select",
"to": "freeform",
"attrs": {
"label": {
"String": "[D] Decisions needed"
}
}
},
{
"from": "multi_select",
"to": "freeform",
"attrs": {
"label": {
"String": "[N] Next steps"
}
}
},
{
"from": "freeform",
"to": "summarize",
"attrs": {
"freeform": {
"Boolean": true
}
}
},
{
"from": "summarize",
"to": "exit",
"attrs": {}
}
],
"attrs": {
"goal": {
"String": "Run a progressive human interview and summarize the answers"
},
"rankdir": {
"String": "LR"
}
}
},
"workflow_slug": "interview",
"source_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
"provenance": {
"server": {
"version": "0.227.0-nightly.0"
},
"client": {
"user_agent": "fabro-cli/0.227.0-nightly.0",
"name": "fabro-cli",
"version": "0.227.0-nightly.0"
},
"subject": {
"kind": "user",
"identity": {
"issuer": "https://github.com",
"subject": "19"
},
"login": "brynary",
"auth_method": "github"
}
},
"manifest_blob": "6475c71a6e948abe9ebf1b07782ea38006b046b8a68cee2c63e7d27551ab6743",
"definition_blob": "8901638b57e646cb58115dad699517a3027db48a95047812fd90e3ad7367f8de",
"git": {
"origin_url": "https://github.com/fabro-sh/fabro",
"branch": "main",
"sha": "9b9ebdf50b85179b312a548c3e963f116d9ff46d",
"dirty": "dirty",
"push_outcome": {
"type": "not_attempted"
}
},
"in_place": false
},
"graph_source": "digraph Interview {\n graph [goal=\"Run a progressive human interview and summarize the answers\"]\n rankdir=LR\n\n start [shape=Mdiamond, label=\"Start\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n yes_no [\n shape=hexagon,\n label=\"Is this interview workflow easy to follow so far?\",\n question_type=\"yes_no\"\n ]\n confirmation [\n shape=hexagon,\n label=\"Confirm that you want to continue into more structured questions.\",\n question_type=\"confirmation\"\n ]\n multiple_choice [\n shape=hexagon,\n label=\"Which theme should be the center of the final summary?\",\n question_type=\"multiple_choice\"\n ]\n multi_select [\n shape=hexagon,\n label=\"Which supporting areas should the final summary emphasize?\",\n question_type=\"multi_select\"\n ]\n freeform [\n shape=hexagon,\n label=\"Add any final context, constraints, or nuance for the summary.\",\n question_type=\"freeform\"\n ]\n summarize [\n shape=tab,\n label=\"Summarize Interview\",\n fidelity=\"summary:high\",\n prompt=\"Summarize the full human interview. Include each question and answer in order, then synthesize the user's priorities, constraints, and open questions. Use the human.gate.<node>.question and human.gate.<node>.answer context keys when present. Do not invent missing answers.\"\n ]\n\n start -> yes_no\n\n yes_no -> confirmation [label=\"[Y] Yes\"]\n yes_no -> confirmation [label=\"[N] No\"]\n\n confirmation -> multiple_choice [label=\"[Y] Continue\"]\n confirmation -> multiple_choice [label=\"[N] Stop after this, but still summarize\"]\n\n multiple_choice -> multi_select [label=\"[G] Goals\"]\n multiple_choice -> multi_select [label=\"[R] Risks\"]\n multiple_choice -> multi_select [label=\"[T] Tradeoffs\"]\n multiple_choice -> multi_select [label=\"[Q] Open questions\"]\n\n multi_select -> freeform [label=\"[S] Success criteria\"]\n multi_select -> freeform [label=\"[B] Blockers\"]\n multi_select -> freeform [label=\"[D] Decisions needed\"]\n multi_select -> freeform [label=\"[N] Next steps\"]\n\n freeform -> summarize [freeform=true]\n summarize -> exit\n}\n",
"start": null,
"status": {
"kind": "starting"
},
"status_updated_at": "2026-05-08T14:52:46.181243Z",
"last_event_at": "2026-05-08T14:53:01.017314Z",
"pending_control": null,
"checkpoint": null,
"checkpoints": [],
"conclusion": null,
"retro": null,
"retro_prompt": null,
"retro_response": null,
"sandbox": {
"provider": "daytona",
"working_directory": "/home/daytona/workspace",
"identifier": "fabro-01KR4179P219MHN43JAH948CKN",
"repo_cloned": true,
"clone_origin_url": "https://github.com/fabro-sh/fabro",
"clone_branch": "main"
},
"final_patch": null,
"pull_request": null,
"superseded_by": null,
"pending_interviews": {},
"stages": {}
}