# Send OpenClaw Skill Reviewer 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-skill-reviewer",
    "name": "OpenClaw Skill Reviewer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/YKaiXu/openclaw-skill-reviewer",
    "canonicalUrl": "https://clawhub.ai/YKaiXu/openclaw-skill-reviewer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-skill-reviewer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-reviewer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/best-practices.md",
      "references/openclaw-specs.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-skill-reviewer"
    },
    "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-skill-reviewer",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-reviewer",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-reviewer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-reviewer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-reviewer/agent.md"
  }
}
```
## Documentation

### Skill Reviewer

Comprehensive skill review and validation for OpenClaw skills.

### Overview

This skill provides a systematic three-level review process to ensure skills are:

Valid - Proper structure and format
Complete - All required components present
Correct - Generated outputs match OpenClaw specifications
High-quality - Follows best practices

### Level 1: Format Validation

Run automatic validation using package_skill.py:

python3 /home/yupeng/.npm-global/lib/node_modules/openclaw/skills/skill-creator/scripts/package_skill.py <skill-path>

Checks:

YAML frontmatter format and required fields
Skill naming conventions and directory structure
Description completeness and quality
File organization and resource references

Outcome: ✅ Valid or ❌ Validation errors

### Level 2: Content Quality Assessment

Manually review SKILL.md for:

Frontmatter:

name is concise and follows naming conventions
description is comprehensive and includes "when to use" information
No extraneous fields in YAML

Body Structure:

Clear organization (workflow-based, task-based, or reference-based)
Progressive disclosure pattern (metadata → SKILL.md → references)
Concise and focused content
Imperative/infinitive form for instructions

Writing Quality:

No filler or redundant explanations
Concrete examples and realistic scenarios
Clear guidance on when to read reference files
Avoids duplication between SKILL.md and references

### Level 3: Functional Verification

Critical Step - Verify that generated outputs match actual OpenClaw specifications.

For skills that generate templates:

Compare generated templates with actual OpenClaw specification files
Example: If skill generates AGENTS.md templates, compare with /home/yupeng/.openclaw/workspace/AGENTS.md
Check for missing required sections (session startup, memory workflow, safety rules, group chat etiquette, heartbeat mechanism)
Verify all critical requirements are present

For skills with scripts:

Test scripts to ensure they work correctly
Verify output matches expected format
Check error handling

For skills with references:

Verify reference files are accurate and up-to-date
Check that references are properly linked from SKILL.md

### Level 4: Best Practices Check

Verify the skill follows OpenClaw skill best practices:

Progressive Disclosure:

SKILL.md body is concise (<500 lines preferred)
Detailed information moved to references/
References are properly linked and described

Resource Organization:

Only necessary resource directories created
No extraneous files (README.md, INSTALLATION_GUIDE.md, etc.)
Scripts/ references/ assets/ used appropriately

Context Efficiency:

Information lives in either SKILL.md OR references, not both
Essential procedural instructions in SKILL.md
Detailed reference material in references/

Triggering Accuracy:

description clearly states when the skill should be used
All "when to use" information is in description, not body

### Common Issues Found

Missing Functional Verification:

Skill generates templates but they don't match actual specifications
Example: AGENTS.md template missing session startup requirements

Incomplete Descriptions:

Description doesn't include "when to use" information
Body contains "When to Use This Skill" sections (should be in description)

Duplication:

Same information in both SKILL.md and references
Wastes context window tokens

Extraneous Files:

README.md, CHANGELOG.md, etc. in skill directory
Should only contain SKILL.md and necessary resources

Poor Progressive Disclosure:

SKILL.md too verbose
References not properly linked or described

### Review Checklist

For each skill, verify:

Level 1: Format validation passes
 Level 2: SKILL.md structure and quality are good
 Level 3: Generated templates match OpenClaw specifications
 Level 4: Best practices are followed
 No extraneous files
 Description includes "when to use" information
 References are properly linked from SKILL.md
 Scripts work correctly (if present)

### scripts/

review_skill.py - Automated review script (optional enhancement)

### references/

openclaw-specs.md - OpenClaw specifications for comparison
best-practices.md - Skill design best practices
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: YKaiXu
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-skill-reviewer)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-skill-reviewer/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-skill-reviewer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-skill-reviewer/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-skill-reviewer)