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

### Blank Files Gateway

Use this skill when the user needs real, downloadable blank binary files for upload testing.

Primary API:

https://blankfiles.com/api/v1/status
https://blankfiles.com/api/v1/files
https://blankfiles.com/api/v1/files/{type}
https://blankfiles.com/api/v1/files/{category}/{type}

### Behavior

Prefer the API endpoints above to discover current formats.
Return direct file URLs from the API response (files[].url) whenever possible.
If a format is not found, suggest close alternatives from the same category.
Keep responses concise and practical: format, category, URL, and one-line use case.

### Guardrails

Treat this as a read-only gateway. Do not ask users to run shell scripts or installers.
Do not fabricate file formats or URLs.
Always verify availability via API before claiming a format exists.
Use exact API route shapes (/api/v1/...), not deprecated routes.

### Find all available formats

Use:

GET /api/v1/files

Return:

Total count
Top relevant matches for user intent
Direct links

### Get one format by type

Use:

GET /api/v1/files/{type}

Return:

Matching files with direct URLs
If none, propose neighboring types in same domain

### Get exact category + type

Use:

GET /api/v1/files/{category}/{type}

Return:

One direct URL when available
404-safe fallback suggestions when missing

### Output Template

format: <type>
category: <category>
download_url: <url>
notes: <short testing context>

### References

Read:

{baseDir}/references/endpoints.md
{baseDir}/references/publish.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: seblavoie
- 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-04-30T15:35:23.371Z
- Expires at: 2026-05-07T15:35:23.371Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/blankfiles)
- [Send to Agent page](https://openagent3.xyz/skills/blankfiles/agent)
- [JSON manifest](https://openagent3.xyz/skills/blankfiles/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/blankfiles/agent.md)
- [Download page](https://openagent3.xyz/downloads/blankfiles)