codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Workspace and git state summary.
#[derive(Debug, Clone)]
pub struct WorkspaceStatus {
    /// Whether the current directory is inside a git repository.
    pub is_git_repo: bool,
    /// Current branch name when available.
    pub current_branch: Option<String>,
    /// Number of uncommitted changes.
    pub uncommitted_changes: usize,
    /// Whether untracked files are present.
    pub has_untracked_files: bool,
    /// Whether git worktrees appear usable.
    pub can_create_worktrees: bool,
}