agentflow-cli 0.1.2

Git worktree workflow manager with AI agent task monitoring, Kanban board, and terminal UI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::ui::{self, colors, icons};
use anyhow::Result;
use crossterm::style::Stylize;

pub fn run() -> Result<()> {
    println!(
        "{} {}",
        icons::SYNC.with(colors::CYAN),
        "Syncing state across machines..."
            .bold()
            .with(colors::WHITE)
    );

    flow_sync::sync_state()?;

    ui::print_success("State synced successfully");
    Ok(())
}