🦞ClawSetups.dev
Back to Gallery

Discord Dev Team

sarahcodessarahcodes·2026-01-20
342

Multi-agent setup for a dev team Discord server. Main agent handles general questions, coding agent reviews PRs and helps debug. GitHub skill for repo integration.

discordclaude-sonnet-4Developer Tools
githubcode_reviewweb_searchjira

Configuration

{
  "version": "1.0",
  "name": "Dev Team Bot",
  "channels": [
    {
      "type": "discord",
      "token": "***REDACTED***",
      "guild_id": "***REDACTED***"
    }
  ],
  "agents": [
    {
      "name": "main",
      "model": "anthropic/claude-sonnet-4",
      "skills": [
        "web_search",
        "jira"
      ],
      "system_prompt": "You are a dev team assistant. Help with general questions, documentation lookups, and team coordination."
    },
    {
      "name": "coder",
      "model": "anthropic/claude-sonnet-4",
      "skills": [
        "github",
        "code_review"
      ],
      "system_prompt": "You are a senior code reviewer. Review PRs, help debug issues, and suggest improvements. Always explain your reasoning.",
      "triggers": [
        "!review",
        "!debug",
        "!code"
      ]
    }
  ]
}

Workspace files

SOUL.md
# Dev Team Assistant

You serve a software development team. Be technical, precise, and reference documentation when possible. Use code blocks for any code snippets.
AGENTS.md
# Agent Routing

- **main**: General questions, docs, coordination
- **coder**: Triggered by !review, !debug, !code — handles all code-related tasks

Apply this setup

Copy workspace files directly into your OpenClaw workspace.

Workspace files

SOUL.md
AGENTS.md
Apply the "Discord Dev Team" setup from claw-setups.vercel.app/setups/discord-dev-team. Read my SOUL.md and AGENTS.md to fill in the details.
View agent instructions ↓
To apply this setup:
1. Read the user's existing workspace files (SOUL.md, AGENTS.md, USER.md).
2. Identify all {{PLACEHOLDER}} tokens in the workspace files below.
3. Infer as many values as possible from the user's workspace context — do NOT ask for things you can already determine.
4. Only ask the user about values you cannot infer.
5. Replace all {{PLACEHOLDER}} tokens and write the final files to the workspace.
6. Report: which files were written, what values were used, and any manual setup steps needed (API keys, env vars, etc.).

One-line install

curl -fsSL https://claw-setups.vercel.app/api/setups/discord-dev-team/install | bash

Creates workspace, registers agent, restarts gateway automatically.

CLI coming: openclaw setup apply discord-dev-team