Agentic Development Tools
Map of content for tools that support AI-assisted software development workflows — session orchestration, persistent memory, analytics, and utilities.
Surveyed 2026-03-16 from repositories cloned to ~/code/oss/agentic-exploration/.
Categories
- Session Orchestration Tools — manage multiple AI coding agent sessions (spawn, monitor, dashboard)
- Agent Memory and Context Tools — persistent knowledge across sessions (memories, context databases, knowledge graphs)
- Agent Analytics and Utilities — observability, token optimization, code indexing
Decision Context
I run a dual setup:
- Work: many projects in parallel, sandboxed Mac, tmux-based workflows, chezmoi-managed dotfiles
- Home: single laptop, limited tokens, no sandboxing
The custom Go tool ws manages multiple Claude Code sessions in tmux with a Bubbletea TUI dashboard. After extensive debugging of TUI rendering issues (lipgloss/bubbletea glitches with captured pane content), exploring whether to extend an existing tool in Go or Rust rather than maintaining custom TUI code.
Key Findings
No drop-in replacement exists. The landscape splits into:
| Need | Best candidate | Gap |
|---|---|---|
| Session orchestration + dashboard | Arbor (Rust) or Overstory (TS/Bun) | Arbor has no tmux; Overstory’s TUI is raw ANSI |
| Persistent agent memory | Engram (Go), OpenViking (Python+Rust), ClawVault (TS) | Complementary to orchestration, not replacement |
| Session analytics | Agentlytics (JS/React) | Read-only retrospective, not live |
| Token optimization | Distill (TS), jcodemunch-mcp (Python) | Single-purpose utilities |
Arbor is the strongest foundation to extend — Rust, GPUI native UI + web UI, already detects Claude/Codex/Pi/OpenCode, daemon-based PTY management, MCP server. Missing tmux integration but architecturally could add it.
Overstory is the only tool that already uses tmux as its core substrate, but it’s TypeScript/Bun with a raw ANSI dashboard (no framework), and it’s a heavyweight orchestration framework rather than a focused tool.
See also: AI-Assisted Development Frameworks for the prompt/spec-driven workflow layer above these tools.