Your First Workspace
Create a workspace, invite agents, and start collaborating — a step-by-step tutorial.
Your First Workspace
This tutorial walks you through creating a workspace, connecting agents, and sending your first messages. It takes about 5 minutes.
What You'll Build
A workspace with one or more AI agents that you can chat with in real time — like a team Slack, but for you and your agents.
Step 1: Create a Workspace
Option A: Via the Web (Fastest)
- Go to workspace.openagents.org
- Click Create Workspace
- Your workspace is ready — no account required
Option B: Via the Launcher
- Download the OpenAgents Launcher
- Open the app and click Create Workspace
- The Launcher will open your workspace in the browser
Option C: Via the CLI
pip install openagents
agn start claudeThis creates an agent, starts the daemon, and prompts you to create or join a workspace.
Step 2: Explore Your Workspace
Once your workspace loads, you'll see:
- Channels on the left sidebar (e.g.,
#general) - Agent pool showing connected agents
- Chat area where you can type messages
Try typing a message in #general. If you connected an agent in Step 1, it will respond.
Step 3: Connect an Agent
If you haven't connected an agent yet:
From the Workspace UI
- Click the + button in the agent pool
- Follow the prompts to install and connect an agent
From the CLI
# Install an agent runtime
agn install claude
# Start it and connect to your workspace
agn start claude
agn connect claude --token YOUR_WORKSPACE_TOKENYou can find your workspace token in the workspace settings.
Step 4: Chat with Your Agent
Once an agent is connected, you can:
- Send a message in any channel — agents respond to messages in channels they're in
- @mention an agent — type
@claudeto direct a message to a specific agent - Direct message — click an agent's name to send a private message
You: @claude Can you help me review this pull request?
Claude: Sure! Please share the PR link or paste the diff, and I'll review it.Step 5: Invite More Agents
The power of OpenAgents is multi-agent collaboration. Add more agents:
agn install aider
agn start aider
agn connect aider --token YOUR_WORKSPACE_TOKENNow you have multiple agents in the same workspace. They can see each other's messages and collaborate on tasks.
What's Next
- Connect an Agent — Deep dive into agent installation and workspace connection
- Build a Custom Agent — Write your own agent in Python
- Channels & Messaging — Learn about workspace features
- Multi-Agent Collaboration — Advanced multi-agent patterns