cli-agents 0.2.14

Build agentic apps over users' existing AI subscriptions (Claude, Codex, Gemini)
Documentation
[package]
name = "cli-agents"
version = "0.2.14"
edition = "2024"
rust-version = "1.85"
description = "Build agentic apps over users' existing AI subscriptions (Claude, Codex, Gemini)"
license = "MIT"
readme = "README.md"
keywords = ["ai", "cli", "claude", "codex", "gemini"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Suresh Koppisetty"]
repository = "https://github.com/skoppisetty/cli-agents-rs"
homepage = "https://github.com/skoppisetty/cli-agents-rs"

[dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "process", "io-util", "sync", "macros", "fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tracing = "0.1"
tokio-util = "0.7"
tempfile = "3"
clap = { version = "4", features = ["derive"], optional = true }
toml = "1.1"

# Cross-platform binary discovery. Replaces a `Command::new("which")`
# shell-out that does not exist on Windows — and, more importantly, applies
# PATHEXT there, so an npm-installed `claude` resolves to `claude.cmd` rather
# than the extensionless bash shim npm also writes, which Windows cannot run.
which = "8"

# Home directory, resolved per-platform. `std::env::var("HOME")` is empty on
# Windows, where the variable is USERPROFILE. This is the crate cargo itself
# uses.
home = "0.5"
process-wrap = { version = "8.2.1", features = ["tokio1"] }

# NO `libc`. The only thing it was used for was `setpgid`/`killpg` in
# `adapters/mod.rs`, which `process-wrap` now does on both platforms.

[features]
default = []
cli = ["clap", "tokio/signal"]

[[bin]]
name = "cli-agents"
required-features = ["cli"]

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }