Skip to content

4-Agent Setup in 5 Minuten

Unser bewährtes Setup mit 4 spezialisierten KI-Agenten:

AgentRoleTemperatureFocus
Claude-1System Architect0.3Design, Architecture, ADRs
Claude-2Code Reviewer0.1Quality, Security, Best Practices
Aider-1Main Developer0.5Implementation, Features
Aider-2Parallel Dev0.5Tests, Refactoring, Docs
  • Linux/macOS (Windows mit WSL2)
  • Python 3.10+
  • tmux (apt install tmux)
  • API Keys (Claude oder OpenAI)
Terminal window
pip install collective-context-commander
Terminal window
export ANTHROPIC_API_KEY="sk-ant-..."
export OPENAI_API_KEY="sk-..."
Terminal window
# Automated setup
ccc tmux init --agents 4
# Or manual:
tmux new-session -d -s cc
tmux split-window -h
tmux split-window -v
tmux select-pane -t 0
tmux split-window -v
tmux attach-session -t cc

Pane 0 - Claude-1:

Terminal window
ccc agent start claude-1 --role architect --temperature 0.3

Pane 1 - Claude-2:

Terminal window
ccc agent start claude-2 --role reviewer --temperature 0.1

Pane 2 - Aider-1:

Terminal window
aider --model gpt-4 --auto-commits --yes

Pane 3 - Aider-2:

Terminal window
aider --model gpt-4 --test-cmd pytest --yes
Terminal window
# Initialize project context
ccc context init "Building next-gen e-commerce platform"
# Sync to all agents
ccc context sync --all
CommandAction
Ctrl-b →/←/↑/↓Navigate panes
Ctrl-b zZoom pane
Ctrl-b dDetach
tmux attachReattach

Mit diesem Setup erreichst du:

  • 4x Development Speed
  • 80%+ Test Coverage
  • 50% weniger Bugs
  • $50-100 pro Projekt (API Kosten)

← Back to Home | Tmux Workflows →