git-workflow 0.4.1

Git guardrails for AI coding agents - safe git workflows with clear state feedback
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! git-workflow - Git workflow CLI
//!
//! Type-safe worktree-aware git operations with compile-time protection
//! for protected branches.

pub mod cli;
pub mod commands;
pub mod error;
pub mod git;
pub mod github;
pub mod output;
pub mod pool;
pub mod state;

pub use error::{GwError, Result};