mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +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>
35 lines
844 B
TOML
35 lines
844 B
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
pedantic = { level = "warn", priority = -1 }
|
|
nursery = { level = "warn", priority = -1 }
|
|
cargo = { level = "warn", priority = -1 }
|
|
multiple_crate_versions = "allow"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1"
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
rand = "0.8"
|
|
dotenvy = "0.15"
|
|
futures = "0.3"
|
|
tokio-stream = "0.1"
|
|
async-trait = "0.1"
|
|
base64 = "0.22"
|
|
bytes = "1"
|
|
tokio-util = "0.7"
|
|
clap = { version = "4", features = ["derive"] }
|
|
jsonschema = "0.42"
|
|
chrono = "0.4"
|