worktrunk 0.60.0

A CLI for Git worktree management, designed for parallel AI agent workflows
Documentation
1
2
3
4
5
6
7
8
use std::error::Error;
use vergen_gitcl::{Emitter, Gitcl};

pub fn main() -> Result<(), Box<dyn Error>> {
    let git = Gitcl::builder().describe(true, true, None).build();
    Emitter::default().add_instructions(&git)?.emit()?;
    Ok(())
}