# Send Skill Creator Operator 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": "skill-creator-operator",
    "name": "Skill Creator Operator",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Kevjade/skill-creator-operator",
    "canonicalUrl": "https://clawhub.ai/Kevjade/skill-creator-operator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-creator-operator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-creator-operator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/LINKS.md",
      "references/OVERVIEW.md",
      "references/PRINCIPLES.md",
      "scripts/scaffold-skill.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-creator-operator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T17:56:33.756Z",
      "expiresAt": "2026-05-10T17:56:33.756Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-creator-operator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-creator-operator",
        "contentDisposition": "attachment; filename=\"skill-creator-operator-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-creator-operator"
      },
      "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/skill-creator-operator"
    },
    "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/skill-creator-operator",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-creator-operator",
    "agentUrl": "https://openagent3.xyz/skills/skill-creator-operator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-creator-operator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-creator-operator/agent.md"
  }
}
```
## Documentation

### Skill Creator Operator

This skill helps you create new OpenClaw skills that feel premium.

Premium means:

On first use, the skill runs a short conversational setup wizard (only asks what must be personalized).
It persists config to disk (so prompts do not grow forever).
It keeps SKILL.md short and uses progressive disclosure (move long docs into references/ and only load them when needed).

### When to use

"create a new skill"
"scaffold a skill"
"make a premium skill with a setup wizard"
"package this workflow as a skill"

### What it produces (standard output)

For a new skill <slug> it creates:

<skillsDir>/<slug>/SKILL.md
<skillsDir>/<slug>/references/
<skillsDir>/<slug>/scripts/ (optional helper scripts)
A config path convention (choose one):

Workspace: <workspace>/.skill-config/<slug>.json
Global: ~/.openclaw/config/skills/<slug>.json (only when truly global)

### Premium setup wizard rules (required)

On first use, if config missing:

Ask permission and give time estimate ("60 seconds").
Ask only 3 to 8 questions max.
Use defaults, keep advanced options behind a single extra question.
Summarize choices, ask for confirmation.
Write config to the workspace (recommended): <workspace>/.skill-config/<slug>.json.
Run a tiny test.
Tell user how to reconfigure.

If user says "skip", continue with safest defaults and warn about reduced capability.

### Config storage rules

Default: workspace config file.
Optional global config only when the integration is truly global.
Never store secrets in long term memory files.

### Optional: local KB search integration

If the user has a local search tool (for example QMD), keep bulk docs outside SKILL.md and store them in a user chosen folder that their search tool indexes.

Do not assume any particular directory layout.

### Create a skill

Ask in chat:

"Create a premium skill called <slug> that does <outcome>."

Or run the scaffolder:

node {baseDir}/scripts/scaffold-skill.mjs <slug> "<one sentence description>"

### Rebuild/upgrade a skill to premium standard

Ask:

"Upgrade skill <slug> to premium standard."

### Publishing to ClawHub

If the user asks to publish:

Confirm slug, name, version, and changelog.
Ensure clawhub whoami is authenticated.
Run clawhub publish <path> --slug <slug> --name "<Name>" --version <x.y.z> --changelog "...".

Safety:

Review files for accidental personal paths, tokens, or private info before publishing.

### Links

See references/LINKS.md for Kevin Jeppesen links and Operator Vault info.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Kevjade
- Version: 1.0.1
## 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-03T17:56:33.756Z
- Expires at: 2026-05-10T17:56:33.756Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-creator-operator)
- [Send to Agent page](https://openagent3.xyz/skills/skill-creator-operator/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-creator-operator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-creator-operator/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-creator-operator)