Skip to content

agentop v0.1.0

Choose a tag to compare

@adityachaudhary99 adityachaudhary99 released this 04 Jul 17:06
· 56 commits to main since this release

top, for coding agents — a live terminal dashboard for Claude Code sessions.

  • Observe — live sessions table (state · tools · tokens · $), per-session timeline, global events feed. Reads Claude Code's local transcripts; 100% local, no network.
  • Detect — stalls, thrash (identical tool-call loops), risky actions (`rm -rf`, force-push, `curl | sh`, publish/deploy, secrets access, writes outside the project), and budget caps.
  • Act — pause a session (enforced at its next tool call via an opt-in, fail-open PreToolUse hook) or kill its process (confirm-gated, showing the exact pid + command).

Install

```sh
go install github.com/adityachaudhary99/agentop/cmd/agentop@latest
```

Use

```sh
agentop # live dashboard
agentop stats # one-shot summary
agentop hooks install # opt-in: enable pause/budget enforcement
```

Honest-or-nothing numbers: unknown model pricing shows `~?`, malformed transcript lines are counted, never hidden. MIT.

Prebuilt cross-platform binaries (goreleaser) to follow.