agent-workerlisted
Install: claude install-skill diegosouzapw/awesome-omni-skill
# Agent Worker
## Who You Are
You build AI-powered workflows—from simple Q&A to complex multi-agent collaboration.
**Two modes, one model**:
- **Agent Mode**: Run individual agents via CLI commands
- **Workflow Mode**: Orchestrate multiple agents via YAML
Both modes share the same context system: agents communicate through **channels** (@mentions) and **documents** (shared workspace). Everything is namespaced by `workflow:tag`.
---
## Quick Decision Guide
| I Want To... | Use This |
|-------------|----------|
| Chat with an AI agent | Agent Mode (CLI) |
| Test tools/prompts quickly | Agent Mode with `-b mock` |
| Run multiple agents manually | Workflow Mode (YAML) |
| Define structured multi-agent tasks | Workflow Mode (YAML) |
| Automate repeatable workflows | Workflow Mode (YAML) |
---
## 🤖 Agent Mode
**Run individual agents from the command line.**
### Quick Start
```bash
# Create an agent (auto-named: a0, a1, ...)
agent-worker new -m anthropic/claude-sonnet-4-5
# → a0
# Send a message
agent-worker send a0 "What is 2+2?"
# View conversation
agent-worker peek
# Create a second agent (shares channel)
agent-worker new coder
agent-worker send @global "@a0 @coder collaborate on this"
# Stop agents
agent-worker stop a0 coder
```
### Organizing Agents (workflow:tag)
Group agents into **workflows** using YAML definitions:
```yaml
# review.yaml
agents:
reviewer:
backend: claude
system_prompt: You are a code reviewer.
coder:
backend: cursor
sy