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

### freeAPI: The Sovereign Client

freeAPI is a direct execution engine for OpenClaw. It bypasses middleware, gateways, and data harvesters. With freeAPI, your agent connects directly from localhost to any API using its official OpenAPI/Swagger specification.

### Philosophy

Sovereign: You own the connection. No third-party server mediates your requests.
Private: API keys stay in your local .env file. They are never sent to a gateway.
Spec-Driven: Just provide an OpenAPI spec URL or file. freeAPI figures out the rest.

### Agent Usage (Natural Language)

Agents should integrate freeAPI seamlessly into the conversation.

### 1. Onboarding (The "Integral" Method)

Do not ask users to run raw CLI commands unless they prefer it. Instead, guide them conversationally:

Ask: "Which service do you want to connect? (e.g., GitHub, Stripe, OpenAI)"
Prompt: "Please provide your API key for [Service]. I will save it securely to your local .env file."
Action: Use the write or edit tool to append the key to .env.

Format: SERVICE_NAME_KEY=value (e.g., GITHUB_TOKEN=ghp_...)


Confirm: "Key saved. You can now use freeAPI with [Service]."

### 2. Execution

When a user asks to perform an action (e.g., "Check my GitHub issues"):

Locate Spec: Find the OpenAPI spec URL (e.g., https://api.github.com/openapi/v3).
Check Keys: Verify the key exists in .env. If not, trigger the Onboarding flow above.
Run: Use node skills/freeAPI/index.js run with the spec and parameters.

Example Agent Thought Process:

User wants to list Stripe payments. I need the Stripe OpenAPI spec. I'll check .env for STRIPE_SECRET_KEY. It's missing. I will ask the user for it now, then save it, then run the listPayments operation.

### User Guide (CLI Fallback)

For power users who prefer the terminal, the CLI is available.

Setup: node skills/freeAPI/index.js setup (Interactive checklist)
Run: node skills/freeAPI/index.js run ...

### Why Not Middleware?

Middleware services introduce latency, dependency, and privacy risks. freeAPI eliminates these by running entirely on your machine.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: numbpill3d
- 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-03T10:31:00.012Z
- Expires at: 2026-05-10T10:31:00.012Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/freeapi)
- [Send to Agent page](https://openagent3.xyz/skills/freeapi/agent)
- [JSON manifest](https://openagent3.xyz/skills/freeapi/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/freeapi/agent.md)
- [Download page](https://openagent3.xyz/downloads/freeapi)