Getting Started
This guide walks you through creating your first agentic team, hiring a member, and launching it. Familiarity with Git, GitHub, and command-line tools is assumed.
Note
This guide uses the scrum profile as an example. The commands and workflow are the same for any profile — only the profile name and available roles differ. See Profiles for available profiles.
Prerequisites
Install the following tools before proceeding:
| Tool | Purpose |
|---|---|
| bm CLI | Team management CLI (cargo install --path crates/bm) |
| Ralph orchestrator | Agent orchestration runtime |
| gh CLI | GitHub CLI for issue coordination |
| Git | Version control |
Create a team
Run the interactive wizard:
The wizard prompts you for:
- Workzone directory — where teams live (default:
~/.botminter/workspaces) - Team name — identifier for your team (e.g.,
my-team) - Profile — team methodology (e.g.,
scrum,scrum-compact,scrum-compact-telegram) - GitHub integration — auto-detects your
GH_TOKENorgh authsession, validates the token, then lets you browse orgs and select or create a repo interactively - Telegram bot token — optional, for Human-in-the-Loop notifications (required for
scrum-compact-telegram, optional for others) - Members and projects — optionally hire members and select project repos from the same org
bm init extracts the selected profile into a new team repo, creates the GitHub remote, bootstraps labels and a GitHub Project board, and registers the team in your config. If any GitHub operation fails, the wizard stops with actionable error messages showing the exact gh commands to run manually.
What gets created
workzone/
my-team/
team/ # Team repo (control plane, git repo)
PROCESS.md # Issue format, labels, communication protocols
CLAUDE.md # Team-wide agent context
knowledge/ # Team-level knowledge files
invariants/ # Team-level quality rules
agent/
skills/ # Shared agent skills (gh CLI wrapper)
team/ # Member configurations (empty until hire)
Hire a team member
Add a member role to the team:
This extracts the human-assistant member skeleton from the embedded profile into team/human-assistant/, including its Ralph config, prompts, knowledge, and invariants.
You can optionally provide a name:
Push to GitHub
If you didn't create a GitHub repo during bm init, push the team repo manually — members coordinate through GitHub issues:
Provision workspaces
Create workspaces for all hired members:
This creates a workspace per member × project, cloning the project repo, embedding the team repo as .botminter/, and surfacing configuration files (PROMPT.md, CLAUDE.md, ralph.yml).
Use --push to push the team repo before syncing:
Launch
Start all members:
Check status:
The workspace layout after sync and start:
workzone/
my-team/ # Team directory
team/ # Team repo (control plane)
team/human-assistant/ # Member config
human-assistant/ # Member workspace
.botminter/ # Team repo clone
PROMPT.md → .botminter/... # Symlinked from team repo
CLAUDE.md → .botminter/... # Symlinked from team repo
ralph.yml # Copied from team repo
Next steps
- Read The Agentic Workflow to see what day-to-day life looks like with a running team
- Read Architecture to understand the profile-based generation model
- Learn about the Coordination Model and pull-based work discovery
- See CLI Reference for all available
bmcommands - Check the Roadmap for current milestone status