โ† All skills
Tencent SkillHub ยท Developer Tools

OpenClaw Config Field Validator

Validate OpenClaw configuration fields against the official Zod schema. Use when reading or writing openclaw.json to check if configuration fields exist and...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Validate OpenClaw configuration fields against the official Zod schema. Use when reading or writing openclaw.json to check if configuration fields exist and...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/schema-fields.md, scripts/field_info.py, scripts/generate_fields.py, scripts/schema.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • references/schema-fields.md Docs
  • scripts/field_info.py Scripts
  • scripts/generate_fields.py Scripts
  • scripts/schema.json Config