agentctl 0.1.0

Tiny control-plane primitives for AI agents.
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 3.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 179.6 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AndriiTsok github:agentctl-dev:engineering

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());
}