{
  "schemaVersion": "1.0",
  "item": {
    "slug": "context7-api",
    "name": "Context7 API Documentation Fetcher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/am-will/context7-api",
    "canonicalUrl": "https://clawhub.ai/am-will/context7-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/context7-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context7-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/context7.py"
    ],
    "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",
      "slug": "context7-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T03:16:34.216Z",
      "expiresAt": "2026-05-09T03:16:34.216Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context7-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context7-api",
        "contentDisposition": "attachment; filename=\"context7-api-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "context7-api"
      },
      "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/context7-api"
    },
    "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/context7-api",
    "agentPageUrl": "https://openagent3.xyz/skills/context7-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/context7-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/context7-api/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": "Context7 Documentation Fetcher",
        "body": "Retrieve current library documentation via Context7 API."
      },
      {
        "title": "1. Search for the library",
        "body": "python3 ~/.claude/skills/context7/scripts/context7.py search \"<library-name>\"\n\nExample:\n\npython3 ~/.claude/skills/context7/scripts/context7.py search \"next.js\"\n\nReturns library metadata including the id field needed for step 2."
      },
      {
        "title": "2. Fetch documentation context",
        "body": "python3 ~/.claude/skills/context7/scripts/context7.py context \"<library-id>\" \"<query>\"\n\nExample:\n\npython3 ~/.claude/skills/context7/scripts/context7.py context \"/vercel/next.js\" \"app router middleware\"\n\nOptions:\n\n--type txt|md - Output format (default: txt)\n--tokens N - Limit response tokens"
      },
      {
        "title": "Quick Reference",
        "body": "TaskCommandFind React docssearch \"react\"Get React hooks infocontext \"/facebook/react\" \"useEffect cleanup\"Find Supabasesearch \"supabase\"Get Supabase authcontext \"/supabase/supabase\" \"authentication row level security\""
      },
      {
        "title": "When to Use",
        "body": "Before implementing any library-dependent feature\nWhen unsure about current API signatures\nFor library version-specific behavior\nTo verify best practices and patterns"
      }
    ],
    "body": "Context7 Documentation Fetcher\n\nRetrieve current library documentation via Context7 API.\n\nWorkflow\n1. Search for the library\npython3 ~/.claude/skills/context7/scripts/context7.py search \"<library-name>\"\n\n\nExample:\n\npython3 ~/.claude/skills/context7/scripts/context7.py search \"next.js\"\n\n\nReturns library metadata including the id field needed for step 2.\n\n2. Fetch documentation context\npython3 ~/.claude/skills/context7/scripts/context7.py context \"<library-id>\" \"<query>\"\n\n\nExample:\n\npython3 ~/.claude/skills/context7/scripts/context7.py context \"/vercel/next.js\" \"app router middleware\"\n\n\nOptions:\n\n--type txt|md - Output format (default: txt)\n--tokens N - Limit response tokens\nQuick Reference\nTask\tCommand\nFind React docs\tsearch \"react\"\nGet React hooks info\tcontext \"/facebook/react\" \"useEffect cleanup\"\nFind Supabase\tsearch \"supabase\"\nGet Supabase auth\tcontext \"/supabase/supabase\" \"authentication row level security\"\nWhen to Use\nBefore implementing any library-dependent feature\nWhen unsure about current API signatures\nFor library version-specific behavior\nTo verify best practices and patterns"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/am-will/context7-api",
    "publisherUrl": "https://clawhub.ai/am-will/context7-api",
    "owner": "am-will",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/context7-api",
    "downloadUrl": "https://openagent3.xyz/downloads/context7-api",
    "agentUrl": "https://openagent3.xyz/skills/context7-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/context7-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/context7-api/agent.md"
  }
}