1 unstable release
Uses new Rust 2024
new 0.1.0 | Apr 30, 2025 |
---|
#544 in Asynchronous
3KB
agentctl: minimal control-plane primitives for AI agents.
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:
cargo add agentctl
Minimal Example
use agentctl::Agent;
fn main() {
let agent = Agent::new("example-agent");
agent.start();
println!("Agent '{}' is now running!", agent.name());
}