Show HN: tmux 스타일의 분할 창을 지원하는 Claude 세션 관리 도구

hackernews | | 📦 오픈소스
#ai 딜 #claude #tmux #개발 도구 #세션 관리
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

여러 개의 Claude Code 에이전트를 동시에 실행하여 하나의 레포지토리에서 작업할 수 있는 데스크톱 애플리케이션이 공개되었습니다. 이 도구는 에이전트 간의 충돌을 방지하기 위해 각 작업에 독립적인 git worktree와 브랜치를 부여하며, tmux 스타일의 분할 화면을 통해 최대 10개의 에이전트를 실시간으로 모니터링할 수 있습니다. 또한 Electron과 React 19 등으로 구축된 이 앱은 세션을 디스크에 저장해 종료 후에도 대화 기록을 유지하고, 이어서 작업을 재개할 수 있는 편의성을 제공합니다.

본문

A desktop app for running multiple Claude Code agents on the same repo at the same time. Sometimes you want multiple Claude Code agents working on different parts of a codebase at the same time. The problem is they'll step on each other if they're all editing the same files in the same directory. Orchestrator solves this by giving each agent its own git worktree and branch. You can see what all of them are doing, send them follow-up messages, and come back later to pick up where you left off. Each agent gets an isolated copy of the repo via git worktree . You can have up to 10 running at once. The interface is split into panes (like tmux) so you can watch several agents work side by side. Every tool call, file edit, and token count shows up in real time. Sessions are saved to disk, so if you close the app and come back, your agents resume with their full conversation history intact. You'll need Node 18+ and the Claude Code CLI installed and authenticated. git clone https://github.com/MatchaOnMuffins/orchestrator.git cd orchestrator npm install npm run dev:electron The app will open and ask you to pick a git repo. From there, click "+ New" to create an agent, type what you want it to do, and it'll start working. Electron, React 19, Zustand, Tailwind CSS, Vite, and TypeScript.

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →