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

### skill-miner

Research. Analyze. Build Clean.

Systematic approach to discovering skills on ClawHub and building your own implementations. Instead of downloading potentially risky code, use this skill to research existing solutions, understand their approaches, and create your own clean, safe version.

Trust but verify, built but owned. 🦞

### When to Use This Skill

Use this skill when:

You need new functionality you don't have
You want to research how others solve problems
You find a suspicious skill but like the idea
You're building a new skill from scratch
You want to stay ahead of ClawHub trends

### Core Philosophy

1. NEVER download suspicious skills
2. INSPECT to understand the idea  
3. BUILD your own clean implementation
4. PUBLISH or keep private

Why?

Suspicious = potential malware/risk (ew, no thanks)
Building yourself = 100% clean & safe (sleep well at night)
Generic = works for everyone (share the love)
Your code, your rules 🦞

### Phase 1: Discovery

# Search for relevant skills
clawhub search <topic>

# Explore trending
clawhub explore --sort trending --limit 20

# Find gaps
clawhub explore --sort newest --limit 50

### Phase 2: Research

# Inspect without downloading
clawhub inspect <skill-slug>

# Read the SKILL.md to understand:
# - What problem it solves
# - How it triggers
# - What commands/tools it uses

### Phase 3: Analysis

Document what you learned:

Problem: What need does it address?
Approach: How does it solve it?
Tools: What commands/APIs does it use?
Gaps: What's missing or could be better?

### Phase 4: Build

Use skill-creator to build your clean version:

Same problem, different implementation
Add missing features
Make it generic and reusable

### Basic Search

# Task-based
clawhub search "pdf edit"
clawhub search "file transfer"
clawhub search "api github"

# Tool-based
clawhub search github
clawhub search slack

# Concept-based
clawhub search automation
clawhub search monitoring
clawhub search sync

### Exploration

# Trending skills
clawhub explore --sort trending --limit 20

# Most downloaded
clawhub explore --sort downloads --limit 20

# newest
clawhub explore --sort newest --limit 30

### Deep Research

# By category
clawhub search "code"
clawhub search "data"
clawhub search "media"
clawhub search "network"
clawhub search "security"

# By use case
clawhub search "automation workflow"
clawhub search "backup sync"
clawhub search "monitoring alerting"

### Inspect Without Downloading

Use clawhub inspect to read skill metadata:

# Get skill info
clawhub inspect <slug>

# This shows:
# - name
# - summary/description
# - owner
# - created/updated dates
# - version
# - tags

Never use clawhub install on suspicious skills!

### Security Principles

When researching skills, watch for these risk indicators:

Code execution patterns (eval, exec)
External API calls without documentation
Hardcoded credentials
Shell execution without input validation
Missing or unclear documentation
Unknown or unverified publishers

If any indicators are present: inspect the metadata only, then build your own implementation.

### Template Structure

my-clean-skill/
├── SKILL.md              # Your clean implementation
├── scripts/              # Your code
├── references/           # Documentation
└── assets/              # Templates (if needed)

### SKILL.md Template

---
name: my-clean-skill
description: Does X. Use when user wants to Y. Based on ClawHub research but built from scratch.
---

# My Clean Skill

## What It Does

[Clear description]

## When to Use

- Use case 1
- Use case 2

## Commands

[Your commands]

## Implementation

[How you built it - clean, generic]

## Security

[Your security measures]

### Scenario 1: Found Suspicious Shell Skill

Found: "shell-commands" (suspicious - has eval)

Inspect:

clawhub inspect shell-commands
# Problem: Execute shell commands
# Tools: bash, ssh

Build Clean:

# Write your own safe-shell-skill
# - No eval
# - Predefined safe commands only
# - Input validation
# - Full documentation

### Scenario 2: Found Good Crypto Skill

Found: "crypto-trader" (risky - real money)

Inspect:

clawhub inspect crypto-trader
# Problem: Trading automation
# Tools: exchange APIs

Build Clean:

# Build crypto-monitor instead
# - Read-only data fetching
# - Price alerts
# - No trading (safe)

### Scenario 3: Gap Found

Search: No good "log-analyzer" skill

Build:

# Create log-analyzer from scratch
# - Parse common log formats
# - Pattern detection
# - Alert on errors

### Common Gaps to Fill

These skills don't exist or are outdated:

GapDescriptioncode-refactorAI-powered code refactoringsystem-monitorModern system monitoringtask-automationGeneral automationwebhook-handlerWebhook processingcron-schedulerSmart schedulinglog-analyzerLog parsing & analysisbackup-schedulerIntelligent backupsapi-testerAPI testing toolconfig-managerConfiguration management

### Building

Start simple, add features later
Use well-tested tools (curl, jq, etc.)
No external dependencies when possible
Full error handling
Clear documentation

### Publishing

Test extensively
Clear description
Generic (no hardcoded values)
Security-first design
Include troubleshooting

### Security

No eval ever
Input validation
No secrets in code
Use environment variables
Minimal permissions

### Quality Checklist

Before publishing:

Works as documented
 No hardcoded secrets
 Cross-platform compatible
 Error handling included
 Clear examples
 Triggers properly
 No suspicious patterns

### Related Skills

next-skill - General skill discovery
skill-creator - Build new skills
claw2claw-filetransfer - Share skills

Guidelines:

Inspect before install
Build your own when in doubt
Share clean, well-documented skills

From Claws - for Claws. 🦞
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Christopher-Schulze
- 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-09T00:09:14.670Z
- Expires at: 2026-05-16T00:09:14.670Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-miner)
- [Send to Agent page](https://openagent3.xyz/skills/skill-miner/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-miner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-miner/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-miner)