You're the boss, agents are your team. They handle tasks on their own, message e
Find a file
iliya 6aec33ae33 feat: enhance notification and task management features
- Updated notification configuration to separate settings for lead and user inbox messages, improving user control over notifications.
- Enhanced the handling of inbox message notifications to respect individual inbox settings.
- Introduced new IPC methods for managing watched directories, allowing for more granular file monitoring.
- Improved task management by implementing work intervals for task status transitions, ensuring accurate tracking of task progress.
- Added validation for task creation and configuration, ensuring proper input handling for project paths and task properties.
2026-03-02 18:17:57 +02:00
.claude feat: enhance React component data handling and improve task management features 2026-02-25 18:07:03 +02:00
.github refactor: move Docker files to docker/ and CHANGELOG to docs/ 2026-02-27 21:04:11 +02:00
.husky feat: implement inbox locking mechanism and enhance team message handling 2026-02-23 17:33:37 +02:00
bin feat: enhance team message handling and UI components 2026-02-23 17:34:30 +02:00
build Implement auto-update functionality and enhance build configuration 2026-02-11 21:23:40 +09:00
docker refactor: move vite.standalone.config to docker/, remove .nvmrc 2026-02-27 21:07:15 +02:00
docs feat: enhance project editor with new error boundary and file handling improvements 2026-02-28 17:55:21 +02:00
public feat: use agent teams 2026-02-22 23:36:11 +02:00
resources feat: enhance in-app project editor with architecture documentation and service updates 2026-02-28 12:58:20 +02:00
scripts feat: add cost calculation metric 2026-02-22 14:39:20 +05:30
src feat: enhance notification and task management features 2026-03-02 18:17:57 +02:00
test feat: enhance notification and task management features 2026-03-02 18:17:57 +02:00
.gitignore feat: add session cost in session header 2026-02-22 15:44:04 +05:30
.prettierignore Initialize project structure with essential configuration files including .editorconfig, .gitattributes, .gitignore, and TypeScript settings. Add build and linting configurations, along with README, LICENSE, and contribution guidelines. Set up Tailwind CSS and ESLint for styling and code quality. Include initial package.json and pnpm workspace configuration for dependency management. 2026-02-11 15:52:00 +09:00
.prettierrc.json Initialize project structure with essential configuration files including .editorconfig, .gitattributes, .gitignore, and TypeScript settings. Add build and linting configurations, along with README, LICENSE, and contribution guidelines. Set up Tailwind CSS and ESLint for styling and code quality. Include initial package.json and pnpm workspace configuration for dependency management. 2026-02-11 15:52:00 +09:00
CLAUDE.md feat: use agent teams 2026-02-22 23:36:11 +02:00
electron.vite.config.ts feat: enhance in-app project editor with architecture documentation and service updates 2026-02-28 12:58:20 +02:00
eslint.config.js refactor: merge tsconfig.test.json into tsconfig.json 2026-02-27 21:12:08 +02:00
LICENSE feat: implement task comments functionality 2026-02-22 23:36:11 +02:00
package.json feat: enhance notification and task management features 2026-03-02 18:17:57 +02:00
pnpm-lock.yaml feat: enhance notification and task management features 2026-03-02 18:17:57 +02:00
pnpm-workspace.yaml Fix Claude CLI resolution on Windows 2026-02-23 16:49:12 +02:00
postcss.config.cjs Initialize project structure with essential configuration files including .editorconfig, .gitattributes, .gitignore, and TypeScript settings. Add build and linting configurations, along with README, LICENSE, and contribution guidelines. Set up Tailwind CSS and ESLint for styling and code quality. Include initial package.json and pnpm workspace configuration for dependency management. 2026-02-11 15:52:00 +09:00
README.md feat: enhance task management with new file renaming feature and notification settings 2026-03-01 17:52:54 +02:00
tailwind.config.js feat(team-managment): stable MVP 2026-02-21 09:47:24 +02:00
tsconfig.json refactor: merge tsconfig.test.json into tsconfig.json 2026-02-27 21:12:08 +02:00
tsconfig.node.json Initialize project structure with essential configuration files including .editorconfig, .gitattributes, .gitignore, and TypeScript settings. Add build and linting configurations, along with README, LICENSE, and contribution guidelines. Set up Tailwind CSS and ESLint for styling and code quality. Include initial package.json and pnpm workspace configuration for dependency management. 2026-02-11 15:52:00 +09:00
vitest.config.ts feat(team-managment): stable MVP 2026-02-21 09:47:24 +02:00
vitest.critical.config.ts Initialize project structure with essential configuration files including .editorconfig, .gitattributes, .gitignore, and TypeScript settings. Add build and linting configurations, along with README, LICENSE, and contribution guidelines. Set up Tailwind CSS and ESLint for styling and code quality. Include initial package.json and pnpm workspace configuration for dependency management. 2026-02-11 15:52:00 +09:00

Claude Agent Teams UI

Claude Agent Teams UI

You're the CTO, agents are your team. They handle tasks themselves, message each other, review each other's code. You just look at the kanban board and drink coffee.

Latest Release  CI Status

100% free, open source. No API keys. No configuration.


What is this

A new approach to task management with AI agents.

  • Assemble your team — create agent teams with different roles that work autonomously in parallel
  • Agents talk to each other — they communicate, create and manage their own tasks, and leave comments
  • Sit back and watch — tasks change status on the kanban board while agents handle everything on their own
  • Review changes like in Cursor — see what code each task changed, then approve, reject, or comment
  • Full tool visibility — inspect exactly which tools an agent used to complete each task
  • Stay in control — send a direct message to any agent or drop a comment on a task whenever you want to clarify something or add new work

Installation

No prerequisites — Claude Code can be installed and configured directly from the app.

macOS Apple Silicon
macOS Intel
Windows
May trigger SmartScreen — click "More info" → "Run anyway"
Linux AppImage
.deb   .rpm   .pacman

Development

Build from source

Prerequisites: Node.js 20+, pnpm 10+

git clone https://github.com/777genius/claude_agent_teams_ui.git
cd claude_agent_teams_ui
pnpm install
pnpm dev

The app auto-discovers your Claude Code projects from ~/.claude/.

Build for Distribution

pnpm dist:mac:arm64  # macOS Apple Silicon (.dmg)
pnpm dist:mac:x64    # macOS Intel (.dmg)
pnpm dist:win        # Windows (.exe)
pnpm dist:linux      # Linux (AppImage/.deb/.rpm/.pacman)
pnpm dist            # macOS + Windows + Linux

Scripts

Command Description
pnpm dev Development with hot reload
pnpm build Production build
pnpm typecheck TypeScript type checking
pnpm lint:fix Lint and auto-fix
pnpm test Run all tests
pnpm test:watch Watch mode
pnpm test:coverage Coverage report
pnpm check Full quality gate (types + lint + test + build)

TODO

  • Run not only on a local PC but in any headless/console environment (web UI), e.g. VPS, remote server, etc.
  • 2 modes: current (agent teams), and a new mode: regular subagents (no communication between them)

Contributing

See CONTRIBUTING.md for development guidelines. Please read our Code of Conduct.

Security

IPC handlers validate all inputs with strict path containment checks. File reads are constrained to the project root and ~/.claude. Sensitive credential paths are blocked. See SECURITY.md for details.

License

MIT