# Send Skill Test 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-test",
    "name": "Skill Test",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ivangdavila/skill-test",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/skill-test",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-test",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-test",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "compare.md",
      "evaluate.md",
      "sandbox.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-test",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:34:23.375Z",
      "expiresAt": "2026-05-08T05:34:23.375Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-test",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-test",
        "contentDisposition": "attachment; filename=\"skill-test-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-test"
      },
      "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-test"
    },
    "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-test",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-test",
    "agentUrl": "https://openagent3.xyz/skills/skill-test/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-test/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-test/agent.md"
  }
}
```
## Documentation

### Test Skills Safely

Two use cases:

Try before commit — Test drive skills before installing
Evaluate before publish — Verify quality before publishing

Key principle: Test in isolation. Never affect user's environment.

References:

Read sandbox.md — Isolated testing environment
Read compare.md — A/B comparison between skills
Read evaluate.md — Multi-agent quality evaluation

### Quick Start

Trial a skill:

sessions_spawn(
  task="Test skill X: Load ONLY its SKILL.md, run [sample task], report quality",
  model="anthropic/claude-haiku"
)

Compare two skills:

Run same task through each (separate sub-agents)
Present outputs side-by-side
Ask: "Which works better? Why?"

### Test Modes

Trial Mode — Before installing

Spawn sub-agent with ONLY the test skill
Run 2-3 representative tasks
Evaluate: Does it help? Clear instructions?
Decision: keep, pass, or try another

Evaluation Mode — Before publishing

Spawn specialized reviewers (see evaluate.md)
Check structure, safety, usefulness
Synthesize findings
Recommend improvements

### Sandbox Isolation

⚠️ Never load test skill into your main context.

Sub-agent approach (recommended):

sessions_spawn(
  task="You have ONE skill loaded: [skill content]. Test by doing: [task]",
  model="anthropic/claude-haiku"
)

Complete isolation — main session unaffected
Natural cleanup — sub-agent terminates, done
Cheap testing — use Haiku

What to check:

Does it activate correctly?
Are instructions clear?
Token cost reasonable?
Output quality acceptable?

### Edge Cases

Skill requires credentials: Ask user for test credentials or skip auth-dependent features.

Skill not found: Verify slug with npx clawhub info <slug> before testing.

Test fails mid-way: Sub-agent terminates cleanly. Review logs, adjust test task, retry.

Skill has many auxiliary files: Load SKILL.md first, reference others only if needed during test.

Test thoroughly. Install only after explicit user approval.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-01T05:34:23.375Z
- Expires at: 2026-05-08T05:34:23.375Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-test)
- [Send to Agent page](https://openagent3.xyz/skills/skill-test/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-test/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-test/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-test)