# Send Hugging Face 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": "hugging-face",
    "name": "Hugging Face",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/hugging-face",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/hugging-face",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hugging-face",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hugging-face",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "discovery.md",
      "evaluation.md",
      "inference.md",
      "memory-template.md",
      "setup.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hugging-face",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T21:32:51.021Z",
      "expiresAt": "2026-05-08T21:32:51.021Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hugging-face",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hugging-face",
        "contentDisposition": "attachment; filename=\"hugging-face-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hugging-face"
      },
      "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/hugging-face"
    },
    "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/hugging-face",
    "downloadUrl": "https://openagent3.xyz/downloads/hugging-face",
    "agentUrl": "https://openagent3.xyz/skills/hugging-face/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hugging-face/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hugging-face/agent.md"
  }
}
```
## Documentation

### Setup

On first use, read setup.md for integration guidelines and local memory initialization.

### When to Use

User needs to find the right Hugging Face model, dataset, or Space for a concrete task and move from browsing to reliable execution.
Agent handles discovery, filtering, license checks, quick benchmarking, and integration-ready inference plans.

### Architecture

Memory and reusable artifacts live in ~/hugging-face/. See memory-template.md for structure and status fields.

~/hugging-face/
|- memory.md          # Stable context, priorities, and defaults
|- shortlists.md      # Candidate models and datasets by use case
|- evaluations.md     # Benchmark runs, winners, and caveats
|- endpoints.md       # Approved endpoints and auth notes
\`- exports/           # Saved outputs and comparison snapshots

### Quick Reference

Load only one focused file at a time to keep context small and decisions explicit.

TopicFileSetup processsetup.mdMemory templatememory-template.mdModel and dataset discoverydiscovery.mdInference execution patternsinference.mdEvaluation rubric and scoringevaluation.mdCommon failures and recoverytroubleshooting.md

### 1. Lock Objective and Constraints First

Before selecting any artifact, confirm task type, latency budget, cost boundary, and deployment target.

Use this minimum scope packet:

Task type: chat, generation, embedding, classification, vision, or speech
Quality priority: best quality, best speed, or balanced
Runtime constraints: CPU only, specific GPU class, or hosted endpoint
Compliance constraints: license, region, or private data limits

### 2. Separate Discovery from Execution

Do not run inference on the first candidate found.

First create a shortlist of at least three candidates, then execute only on finalists that pass compatibility and license checks.

### 3. Validate License and Access Before Recommendation

For every candidate, verify license, gated access status, model size, and framework compatibility.

If any of these are unknown, mark the candidate as provisional and avoid production recommendation.

### 4. Benchmark with a Deterministic Mini Suite

Use the same prompt set and output checks across candidates so results are comparable.

Minimum benchmark set:

One typical request
One edge-case request
One failure-prone request

### 5. Minimize External Data

Send only what is required for the selected endpoint.

Never send credentials, local paths, or unrelated private context in request payloads.

### 6. Use a Fallback Ladder

If the preferred model fails, apply ordered fallback:

Retry same endpoint with smaller payload
Switch to a compatible backup model
Switch to local-only workflow if available

### 7. Keep Runs Reproducible

Log selected model id, endpoint, key parameters, and evaluation result in local memory so future runs are consistent and auditable.

### Common Traps

Picking the highest download count as the only criterion -> often misses license, latency, or domain fit.
Ignoring gated model requirements -> integration fails at runtime due to access restrictions.
Comparing models with different prompts -> quality conclusions become unreliable.
Sending full user context to inference endpoints -> unnecessary privacy exposure.
Skipping fallback design -> workflows fail hard on transient endpoint errors.

### External Endpoints

Use discovery endpoints before inference so candidate selection remains explainable and reproducible.

EndpointData SentPurposehttps://huggingface.co/api/modelsSearch terms, filter parametersDiscover model candidateshttps://huggingface.co/api/datasetsSearch terms, filter parametersDiscover dataset candidateshttps://huggingface.co/api/spacesSearch terms, filter parametersDiscover runnable Spaceshttps://api-inference.huggingface.co/models/{model_id}Prompt or task input payload, selected model id, auth tokenRun hosted inference

No other data is sent externally.

### Security & Privacy

Data that leaves your machine:

Search terms and filter inputs sent to Hugging Face discovery APIs.
Inference payloads sent to Hugging Face Inference API when execution is requested.

Data that stays local:

Preferences, shortlists, evaluation notes, and endpoint decisions in ~/hugging-face/.

This skill does NOT:

Exfiltrate local files by default.
Send undeclared network requests.
Store raw secrets in local notes.
Modify its own skill definition file.

### Trust

By using this skill, selected request data is sent to Hugging Face services.
Only install if you trust Hugging Face with the inputs you choose to process.

### Related Skills

Install with clawhub install <slug> if user confirms:

ai - general AI strategy and model-selection framing
api - API-first integration patterns and HTTP debugging
data-analysis - dataset inspection and quality interpretation
data - structured data workflows and extraction patterns
code - implementation support for scripts and adapters

### Feedback

If useful: clawhub star hugging-face
Stay updated: clawhub sync
## 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-01T21:32:51.021Z
- Expires at: 2026-05-08T21:32:51.021Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hugging-face)
- [Send to Agent page](https://openagent3.xyz/skills/hugging-face/agent)
- [JSON manifest](https://openagent3.xyz/skills/hugging-face/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hugging-face/agent.md)
- [Download page](https://openagent3.xyz/downloads/hugging-face)