githubclaw 0.2.2

Near-autonomous AI agents that manage open-source projects end-to-end using GitHub as the single source of truth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! GithubClaw TUI — SuperLightTUI-based terminal dashboard.
//!
//! Two tabs:
//! - Issue Request: Issues awaiting interactive session + embedded Claude Code session
//! - Monitoring: Active agents, rate limit status, session detail with agent timeline

pub mod app;
pub mod event;
pub mod pty;
pub mod startup;
pub mod summary;
pub mod tabs;
pub mod ui;

pub use app::App;