Ready-made Workspace-as-Kernel configurations for OpenClaw, the personal AI assistant with 250K+ stars.
OpenClaw uses a "Workspace-as-Kernel" pattern where markdown files in ~/.openclaw/workspace/ define how your AI agent behaves, what it knows about itself, and what tools it can use:
- SOUL.md — Personality, tone, behavioral guidelines, and decision-making patterns
- AGENTS.md — Agent definitions and specific capabilities
- TOOLS.md — Available tools, skills, and integrations for execution
- IDENTITY.md — Agent identity, name, role, and branding
- HEARTBEAT.md — Health check, monitoring config, and status endpoints
This repository provides battle-tested templates that you can use immediately or customize for your specific workflows.
Choose a template below, then copy it to your workspace:
cp -r templates/devops-bot/* ~/.openclaw/workspace/
# or
cp -r templates/code-reviewer/* ~/.openclaw/workspace/
# or any other template...Then restart your OpenClaw instance:
openclaw restartTo create your own custom workspace:
- Copy a template that's closest to your use case as a starting point
- Edit
SOUL.mdto define your agent's personality and behavior - Update
AGENTS.mdwith your specific agent capabilities - Modify
TOOLS.mdto add/remove tools your agent will use - Customize
IDENTITY.mdwith your agent's branding - Test incrementally with
openclaw test
A production-focused DevOps engineer agent that excels at infrastructure management.
Best for: Infrastructure teams, Kubernetes operators, cloud engineers, CI/CD automation
Capabilities:
- Container orchestration (Docker, Kubernetes)
- Infrastructure-as-Code (Terraform, CloudFormation)
- Cloud provider CLIs (AWS, GCP, Azure)
- Package managers and deployment tools (Helm, Ansible)
- Health monitoring and log analysis
Agent Personality: Precise, cautious, blast-radius aware. Never runs destructive commands without explicit confirmation. Communicates in clear status updates.
cp -r templates/devops-bot/* ~/.openclaw/workspace/A thorough code review agent that provides constructive, specific feedback.
Best for: Engineering teams, pull request automation, code quality, junior dev mentoring
Capabilities:
- Multi-language code analysis
- Style and linting checks
- Performance optimization detection
- Bug and security pattern recognition
- Actionable improvement suggestions
Agent Personality: Thorough, constructive, never mean-spirited. Focuses on correctness, readability, and performance. Always cites relevant patterns and best practices.
cp -r templates/code-reviewer/* ~/.openclaw/workspace/A warm, proactive general-purpose assistant for daily productivity.
Best for: Individual professionals, productivity automation, context management, scheduling
Capabilities:
- Calendar and scheduling management
- Email triage and prioritization
- Note-taking and knowledge capture
- Task management and reminders
- Web research and information gathering
Agent Personality: Warm, proactive, contextually aware. Asks clarifying questions before taking actions. Remembers context across conversations.
cp -r templates/personal-assistant/* ~/.openclaw/workspace/A security-focused agent designed for threat detection and vulnerability assessment.
Best for: Security teams, DevSecOps, compliance audits, vulnerability scanning
Capabilities:
- Vulnerability scanning and assessment
- Configuration auditing
- Secret detection and prevention
- Dependency analysis
- Severity classification and reporting
Agent Personality: Paranoid by design, assumes hostile environments. Reports findings with clear severity levels (Critical/High/Medium/Low). Never dismisses warnings.
cp -r templates/security-auditor/* ~/.openclaw/workspace/workspace-templates/
├── README.md
├── README.zh.md
├── LICENSE
├── CHANGELOG.md
└── templates/
├── devops-bot/
│ ├── SOUL.md
│ ├── AGENTS.md
│ ├── TOOLS.md
│ ├── IDENTITY.md
│ └── HEARTBEAT.md
├── code-reviewer/
│ ├── SOUL.md
│ ├── AGENTS.md
│ ├── TOOLS.md
│ ├── IDENTITY.md
│ └── HEARTBEAT.md
├── personal-assistant/
│ ├── SOUL.md
│ ├── AGENTS.md
│ ├── TOOLS.md
│ ├── IDENTITY.md
│ └── HEARTBEAT.md
└── security-auditor/
├── SOUL.md
├── AGENTS.md
├── TOOLS.md
├── IDENTITY.md
└── HEARTBEAT.md
Defines the core personality and decision-making behavior of your agent. This is the most important file—it determines how your agent thinks, prioritizes decisions, handles edge cases, and communicates.
Example topics in a SOUL.md:
- Core personality traits and tone
- Decision-making frameworks and priorities
- Error handling and recovery strategies
- Communication style and responsiveness
- Risk aversion and safety considerations
- Context management and memory patterns
Declares the agent's specific capabilities and operational scope. This file defines what the agent is an expert at and where it can contribute.
Example sections:
- Agent name and expertise areas
- Specific capabilities and specializations
- Known limitations and disclaimers
- Collaboration patterns with other agents
- Success metrics and performance goals
Lists all available tools and integrations the agent can invoke. Each tool includes when and how the agent should use it.
Example format:
## Docker
- **Purpose:** Container building, running, debugging
- **When to use:** Building images, deploying containers, debugging runtime issues
- **Risk level:** High (can modify system state)Branding and identity information for the agent. Includes name, role, avatar description, and contact information.
Health check configuration, monitoring setup, and status reporting endpoints.
We welcome contributions! Here's how:
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-template) - Add your template following the structure above
- Test thoroughly with your use case
- Submit a PR with description of when/why your template is useful
- Templates should be self-contained and work immediately after copying
- SOUL.md should be detailed (30-50 lines minimum) with concrete behavior guidelines
- TOOLS.md should list tools relevant to the agent's domain
- Include a HEARTBEAT.md even if minimal
- Test the template in a real OpenClaw instance before submitting
- Add your template to the README.md with a clear description
All workspace templates are licensed under the MIT License. See LICENSE for details.
Copyright (c) 2026 effectorHQ Contributors
- Documentation: OpenClaw Docs
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Main Project: OpenClaw Repository
These templates are maintained by the effectorHQ community and inspired by production deployments of OpenClaw across DevOps teams, engineering organizations, and security teams worldwide.