# Send Command Creator 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": "command-creator",
    "name": "Command Creator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wpank/command-creator",
    "canonicalUrl": "https://clawhub.ai/wpank/command-creator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/command-creator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=command-creator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/best-practices.md",
      "references/examples.md",
      "references/patterns.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "command-creator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T01:07:13.209Z",
      "expiresAt": "2026-05-09T01:07:13.209Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=command-creator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=command-creator",
        "contentDisposition": "attachment; filename=\"command-creator-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "command-creator"
      },
      "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/command-creator"
    },
    "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/command-creator",
    "downloadUrl": "https://openagent3.xyz/downloads/command-creator",
    "agentUrl": "https://openagent3.xyz/skills/command-creator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/command-creator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/command-creator/agent.md"
  }
}
```
## Documentation

### Command Creator

Slash commands are markdown files in .claude/commands/ (project) or ~/.claude/commands/ (global) that expand into prompts when invoked.

### Command Structure

---
description: Brief description for /help (required)
argument-hint: <required> or [optional] (if takes arguments)
---

# Command Title

[Instructions for agent to execute autonomously]

### Step 1: Determine Location

Check if in git repo: git rev-parse --is-inside-work-tree
Default: Git repo → .claude/commands/, No git → ~/.claude/commands/
Override if user explicitly says "global" or "project"

Report chosen location before proceeding.

### Step 2: Identify Pattern

Load references/patterns.md and present options:

PatternStructureUse WhenWorkflow AutomationAnalyze → Act → ReportMulti-step with clear sequenceIterative FixingRun → Parse → Fix → RepeatFix issues until passingAgent DelegationContext → Delegate → IterateComplex tasks, user reviewSimple ExecutionParse → Execute → ReturnWrapper for existing tools

Ask: "Which pattern is closest to what you want?"

### Step 3: Gather Information

A. Name and Purpose

"What should the command be called?" (kebab-case: my-command)
"What does it do?" (for description field)

B. Arguments

"Does it take arguments? Required or optional?"
Required: <placeholder>, Optional: [placeholder]

C. Workflow Steps

"What specific steps should it follow?"
"What tools or commands should it use?"

D. Constraints

"Any specific tools to use or avoid?"
"Any files to read for context?"

### Step 4: Generate Command

Load references/best-practices.md for:

Template structure
Writing style (imperative form)
Quality checklist

Key principles:

Use imperative form: "Run X", not "You should run X"
Be explicit: "Run make lint", not "Check for errors"
Include expected outcomes
Define error handling
State success criteria

### Step 5: Create File

mkdir -p [directory-path]

Write the command file. Report:

File location
What the command does
How to use: /command-name [args]

### Step 6: Test (Optional)

Suggest: "Test with /command-name [args]"

Iterate based on feedback.

### Writing Guidelines

Imperative form (verb-first):

✅ "Run git status"
❌ "You should run git status"

Specific, not vague:

✅ "Run make lint to check for errors"
❌ "Check for errors"

Include outcomes:

✅ "Run git status - should show modified files"
❌ "Run git status"

Realistic examples:

✅ git commit -m "Add OAuth2 authentication"
❌ git commit -m "foo bar"

### Workflow Automation

1. Check for .PLAN.md
2. Analyze git status/diff
3. Perform actions
4. Report results

### Iterative Fixing

1. Run make all-ci (max 10 iterations)
2. Parse errors by category
3. Apply targeted fixes
4. Repeat until success or stuck

### Agent Delegation

1. Present context
2. Invoke subagent with Task tool
3. Iterate with user feedback
4. Save output after approval

See references/examples.md for full command examples.

### Quality Checklist

Before finalizing:

Name is kebab-case (my-command, not my_command)
 Description is action-oriented
 Steps are numbered and specific
 Tool usage explicitly specified
 Error handling defined
 Success criteria stated
 Uses imperative form

### NEVER

Use underscores in command names (use hyphens)
Write vague instructions ("fix errors")
Skip error handling
Use second person ("You should...")
Create commands without testing
Leave success criteria undefined
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wpank
- 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-02T01:07:13.209Z
- Expires at: 2026-05-09T01:07:13.209Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/command-creator)
- [Send to Agent page](https://openagent3.xyz/skills/command-creator/agent)
- [JSON manifest](https://openagent3.xyz/skills/command-creator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/command-creator/agent.md)
- [Download page](https://openagent3.xyz/downloads/command-creator)