Skip to content

damianpdr/agent-deck-plus

Repository files navigation

Agent Deck Plus Logo

Agent Deck Plus

Your AI agent command center — with AMP CLI support

Go Version License Platform Based on

What's DifferentFeaturesInstallationQuick StartDocsFAQ


What's Different

This is an enhanced fork of asheshgoplani/agent-deck that adds features not available upstream.

✨ Plus Features

Feature Description
🚀 AMP CLI Support Full integration with Amp — official AI coding agent
🎯 Command Palette Quick command access via Ctrl+P — fuzzy search all actions
📋 Batch Prompts Send the same prompt to multiple sessions at once
🧵 AMP Thread Panel Browse and switch between AMP conversation threads
🔍 Enhanced Detection Improved prompt/busy detection for AMP sessions
⚙️ AMP MCP Support Configure MCP servers for AMP sessions

Upstream Compatibility

This fork stays in sync with upstream releases. Current base: v0.10.5

All upstream features work as expected:

  • Session forking & management
  • MCP socket pooling
  • Claude, Gemini, OpenCode, Codex support
  • Git worktree integration
  • Session sharing

Ask AI about Agent Deck

Option 1: Claude Code Skill (recommended for Claude Code users)

/plugin marketplace add asheshgoplani/agent-deck
/plugin install agent-deck@agent-deck-help

Then ask: "How do I set up MCP pooling?"

Option 2: OpenCode (has built-in Claude skill compatibility)

# Create skill directory
mkdir -p ~/.claude/skills/agent-deck/references

# Download skill and references
curl -sL https://raw.githubusercontent.com/asheshgoplani/agent-deck/main/skills/agent-deck/SKILL.md \
  > ~/.claude/skills/agent-deck/SKILL.md
for f in cli-reference config-reference tui-reference troubleshooting; do
  curl -sL "https://raw.githubusercontent.com/asheshgoplani/agent-deck/main/skills/agent-deck/references/${f}.md" \
    > ~/.claude/skills/agent-deck/references/${f}.md
done

OpenCode will auto-discover the skill from ~/.claude/skills/.

Option 3: Any LLM (ChatGPT, Claude, Gemini, etc.)

Read https://raw.githubusercontent.com/asheshgoplani/agent-deck/main/llms-full.txt
and answer: How do I fork a session?
agent-deck-overview-web.mp4

The Problem

Running Claude Code on 10 projects? OpenCode on 5 more? Another agent somewhere in the background?

Managing multiple AI sessions gets messy fast. Too many terminal tabs. Hard to track what's running, what's waiting, what's done. Switching between projects means hunting through windows.

The Solution

Agent Deck is mission control for your AI coding agents.

One terminal. All your agents. Complete visibility.

  • See everything at a glance — running, waiting, or idle status for every agent instantly
  • Switch in milliseconds — jump between any session with a single keystroke
  • Stay organized — groups, search, notifications, and git worktrees keep everything manageable

Features

Fork Sessions

Try different approaches without losing context. Fork any Claude conversation instantly. Each fork inherits the full conversation history.

  • Press f for quick fork, F to customize name/group
  • Fork your forks to explore as many branches as you need

MCP Manager

Attach MCP servers without touching config files. Need web search? Browser automation? Toggle them on per project or globally. Agent Deck handles the restart automatically.

  • Press M to open, Space to toggle, Tab to cycle scope (LOCAL/GLOBAL)
  • Define your MCPs once in ~/.agent-deck/config.toml, then toggle per session — see Configuration Reference

MCP Socket Pool

Running many sessions? Socket pooling shares MCP processes across all sessions via Unix sockets, reducing MCP memory usage by 85-90%. Connections auto-recover from MCP crashes in ~3 seconds via a reconnecting proxy. Enable with pool_all = true in config.toml.

Search

Press / to fuzzy-search across all sessions. Filter by status with ! (running), @ (waiting), # (idle), $ (error). Press G for global search across all Claude conversations.

Status Detection

Smart polling detects what every agent is doing right now:

Status Symbol What It Means
Running green Agent is actively working
Waiting yellow Needs your input
Idle gray Ready for commands
Error red Something went wrong

Notification Bar

Waiting sessions appear right in your tmux status bar. Press Ctrl+b 1-6 to jump directly to them.

⚡ [1] frontend [2] api [3] backend

Git Worktrees

Multiple agents can work on the same repo without conflicts. Each worktree is an isolated working directory with its own branch.

  • agent-deck add . -c claude --worktree feature/a --new-branch creates a session in a new worktree
  • agent-deck add . --worktree feature/b -b --location subdirectory places the worktree under .worktrees/ inside the repo
  • agent-deck worktree cleanup finds and removes orphaned worktrees

Configure the default worktree location in ~/.agent-deck/config.toml:

[worktree]
default_location = "subdirectory"  # "sibling" (default), "subdirectory", or a custom path

sibling creates worktrees next to the repo (repo-branch). subdirectory creates them inside it (repo/.worktrees/branch). A custom path like ~/worktrees or /tmp/worktrees creates repo-namespaced worktrees at <path>/<repo_name>/<branch>. The --location flag overrides the config per session.

Multi-Tool Support

Agent Deck works with any terminal-based AI tool:

Tool Integration Level
Claude Code Full (status, MCP, fork, resume)
Gemini CLI Full (status, MCP, resume)
OpenCode Status detection, organization
Codex Status detection, organization
Cursor (terminal) Status detection, organization
Custom tools Configurable via [tools.*] in config.toml

Installation

Works on: macOS, Linux, Windows (WSL)

Agent Deck Plus (this fork)

Build from source to get AMP CLI support and Plus features:

git clone https://github.com/damianpdr/agent-deck-plus.git
cd agent-deck-plus
make install

Then run: agent-deck

Install upstream (without Plus features)

If you don't need AMP support, you can install the upstream version:

Quick install

curl -fsSL https://raw.githubusercontent.com/asheshgoplani/agent-deck/main/install.sh | bash

Homebrew

brew install asheshgoplani/tap/agent-deck

Go

go install github.com/asheshgoplani/agent-deck/cmd/agent-deck@latest

Claude Code Skill

Install the agent-deck skill for AI-assisted session management:

/plugin marketplace add asheshgoplani/agent-deck
/plugin install agent-deck@agent-deck
Uninstalling
agent-deck uninstall              # Interactive uninstall
agent-deck uninstall --keep-data  # Remove binary only, keep sessions

See Troubleshooting for full details.

Quick Start

agent-deck                        # Launch TUI
agent-deck add . -c claude        # Add current dir with Claude
agent-deck session fork my-proj   # Fork a Claude session
agent-deck mcp attach my-proj exa # Attach MCP to session

Key Shortcuts

Key Action
Enter Attach to session
n New session
f / F Fork (quick / dialog)
M MCP Manager
/ / G Search / Global search
r Restart session
d Delete
? Full help

See TUI Reference for all shortcuts and CLI Reference for all commands.

Documentation

Guide What's Inside
CLI Reference Commands, flags, scripting examples
Configuration config.toml, MCP setup, custom tools, socket pool
TUI Reference Keyboard shortcuts, status indicators, navigation
Troubleshooting Common issues, debugging, recovery, uninstalling

Additional resources:

Updates

Agent Deck checks for updates automatically. Run agent-deck update to install, or set auto_update = true in config.toml for automatic updates.

FAQ

How is this different from just using tmux?

Agent Deck adds AI-specific intelligence on top of tmux: smart status detection (knows when Claude is thinking vs. waiting), session forking with context inheritance, MCP management, global search across conversations, and organized groups. Think of it as tmux plus AI awareness.

Can I use it on Windows?

Yes, via WSL (Windows Subsystem for Linux). Install WSL, then run the installer inside WSL. WSL2 is recommended for full feature support including MCP socket pooling.

Will it interfere with my existing tmux setup?

No. Agent Deck creates its own tmux sessions with the prefix agentdeck_*. Your existing sessions are untouched. The installer backs up your ~/.tmux.conf before adding optional config, and you can skip it with --skip-tmux-config.

Development

make build    # Build
make test     # Test
make lint     # Lint

See CONTRIBUTING.md for details.

Star History

If Agent Deck saves you time, give us a star! It helps others discover the project.

Star History Chart

License

MIT License — see LICENSE


Built with Bubble Tea and tmux

Docs . Issues . Discussions

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 11