# Send Skill Search 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": "fitcheck-skill-search",
    "name": "Skill Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/at6132/fitcheck-skill-search",
    "canonicalUrl": "https://clawhub.ai/at6132/fitcheck-skill-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fitcheck-skill-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fitcheck-skill-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "index/skills_index.json",
      "scripts/embeddings.py",
      "scripts/skill_search.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/fitcheck-skill-search"
    },
    "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/fitcheck-skill-search",
    "downloadUrl": "https://openagent3.xyz/downloads/fitcheck-skill-search",
    "agentUrl": "https://openagent3.xyz/skills/fitcheck-skill-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fitcheck-skill-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fitcheck-skill-search/agent.md"
  }
}
```
## Documentation

### Skill Search V1.1

Find skills using keyword, semantic, or AI-powered task matching.

### Overview

This skill provides three search modes:

Keyword Search (Fast BM25) — Match skill names and descriptions
Semantic Search (Embeddings) — Find skills by meaning/concept similarity
LLM Task Matching (AI-powered) — Describe your task, get skill recommendations

### When to Use

Before starting a new task — check if a relevant skill exists
When user asks for capabilities — "what can you do with PDFs?"
To avoid context bloat — find the right skill first, then load only that one
When unsure which skill applies — use semantic or LLM matching for fuzzy matches

### 1. Keyword Search (Fast)

./scripts/skill_search.py keyword "weather"
./scripts/skill_search.py keyword "pdf"
./scripts/skill_search.py keyword "image generation"

### 2. Semantic Search (Meaning-based)

./scripts/skill_search.py semantic "automate web browsing"
./scripts/skill_search.py semantic "create images with AI"
./scripts/skill_search.py semantic "search my past conversations"

### 3. LLM Task Matching (AI-powered)

./scripts/skill_search.py suggest "I need to transcribe a podcast episode"
./scripts/skill_search.py suggest "Help me generate product photos"
./scripts/skill_search.py suggest "Search through my old emails"

### 4. List All Skills

./scripts/skill_search.py list

### Usage Pattern

Search: Find skills matching your need (keyword/semantic/LLM)
Preview: Read SKILL.md metadata (description, triggers)
Load: If it's the right skill, read full body and execute

### Example Workflows

User: "I need to generate some images"

Agent: Uses semantic search

./scripts/skill_search.py semantic "generate images AI"

Output:

Top matches (semantic):
1. openai-image-gen (0.87) — Batch-generate images via OpenAI Images API
2. browser (0.65) — Control web browser via Playwright

Agent: Reads SKILL.md, confirms fit, executes

User: "What skill should I use for transcribing audio?"

Agent: Uses LLM suggest

./scripts/skill_search.py suggest "transcribe audio"

Output:

Recommended skills for "transcribe audio":

1. openai-whisper-api — Transcribe audio via OpenAI Audio Transcriptions API (Whisper)
   Confidence: High
   Reason: Task explicitly matches skill purpose

2. sag — ElevenLabs text-to-speech (inverse operation, may be related)
   Confidence: Low
   Reason: Related to audio processing but output not input

### Search Index

The skill maintains a local search index at:

~/.openclaw/workspace/skills/skill-search/index/skills_index.json — Skill metadata
~/.openclaw/workspace/skills/skill-search/index/embeddings.json — Semantic embeddings (lazy-loaded)

Indexing happens automatically on first semantic search if no index exists.

Force reindex:

./scripts/skill_search.py index

### scripts/

skill_search.py — Main search interface (keyword/semantic/LLM)
indexer.py — Build/update search index
embeddings.py — Embedding generation (local miniLM)

### index/

skills_index.json — Searchable skill metadata
embeddings_cache.json — Pre-computed embeddings for semantic search
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: at6132
- Version: 1.1.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-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fitcheck-skill-search)
- [Send to Agent page](https://openagent3.xyz/skills/fitcheck-skill-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/fitcheck-skill-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fitcheck-skill-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/fitcheck-skill-search)