git-parsec 0.1.0

Git worktree lifecycle manager for parallel AI agent workflows with ticket tracker integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod cli;
mod config;
mod conflict;
mod git;
mod github;
mod output;
mod tracker;
mod worktree;

use anyhow::Result;
use clap::Parser;
use cli::Cli;

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();
    cli::run(cli).await
}