mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-21 00:21:27 +00:00
Close spec compliance gaps: - Add user_instructions to SessionConfig and ProviderProfile trait (spec Section 6.1 layer 5) - Populate EnvContext with git branch, date, model name during Session::initialize() - Expand all three profile system prompts with identity, tool guidance, coding practices - Implement provider_options: Anthropic beta headers, OpenAI reasoning effort, Gemini safety settings - Add register_subagent_tools() to all profiles for spawn_agent/send_input/wait/close_agent - Add list_dir tool to Gemini profile (spec Section 3.6) - Add chrono dependency for date formatting 20 new tests (170 → 190), all passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
772 B
TOML
31 lines
772 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
|
|
chrono.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
|
|
[lints]
|
|
workspace = true
|