Adds harness-core::agent, an agent registry loading bundled markdown agent definitions (designer, explorer, fixer, librarian, oracle, orchestrator) with override support.
30 lines
746 B
TOML
30 lines
746 B
TOML
[package]
|
|
name = "harness-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml_ng = { workspace = true }
|
|
schemars = { workspace = true }
|
|
rusqlite = { workspace = true }
|
|
globset = { workspace = true }
|
|
jsonc-parser = { workspace = true }
|
|
dirs = { workspace = true }
|
|
ulid = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
tempfile = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|