[package]
edition = "2024"
rust-version = "1.95"
name = "talos-agent"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core orchestration logic and the agent turn loop"
homepage = "https://github.com/wjhuang88/talos"
readme = false
license = "Apache-2.0"
repository = "https://github.com/wjhuang88/talos"
[lib]
name = "talos_agent"
path = "src/lib.rs"
[[test]]
name = "i169_crash_replay"
path = "tests/i169_crash_replay.rs"
[[test]]
name = "i169_durable_custody"
path = "tests/i169_durable_custody.rs"
[[test]]
name = "i169_generation_boundary"
path = "tests/i169_generation_boundary.rs"
[[test]]
name = "i169_old_generation_reconcile"
path = "tests/i169_old_generation_reconcile.rs"
[[test]]
name = "i169_request_plan_source"
path = "tests/i169_request_plan_source.rs"
[[test]]
name = "i169_stress"
path = "tests/i169_stress.rs"
[[test]]
name = "i169_targeted_interrupt"
path = "tests/i169_targeted_interrupt.rs"
[[test]]
name = "i169_terminal_outcome_recovery"
path = "tests/i169_terminal_outcome_recovery.rs"
[[test]]
name = "i169_transcript_journal_fault"
path = "tests/i169_transcript_journal_fault.rs"
[[test]]
name = "i177_source_layout"
path = "tests/i177_source_layout.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.serde_json]
version = "1"
[dependencies.talos-core]
version = "0.8.0"
[dependencies.talos-memory]
version = "0.8.0"
[dependencies.talos-permission]
version = "0.8.0"
[dependencies.talos-plugin]
version = "0.8.0"
[dependencies.talos-sandbox]
version = "0.8.0"
[dependencies.talos-session]
version = "0.8.0"
[dependencies.talos-skill]
version = "0.8.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"rt-multi-thread",
"time",
"process",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"test-util",
"macros",
"rt",
]
[lints.clippy]
unwrap_used = "warn"