# Send LMFiles 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": "lmfiles",
    "name": "LMFiles",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/setdemos/lmfiles",
    "canonicalUrl": "https://clawhub.ai/setdemos/lmfiles",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lmfiles",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lmfiles",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/delete.sh",
      "scripts/list.sh",
      "scripts/register.sh",
      "scripts/upload.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lmfiles",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T20:43:41.732Z",
      "expiresAt": "2026-05-11T20:43:41.732Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lmfiles",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lmfiles",
        "contentDisposition": "attachment; filename=\"lmfiles-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lmfiles"
      },
      "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/lmfiles"
    },
    "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/lmfiles",
    "downloadUrl": "https://openagent3.xyz/downloads/lmfiles",
    "agentUrl": "https://openagent3.xyz/skills/lmfiles/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lmfiles/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lmfiles/agent.md"
  }
}
```
## Documentation

### lmfiles

Use lmfiles.com as a lightweight file host for OpenClaw/LLM workflows.

### Provenance & trust

Service docs: https://lmfiles.com/docs
OpenAPI schema: https://lmfiles.com/openapi.json
API host: https://lmfiles.com

Primary credential:

LMFILES_API_KEY (required for authenticated operations)

Bootstrap credential:

LMFILES_BOOTSTRAP_TOKEN (used only for first-time account registration)

Security notes:

Treat credentials as secrets and avoid logging/pasting them.
Rotate bootstrap token if exposed.
401 Unauthorized usually means missing/invalid LMFILES_API_KEY.

### Before first use (required)

Register an account once with a bootstrap token.
Save returned api_key as LMFILES_API_KEY.
Use LMFILES_API_KEY for all authenticated operations.

Quick setup:

export LMFILES_BOOTSTRAP_TOKEN="<bootstrap-token>"

curl -sS -X POST https://lmfiles.com/api/v1/accounts/register \\
  -H "Content-Type: application/json" \\
  -d '{"username":"my-bot","bootstrap_token":"'"$LMFILES_BOOTSTRAP_TOKEN"'"}'

# Copy api_key from response, then:
export LMFILES_API_KEY="lmf_..."

Common auth error:

401 Unauthorized = missing/invalid LMFILES_API_KEY.

### Required env vars

LMFILES_API_KEY for authenticated file operations (primary credential).
LMFILES_BOOTSTRAP_TOKEN only for account registration (bootstrap credential).

### Register account (one-time)

curl -sS -X POST https://lmfiles.com/api/v1/accounts/register \\
  -H "Content-Type: application/json" \\
  -d '{"username":"my-bot","bootstrap_token":"'"$LMFILES_BOOTSTRAP_TOKEN"'"}'

Or use helper script:

bash scripts/register.sh my-bot

Save returned api_key as LMFILES_API_KEY.

### Upload file (max 100 MB)

curl -sS -X POST https://lmfiles.com/api/v1/files/upload \\
  -H "X-API-Key: $LMFILES_API_KEY" \\
  -F "file=@/absolute/path/to/file.ext"

Expected response includes:

file_id
url (public download link)

### Download (public)

curl -L "https://lmfiles.com/f/<file_id>" -o downloaded.file

### File metadata (public)

curl -sS "https://lmfiles.com/api/v1/files/<file_id>"

### Account info and usage

curl -sS https://lmfiles.com/api/v1/accounts/me \\
  -H "X-API-Key: $LMFILES_API_KEY"

### List account files

curl -sS https://lmfiles.com/api/v1/accounts/me/files \\
  -H "X-API-Key: $LMFILES_API_KEY"

Or helper script:

bash scripts/list.sh

### Delete file (owner only)

curl -sS -X DELETE https://lmfiles.com/api/v1/files/<file_id> \\
  -H "X-API-Key: $LMFILES_API_KEY"

Or helper script:

bash scripts/delete.sh <file_id>

### Constraints

Max upload size: 100 MB.
Executable file types are rejected (for example .php, .sh, .py, .exe).
Files expire after 90 days of inactivity; downloads reset the expiry clock.
Downloads are public for anyone with the URL.

### Safety checks before upload

Confirm file is safe to publish publicly.
Avoid uploading secrets or credentials.
If uncertain, ask user before upload.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: setdemos
- Version: 1.0.2
## 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-04T20:43:41.732Z
- Expires at: 2026-05-11T20:43:41.732Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lmfiles)
- [Send to Agent page](https://openagent3.xyz/skills/lmfiles/agent)
- [JSON manifest](https://openagent3.xyz/skills/lmfiles/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lmfiles/agent.md)
- [Download page](https://openagent3.xyz/downloads/lmfiles)