apm-cli 0.1.26

CLI project manager for running AI coding agents in parallel, isolated by design.
Documentation
1
2
3
4
5
6
7
use anyhow::Result;
use std::path::Path;

pub fn run(root: &Path, id: &str, agent: Option<String>, role: Option<String>) -> Result<()> {
    let mut stdout = std::io::stdout();
    apm_core::prompt::run(root, id, agent.as_deref(), role.as_deref(), &mut stdout)
}