Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 101 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
tempfile = "3"
unicode-width = "0.2"
rusqlite = { version = "0.40.1", features = ["bundled"] }

[target.'cfg(target_vendor = "apple")'.dependencies]
proc_pidinfo = "0.1"
Expand Down
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,23 @@ tmux new -s work

## Supported Agents

| Feature | Claude Code | Codex CLI | OpenCode |
| ----------------- | :---------: | :-------: | :------: |
| Session Discovery | ✅ | ✅ | ✅ |
| Token Tracking | ✅ | ✅ | ✅ |
| Context Window % | ✅ | ✅ | ❌ |
| Status Detection | ✅ | ✅ | ✅ |
| Current Task | ✅ | ✅ | ❌ |
| Rate Limit | ✅ | ✅ | ❌ |
| Git Status | ✅ | ✅ | ✅ |
| Children / Ports | ✅ | ✅ | ✅ |
| Subagents | ✅ | ❌ | ❌ |
| Memory Status | ✅ | ❌ | ❌ |
| Feature | Claude Code | Codex CLI | OpenCode | Hermes Agent |
| ----------------- | :---------: | :-------: | :------: | :----------: |
| Session Discovery | ✅ | ✅ | ✅ | ✅ |
| Token Tracking | ✅ | ✅ | ✅ | ✅ |
| Context Window % | ✅ | ✅ | ❌ | ✅ |
| Status Detection | ✅ | ✅ | ✅ | ✅ |
| Current Task | ✅ | ✅ | ❌ | ✅ |
| Rate Limit | ✅ | ✅ | ❌ | ❌ |
| Git Status | ✅ | ✅ | ✅ | ✅ |
| Children / Ports | ✅ | ✅ | ✅ | ✅ |
| Subagents | ✅ | ❌ | ❌ | ❌ |
| Memory Status | ✅ | ❌ | ❌ | ❌ |

OpenCode support reads the local SQLite database at `~/.local/share/opencode/opencode.db` (also the default location on Windows; `%LOCALAPPDATA%\opencode` and `%APPDATA%\opencode` are probed as fallbacks) and requires `sqlite3` in `PATH` (on Windows: `winget install SQLite.SQLite`).

Hermes Agent sessions are discovered from the `tui_gateway.slash_worker` processes Hermes spawns per active session, with metadata read read-only from `~/.hermes/state.db` (or `HERMES_HOME/state.db`) via bundled SQLite — no `sqlite3` CLI or Python required on any platform.

## Themes

12 built-in themes, including 4 colorblind-friendly options (`high-contrast`, `protanopia`, `deuteranopia`, `tritanopia`). Press `t` to cycle at runtime, or launch with `--theme <name>`. Your choice is saved to `~/.config/abtop/config.toml`.
Expand Down
Loading
Loading