Skip to content
Draft
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
9 changes: 7 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ labels: bug
---

**Environment**
- OS: <!-- macOS / Linux -->
- OS: <!-- macOS / Linux / Windows, including version -->
- abtop version: <!-- `abtop --version` -->
- Claude Code version: <!-- `claude --version` -->
- Affected agent: <!-- Claude Code / Codex CLI / OpenCode / Grok / Kimi Code -->
- Agent version: <!-- e.g. `claude --version`, `codex --version`, `opencode --version`, `grok --version`, or `kimi --version` -->
- Agent data home, if customized: <!-- e.g. CLAUDE_CONFIG_DIR, GROK_HOME, or KIMI_CODE_HOME; omit sensitive values -->
- Terminal: <!-- e.g. iTerm2, Alacritty, tmux -->

**Describe the bug**
Expand All @@ -26,3 +28,6 @@ labels: bug

**Screenshots**
<!-- If applicable, add screenshots or terminal output. -->

**Diagnostic output**
<!-- If safe, include `abtop --once` output and, for Codex integration issues, `abtop --codex-integration-status`. Redact project names, paths, commands, and other sensitive data before posting. -->
866 changes: 749 additions & 117 deletions AGENTS.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# abtop

Claude-specific instructions are kept in [AGENTS.md](./AGENTS.md).
@AGENTS.md
163 changes: 155 additions & 8 deletions Cargo.lock

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

10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abtop"
version = "0.5.3"
version = "0.6.0"
edition = "2021"
rust-version = "1.88"
description = "AI agent monitor for your terminal"
Expand All @@ -11,7 +11,7 @@ keywords = ["tui", "monitor", "claude", "ai", "agent"]
categories = ["command-line-utilities"]
readme = "README.md"
authors = ["Tae Hwan Jung <nlkey2022@gmail.com>"]
exclude = ["assets/*", "assets/**/*"]
exclude = ["assets/*", "assets/**/*", ".omo", ".omo/**/*"]

[dependencies]
ratatui = "0.29"
Expand All @@ -22,14 +22,18 @@ dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
tempfile = "3"
unicode-width = "0.2"
toml = "1.1.4"
getrandom = { version = "0.3", features = ["std"] }
sha2 = "0.10"

[target.'cfg(target_vendor = "apple")'.dependencies]
proc_pidinfo = "0.1"

[target.'cfg(target_os = "windows")'.dependencies]
sysinfo = "0.32"
windows-sys = { version = "0.61", features = ["Wdk_Foundation", "Wdk_Storage_FileSystem", "Wdk_System_SystemServices", "Win32_Foundation", "Win32_NetworkManagement_IpHelper", "Win32_Networking_WinSock", "Win32_Security", "Win32_Security_Authorization", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_Diagnostics_ToolHelp", "Win32_System_IO", "Win32_System_JobObjects", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming"] }

[target.'cfg(target_os = "linux")'.dependencies]
[target.'cfg(unix)'.dependencies]
libc = "0.2"

# The profile that 'dist' will build with
Expand Down
Loading