# Send Openclaw Config to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-config",
    "name": "Openclaw Config",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/caopulan/openclaw-config",
    "canonicalUrl": "https://clawhub.ai/caopulan/openclaw-config",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-config",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-config",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/openclaw-config-fields.md",
      "references/schema-sources.md",
      "scripts/openclaw-config-check.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-config",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T15:09:28.118Z",
      "expiresAt": "2026-05-13T15:09:28.118Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-config",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-config",
        "contentDisposition": "attachment; filename=\"openclaw-config-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-config"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-config"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-config",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-config",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-config/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-config/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-config/agent.md"
  }
}
```
## Documentation

### Overview

Safely edit ~/.openclaw/openclaw.json (or the path set by OPENCLAW_CONFIG_PATH) using a schema-first workflow. Validate before and after changes to avoid invalid keys/types that can break startup or change security behavior.

### Workflow (Safe Edit)

Identify the active config path

Precedence: OPENCLAW_CONFIG_PATH > OPENCLAW_STATE_DIR/openclaw.json > ~/.openclaw/openclaw.json
The config file is JSON5 (comments + trailing commas allowed).

Get an authoritative schema (do not guess keys)

If the Gateway is running: use openclaw gateway call config.schema --params '{}' to fetch a JSON Schema matching the running version.
Otherwise: use openclaw/openclaw source-of-truth, primarily:

src/config/zod-schema.ts (OpenClawSchema root keys like gateway/skills/plugins)
src/config/zod-schema.*.ts (submodules: channels/providers/models/agents/tools)
docs/gateway/configuration.md (repo docs + examples)

Apply changes with the smallest safe surface

Prefer small edits: openclaw config get|set|unset (dot path or bracket notation).
If the Gateway is online and you want "write + validate + restart" in one step: use RPC config.patch (merge patch) or config.apply (replaces the entire config; use carefully).
For complex setups, split config with $include (see below).

Validate strictly

Run openclaw doctor, then fix issues using the reported path + message.
Do not run openclaw doctor --fix/--yes without explicit user consent (it writes to config/state files).

### Guardrails (Avoid Schema Bugs)

Most objects are strict (.strict()): unknown keys usually fail validation and the Gateway will refuse to start.
channels is .passthrough(): extension channels (matrix/zalo/nostr, etc.) can add custom keys, but most provider configs remain strict.
env is .catchall(z.string()): you can put string env vars directly under env, and you can also use env.vars.
Secrets: prefer environment variables/credential files. Avoid committing long-lived tokens/API keys into openclaw.json.

### $include (Modular Config)

$include is resolved before schema validation and lets you split config across JSON5 files:

Supports "$include": "./base.json5" or "$include": ["./a.json5", "./b.json5"]
Relative paths are resolved against the directory of the current config file.
Deep-merge rules (per implementation):

objects: merge recursively
arrays: concatenate (not replace)
primitives: later value wins


If sibling keys exist alongside $include, sibling keys override included values.
Limits: max depth 10; circular includes are detected and rejected.

### Common Recipes (Examples)

Set default workspace

openclaw config set agents.defaults.workspace '"~/.openclaw/workspace"' --json
openclaw doctor

Change Gateway port

openclaw config set gateway.port 18789 --json
openclaw doctor

Split config (example)

// ~/.openclaw/openclaw.json
{
  "$include": ["./gateway.json5", "./channels/telegram.json5"],
}

Telegram open DMs (must explicitly allow senders)

Schema constraint: when dmPolicy="open", allowFrom must include "*".

openclaw config set channels.telegram.dmPolicy '"open"' --json
openclaw config set channels.telegram.allowFrom '["*"]' --json
openclaw doctor

Discord token (config or env fallback)

# Option A: write to config
openclaw config set channels.discord.token '"YOUR_DISCORD_BOT_TOKEN"' --json

# Option B: env var fallback (still recommend a channels.discord section exists)
# export DISCORD_BOT_TOKEN="..."

openclaw doctor

Enable web_search (Brave / Perplexity)

openclaw config set tools.web.search.enabled true --json
openclaw config set tools.web.search.provider '"brave"' --json

# Recommended: provide the key via env var (or write tools.web.search.apiKey)
# export BRAVE_API_KEY="..."

openclaw doctor

### Resources

Load these when you need a field index or source locations:

references/openclaw-config-fields.md (root key index + key field lists with sources)
references/schema-sources.md (how to locate schema + constraints in openclaw repo)
scripts/openclaw-config-check.sh (print config path + run doctor)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: caopulan
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T15:09:28.118Z
- Expires at: 2026-05-13T15:09:28.118Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-config)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-config/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-config/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-config/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-config)