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

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:

NeedBest candidateGap
Session orchestration + dashboardArbor (Rust) or Overstory (TS/Bun)Arbor has no tmux; Overstory’s TUI is raw ANSI
Persistent agent memoryEngram (Go), OpenViking (Python+Rust), ClawVault (TS)Complementary to orchestration, not replacement
Session analyticsAgentlytics (JS/React)Read-only retrospective, not live
Token optimizationDistill (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.