[package]
edition = "2024"
name = "shell-agent"
version = "0.0.2"
authors = ["Stephan Boyer <stephan@stephanboyer.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple AI agent that only knows how to run shell commands."
homepage = "https://github.com/stepchowfun/shell-agent"
documentation = "https://github.com/stepchowfun/shell-agent"
readme = "README.md"
license = "MIT"
repository = "https://github.com/stepchowfun/shell-agent"
[[bin]]
name = "shell-agent"
path = "src/main.rs"
[dependencies.async-openai]
version = "0.33"
features = ["full"]
[dependencies.clap]
version = "2"
[dependencies.colored]
version = "2"
[dependencies.futures]
version = "0.3"
[dependencies.rustyline]
version = "17"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[lints.clippy]
default_numeric_fallback = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"