mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
parent
cbf74c8172
commit
ddc8210212
5 changed files with 121 additions and 0 deletions
68
checkpoint.json
Normal file
68
checkpoint.json
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"timestamp": "2026-04-15T13:50:50.746627Z",
|
||||
"current_node": "greet",
|
||||
"completed_nodes": [
|
||||
"start",
|
||||
"greet"
|
||||
],
|
||||
"node_retries": {},
|
||||
"context_values": {
|
||||
"last_stage": "greet",
|
||||
"current_node": "greet",
|
||||
"internal.node_visit_count": 1,
|
||||
"failure_class": "",
|
||||
"thread.start.current_node": "greet",
|
||||
"response.greet": "Hello!\n\nTop-level files and directories in this repo:\n\n- AGENTS.md\n- .ai\n- apps\n- bin\n- bun.lock\n- .cargo\n- Cargo.lock\n- Cargo.toml\n- .claude\n- CLAUDE.md\n- clippy.toml\n- .config\n- CONTRIBUTING.md\n- docker\n- docs\n- docs-internal\n- .env.example\n- evals\n- .fabro\n- files-internal\n- .git\n- .gitattributes\n- .github\n- .gitignore\n- installer\n- install.md\n- install.sh\n- lib\n- LICENSE.md\n- package.json\n- README.md\n- rustfmt.toml\n- scripts\n- test",
|
||||
"internal.retry_count.start": 0,
|
||||
"outcome": "success",
|
||||
"graph.rankdir": "LR",
|
||||
"internal.thread_id": "start",
|
||||
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
|
||||
"failure_signature": "",
|
||||
"internal.retry_count.greet": 0,
|
||||
"internal.run_id": "01KP8PGWZK4T11SJBA3A49SN6Z",
|
||||
"internal.fidelity": "compact",
|
||||
"last_response": "Hello!\n\nTop-level files and directories in this repo:\n\n- AGENTS.md\n- .ai\n- apps\n- bin\n- bun.lock\n- .cargo\n- Cargo.lock\n- Cargo.toml\n- .claude\n- CLAUDE.md\n- clippy.toml\n- .config\n- CONTRIBUTING.md\n- do"
|
||||
},
|
||||
"node_outcomes": {
|
||||
"greet": {
|
||||
"status": "success",
|
||||
"context_updates": {
|
||||
"response.greet": "Hello!\n\nTop-level files and directories in this repo:\n\n- AGENTS.md\n- .ai\n- apps\n- bin\n- bun.lock\n- .cargo\n- Cargo.lock\n- Cargo.toml\n- .claude\n- CLAUDE.md\n- clippy.toml\n- .config\n- CONTRIBUTING.md\n- docker\n- docs\n- docs-internal\n- .env.example\n- evals\n- .fabro\n- files-internal\n- .git\n- .gitattributes\n- .github\n- .gitignore\n- installer\n- install.md\n- install.sh\n- lib\n- LICENSE.md\n- package.json\n- README.md\n- rustfmt.toml\n- scripts\n- test",
|
||||
"last_stage": "greet",
|
||||
"last_response": "Hello!\n\nTop-level files and directories in this repo:\n\n- AGENTS.md\n- .ai\n- apps\n- bin\n- bun.lock\n- .cargo\n- Cargo.lock\n- Cargo.toml\n- .claude\n- CLAUDE.md\n- clippy.toml\n- .config\n- CONTRIBUTING.md\n- do"
|
||||
},
|
||||
"notes": "Stage completed: greet",
|
||||
"usage": {
|
||||
"input": {
|
||||
"usage": {
|
||||
"model": {
|
||||
"provider": "openai",
|
||||
"model_id": "gpt-5.4-mini"
|
||||
},
|
||||
"tokens": {
|
||||
"input_tokens": 9019,
|
||||
"output_tokens": 241,
|
||||
"reasoning_tokens": 142,
|
||||
"cache_read_tokens": 4096,
|
||||
"cache_write_tokens": 0
|
||||
}
|
||||
},
|
||||
"facts": {
|
||||
"provider": "open_ai"
|
||||
}
|
||||
},
|
||||
"total_usd_micros": 8794
|
||||
}
|
||||
},
|
||||
"start": {
|
||||
"status": "success",
|
||||
"usage": null
|
||||
}
|
||||
},
|
||||
"next_node_id": "exit",
|
||||
"node_visits": {
|
||||
"greet": 1,
|
||||
"start": 1
|
||||
}
|
||||
}
|
||||
4
nodes/greet/prompt.md
Normal file
4
nodes/greet/prompt.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Goal: Say hello and demonstrate a basic Fabro workflow
|
||||
|
||||
|
||||
Print a listing of the top-level files and directories in this repo.
|
||||
5
nodes/greet/provider_used.json
Normal file
5
nodes/greet/provider_used.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"mode": "agent",
|
||||
"provider": "openai",
|
||||
"model": "gpt-5.4-mini"
|
||||
}
|
||||
38
nodes/greet/response.md
Normal file
38
nodes/greet/response.md
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
Hello!
|
||||
|
||||
Top-level files and directories in this repo:
|
||||
|
||||
- AGENTS.md
|
||||
- .ai
|
||||
- apps
|
||||
- bin
|
||||
- bun.lock
|
||||
- .cargo
|
||||
- Cargo.lock
|
||||
- Cargo.toml
|
||||
- .claude
|
||||
- CLAUDE.md
|
||||
- clippy.toml
|
||||
- .config
|
||||
- CONTRIBUTING.md
|
||||
- docker
|
||||
- docs
|
||||
- docs-internal
|
||||
- .env.example
|
||||
- evals
|
||||
- .fabro
|
||||
- files-internal
|
||||
- .git
|
||||
- .gitattributes
|
||||
- .github
|
||||
- .gitignore
|
||||
- installer
|
||||
- install.md
|
||||
- install.sh
|
||||
- lib
|
||||
- LICENSE.md
|
||||
- package.json
|
||||
- README.md
|
||||
- rustfmt.toml
|
||||
- scripts
|
||||
- test
|
||||
6
nodes/start/status.json
Normal file
6
nodes/start/status.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"status": "success",
|
||||
"notes": null,
|
||||
"failure_reason": null,
|
||||
"timestamp": "2026-04-15T13:50:44.271390Z"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue