# AgentCTL
AgentCTL is a lightweight and efficient command-line tool designed to simplify the management and interaction with agents in distributed systems. It provides a user-friendly interface for developers to configure, monitor, and control agents, making it an essential tool for streamlining workflows in complex environments.
## Installation
Add `agentctl` to your Rust project using Cargo:
```bash
cargo add agentctl
```
## Minimal Example
```rust
use agentctl::Agent;
fn main() {
let agent = Agent::new("example-agent");
agent.start();
println!("Agent '{}' is now running!", agent.name());
}
```