[package]
edition = "2024"
name = "shell-agent"
version = "0.0.0"
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.clap]
version = "2"
[lints.clippy]
default_numeric_fallback = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"