{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/freeapi",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=freeapi",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "index.js",
      "package-lock.json",
      "package.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/freeapi",
    "agentPageUrl": "https://openagent3.xyz/skills/freeapi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/freeapi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/freeapi/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "freeAPI: The Sovereign Client",
        "body": "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."
      },
      {
        "title": "Philosophy",
        "body": "Sovereign: You own the connection. No third-party server mediates your requests.\nPrivate: API keys stay in your local .env file. They are never sent to a gateway.\nSpec-Driven: Just provide an OpenAPI spec URL or file. freeAPI figures out the rest."
      },
      {
        "title": "Agent Usage (Natural Language)",
        "body": "Agents should integrate freeAPI seamlessly into the conversation."
      },
      {
        "title": "1. Onboarding (The \"Integral\" Method)",
        "body": "Do not ask users to run raw CLI commands unless they prefer it. Instead, guide them conversationally:\n\nAsk: \"Which service do you want to connect? (e.g., GitHub, Stripe, OpenAI)\"\nPrompt: \"Please provide your API key for [Service]. I will save it securely to your local .env file.\"\nAction: Use the write or edit tool to append the key to .env.\n\nFormat: SERVICE_NAME_KEY=value (e.g., GITHUB_TOKEN=ghp_...)\n\n\nConfirm: \"Key saved. You can now use freeAPI with [Service].\""
      },
      {
        "title": "2. Execution",
        "body": "When a user asks to perform an action (e.g., \"Check my GitHub issues\"):\n\nLocate Spec: Find the OpenAPI spec URL (e.g., https://api.github.com/openapi/v3).\nCheck Keys: Verify the key exists in .env. If not, trigger the Onboarding flow above.\nRun: Use node skills/freeAPI/index.js run with the spec and parameters.\n\nExample Agent Thought Process:\n\nUser 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."
      },
      {
        "title": "User Guide (CLI Fallback)",
        "body": "For power users who prefer the terminal, the CLI is available.\n\nSetup: node skills/freeAPI/index.js setup (Interactive checklist)\nRun: node skills/freeAPI/index.js run ..."
      },
      {
        "title": "Why Not Middleware?",
        "body": "Middleware services introduce latency, dependency, and privacy risks. freeAPI eliminates these by running entirely on your machine."
      }
    ],
    "body": "freeAPI: The Sovereign Client\n\nfreeAPI 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.\n\nPhilosophy\nSovereign: You own the connection. No third-party server mediates your requests.\nPrivate: API keys stay in your local .env file. They are never sent to a gateway.\nSpec-Driven: Just provide an OpenAPI spec URL or file. freeAPI figures out the rest.\nAgent Usage (Natural Language)\n\nAgents should integrate freeAPI seamlessly into the conversation.\n\n1. Onboarding (The \"Integral\" Method)\n\nDo not ask users to run raw CLI commands unless they prefer it. Instead, guide them conversationally:\n\nAsk: \"Which service do you want to connect? (e.g., GitHub, Stripe, OpenAI)\"\nPrompt: \"Please provide your API key for [Service]. I will save it securely to your local .env file.\"\nAction: Use the write or edit tool to append the key to .env.\nFormat: SERVICE_NAME_KEY=value (e.g., GITHUB_TOKEN=ghp_...)\nConfirm: \"Key saved. You can now use freeAPI with [Service].\"\n2. Execution\n\nWhen a user asks to perform an action (e.g., \"Check my GitHub issues\"):\n\nLocate Spec: Find the OpenAPI spec URL (e.g., https://api.github.com/openapi/v3).\nCheck Keys: Verify the key exists in .env. If not, trigger the Onboarding flow above.\nRun: Use node skills/freeAPI/index.js run with the spec and parameters.\n\nExample Agent Thought Process:\n\nUser 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.\n\nUser Guide (CLI Fallback)\n\nFor power users who prefer the terminal, the CLI is available.\n\nSetup: node skills/freeAPI/index.js setup (Interactive checklist) Run: node skills/freeAPI/index.js run ...\n\nWhy Not Middleware?\n\nMiddleware services introduce latency, dependency, and privacy risks. freeAPI eliminates these by running entirely on your machine."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/numbpill3d/freeapi",
    "publisherUrl": "https://clawhub.ai/numbpill3d/freeapi",
    "owner": "numbpill3d",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}