[package]
edition = "2021"
name = "agent-status"
version = "1.0.2"
authors = ["Paul van der Meijs <vandermeijs@redkiwi.nl>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tmux-integrated indicator showing which AI coding agent sessions are waiting on user input."
homepage = "https://github.com/paulvandermeijs/agent-status"
documentation = "https://docs.rs/agent-status"
readme = "README.md"
keywords = [
"tmux",
"ai-agent",
"claude-code",
"status-bar",
"hook",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/paulvandermeijs/agent-status"
[lib]
name = "agent_status"
path = "src/lib.rs"
[[bin]]
name = "agent-status"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.nonstandard_style]
level = "deny"
priority = -1