apm-cli 0.1.10

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

pub fn run(root: &Path, ticket_id: &str, target: &str) -> Result<()> {
    let config = Config::load(root)?;
    let target_opt = if target == "-" { None } else { Some(target) };
    let msg = apm_core::ticket::move_to_epic(root, &config, ticket_id, target_opt)?;
    println!("{msg}");
    Ok(())
}