Get a working AI agent running in under 5 minutes. No account needed.
- Node.js v18+
- A Telegram bot token (create one here)
- An API key from Anthropic or OpenAI
git clone https://github.com/mergisi/awesome-openclaw-agents.git
cd awesome-openclaw-agents/quickstartnpm installcp .env.example .envEdit .env and add your keys:
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
ANTHROPIC_API_KEY=your_anthropic_key
AGENT_NAME=MyAgent
Copy any agent template from the agents/ folder:
# Example: use the content writer agent
cp ../agents/marketing/echo/SOUL.md ./SOUL.mdOr write your own. The SOUL.md defines your agent's personality, skills, and rules.
node bot.jsOpen Telegram, find your bot, and send a message. Your agent is live.
| File | Purpose |
|---|---|
bot.js |
Minimal Telegram bot that reads SOUL.md and responds |
.env.example |
Environment variables template |
package.json |
Node.js dependencies |
SOUL.md |
Your agent's personality (copy from templates) |
docker-compose.yml |
Optional: run with Docker |
docker-compose up -d- Browse 50+ agent templates for different roles
- Customize your SOUL.md to fit your needs
- Deploy to production with CrewClaw ($9 one-time)
- Add heartbeats, integrations, and multi-agent setups