[package]
edition = "2024"
rust-version = "1.85"
name = "atd-cli"
version = "1.1.0"
authors = ["ATD Protocol Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference command-line client for the Agent Tool Dispatch (ATD) protocol."
readme = "README.md"
keywords = [
"atd",
"cli",
"agent",
"tool-dispatch",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/downsea/atd"
resolver = "2"
[lib]
name = "atd_cli"
path = "src/lib.rs"
[[bin]]
name = "atd"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "skills_sync"
path = "tests/skills_sync.rs"
[dependencies.atd-protocol]
version = "1.1.0"
[dependencies.atd-sdk]
version = "1.1.0"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"net",
"io-util",
"rt-multi-thread",
"macros",
"sync",
"time",
"process",
"fs",
]
[dev-dependencies.tempfile]
version = "3"