Skip to main content

ai_agent/commands/
agent_platform.rs

1use super::Command;
2
3pub fn create_agents_platform_command() -> Command {
4    Command::local("agents-platform", "Manage agents platform")
5        .argument_hint("[list|create|delete] [<agent-id>]")
6}