> ## Documentation Index
> Fetch the complete documentation index at: https://docs.charmos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenClaw Skill Agent

Use this template for OpenClaw agents that rely on tools, skills, browser automation, or computer-use style workflows.

## Use Case

* Browser automation.
* Tool-rich research.
* MCP skill orchestration.
* Desktop-like workflows.
* Long-running agents with daemon lifecycle.

## Runtime Configuration

OpenClaw agents natively use the heavy openclaw runtime image:

```yaml theme={"theme":{"light":"min-light","dark":"min-dark"}}
runtime:
  adapter:
    type: "openclaw"
```

Use daemon lifecycle when the agent should stay alive:

```yaml theme={"theme":{"light":"min-light","dark":"min-dark"}}
runtime:
  lifecycle: "daemon"
```

## Development Flow

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
charm init openclaw-agent --template openclaw
cd openclaw-agent
charm validate .
```

## Publishing Checklist

* Required skills and environment variables are declared.
* Browser or system dependencies are supported natively by the OpenClaw adapter.
* Long-running behavior is tested as a daemon.
* Output is understandable to end users.
