| Crates.io | agentctl |
| lib.rs | agentctl |
| version | 0.1.0 |
| created_at | 2025-04-30 19:07:18.862558+00 |
| updated_at | 2025-04-30 19:07:18.862558+00 |
| description | Tiny control-plane primitives for AI agents. |
| homepage | https://github.com/agentctl-dev/agentctl |
| repository | https://github.com/agentctl-dev/agentctl |
| max_upload_size | |
| id | 1655352 |
| size | 3,824 |
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.
Add agentctl to your Rust project using Cargo:
cargo add agentctl
use agentctl::Agent;
fn main() {
let agent = Agent::new("example-agent");
agent.start();
println!("Agent '{}' is now running!", agent.name());
}