Teams
Teams are the core organizational unit in Operum. Each team has its own set of agents, working directory, and configuration.
What is a Team?
A team represents a project or product you're working on. It includes:
- Working Directory - Where agent files and context are stored
- Agents - The AI agents assigned to work on this project
- GitHub Repository - Optional connected repo for code operations
- Templates - CLAUDE.md configurations for each agent
Creating a Team
- Click "Create Team" in the sidebar
- Enter a name for your team
- Select a working directory on your machine
- Optionally connect a GitHub repository
- Click "Create"
Teams are stored in ~/.config/operum/teams/ or in your repo directory:
~/.config/operum/teams/my-team/
├── pm/
│ └── agent.md # Your customizations
├── architect/
│ └── agent.md
├── engineer/
│ └── agent.md
├── tester/
│ └── agent.md
├── marketing/
│ └── agent.md
├── community/
│ └── agent.md
└── shared/
├── triggers/ # Agent task triggers
├── responses/ # Agent responses
└── knowledge/ # Project knowledge base Note: CLAUDE.md files are generated at runtime from system templates + your agent.md customizations. See Templates for details.
Team Limits
The number of teams you can create depends on your subscription:
| Plan | Teams | Agents |
|---|---|---|
| Free Trial | 1 | 6 |
| Standard ($49/mo) | 1 | 6 |
| Premium ($99/mo) | 5 | 6 |
| Unlimited ($149/mo) | Unlimited | Unlimited |
| Cloud Pro ($249/mo) | Unlimited | Unlimited |
Switching Teams
Use the team switcher in the top-left corner of the app to switch between teams. Each team maintains its own state, so you can context-switch between projects easily.
Deleting a Team
To delete a team:
- Open team settings
- Scroll to the bottom
- Click "Delete Team"
- Confirm the deletion
Warning: Deleting a team removes it from Operum but does not delete files from your working directory. Agent files and context will remain on disk.
Best Practices
- One team per project - Keep teams focused on a single product or codebase
- Use descriptive names - Make it easy to identify teams at a glance
- Connect GitHub early - Agents work better with repository access
- Customize templates - Tailor agent behavior to your project's needs