# Send OpenClaw Config Field Validator 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "config-field",
    "name": "OpenClaw Config Field Validator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/RedContritio/config-field",
    "canonicalUrl": "https://clawhub.ai/RedContritio/config-field",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/config-field",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-field",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/schema-fields.md",
      "scripts/field_info.py",
      "scripts/generate_fields.py",
      "scripts/schema.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "config-field",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T11:05:33.745Z",
      "expiresAt": "2026-05-13T11:05:33.745Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-field",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-field",
        "contentDisposition": "attachment; filename=\"config-field-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "config-field"
      },
      "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/config-field"
    },
    "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/config-field",
    "downloadUrl": "https://openagent3.xyz/downloads/config-field",
    "agentUrl": "https://openagent3.xyz/skills/config-field/agent",
    "manifestUrl": "https://openagent3.xyz/skills/config-field/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/config-field/agent.md"
  }
}
```
## Documentation

### Config Field Validator

Validate OpenClaw configuration fields against the official Zod schema.

### When to Use This Skill

Before editing configurations - Verify a field exists before adding it
Debugging config errors - Check if invalid fields are causing issues
Migrating configs - Validate fields after version upgrades
Reviewing configs - Ensure all fields are schema-compliant

### How It Works

This skill automatically manages schema synchronization:

Check Version - Detects local OpenClaw version
Sync Schema - Downloads matching schema from GitHub if needed
Generate Fields - Parses Zod schema to extract field definitions
Validate - Uses generated schema to validate configuration

### Quick Start

# Validate a single field (auto-syncs schema if needed)
python3 scripts/validate_field.py agents.defaults.model.primary

# Validate entire config file
python3 scripts/validate_config.py /path/to/openclaw.json

# Force schema re-sync
python3 scripts/sync_schema.py --force

# Check current schema status
python3 scripts/sync_schema.py --status

### Field Path Format

Field paths use dot notation:

agents.defaults.model.primary              → agents.defaults.model.primary
channels.telegram.botToken                 → channels.telegram.botToken
tools.web.search.provider                  → tools.web.search.provider

### For Users

Simply use validation commands - schema sync is automatic:

# This will auto-sync schema if version mismatch detected
python3 scripts/validate_field.py agents.defaults.timeoutSeconds

### For Schema Management

# Check schema status
python3 scripts/sync_schema.py --status
# Output: Schema version: 2.1.0 (matches OpenClaw)

# Force re-sync (if needed)
python3 scripts/sync_schema.py --force

# Generate fresh field reference
python3 scripts/generate_fields.py

### Schema Storage

Schema is cached locally at:

~/.config/openclaw/skills/config-field/
├── schema/              # Downloaded TypeScript schema files
├── cache/               # Parsed schema cache
└── schema-fields.md     # Generated field reference

### Complete Field Reference

references/schema-fields.md - Auto-generated from official Zod schema

### Scripts

ScriptPurposevalidate_field.py <path>Validate single fieldvalidate_config.py <file>Validate entire configfield_info.py <path>Get field detailssync_schema.pyManage schema syncgenerate_fields.pyRegenerate field docs

### Agent Configuration

agents.defaults.model.primary - Default model ID
agents.defaults.workspace - Workspace path
agents.defaults.timeoutSeconds - Request timeout
agents.defaults.sandbox.mode - Sandbox mode

### Channel Configuration

channels.telegram.botToken - Telegram bot token
channels.discord.token - Discord bot token
channels.slack.botToken - Slack bot token

### Tools

tools.web.search.enabled - Enable web search
tools.web.search.provider - Search provider
tools.exec.security - Execution security mode

### Schema Out of Date

If you see warnings about unknown fields that should exist:

# Force schema refresh
python3 scripts/sync_schema.py --force

### Validation Errors

# Check field info for correct usage
python3 scripts/field_info.py agents.defaults.model

# Verify config syntax
python3 scripts/validate_config.py ~/.config/openclaw/openclaw.json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RedContritio
- Version: 1.0.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-06T11:05:33.745Z
- Expires at: 2026-05-13T11:05:33.745Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/config-field)
- [Send to Agent page](https://openagent3.xyz/skills/config-field/agent)
- [JSON manifest](https://openagent3.xyz/skills/config-field/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/config-field/agent.md)
- [Download page](https://openagent3.xyz/downloads/config-field)