mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +00:00
- Abort now transitions to CLOSED state and returns Err(Aborted) - Closed sessions no longer emit SessionStart before rejecting input - Add set_reasoning_effort() for mid-session reasoning effort changes - Fix spawn_agent truncation limit from 30k to spec-required 20k - Add JSON Schema validation of tool arguments before execution Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
748 B
TOML
30 lines
748 B
TOML
[package]
|
|
name = "coding-agent-loop"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "A programmable agentic loop for coding agents"
|
|
repository = "https://github.com/brynary/attractor-rust"
|
|
readme = "README.md"
|
|
keywords = ["llm", "ai", "agent", "coding"]
|
|
categories = ["api-bindings"]
|
|
|
|
[dependencies]
|
|
unified-llm = { path = "../unified-llm" }
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
futures.workspace = true
|
|
async-trait.workspace = true
|
|
jsonschema.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
|
|
[lints]
|
|
workspace = true
|