{
  "schemaVersion": "1.0",
  "item": {
    "slug": "grokipedia",
    "name": "Grokipedia",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kirillleventcov/grokipedia",
    "canonicalUrl": "https://clawhub.ai/kirillleventcov/grokipedia",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/grokipedia",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=grokipedia",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "scripts/fetch.mjs",
      "scripts/search.mjs",
      "SKILL.md",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/grokipedia"
    },
    "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/grokipedia",
    "agentPageUrl": "https://openagent3.xyz/skills/grokipedia/agent",
    "manifestUrl": "https://openagent3.xyz/skills/grokipedia/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/grokipedia/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Grokipedia Parser",
        "body": "Search and fetch articles from Grokipedia.com — xAI's AI-generated encyclopedia.\n\nSource: github.com/kirillleventcov/grokipedia-parser"
      },
      {
        "title": "Requirements",
        "body": "Node.js (v18+) / Bun — used to run the search and fetch scripts\nDependencies — jsdom and @mozilla/readability (installed via bun install)"
      },
      {
        "title": "Install",
        "body": "cd ~/.openclaw/workspace/skills/Grokipedia\nbun install --production\n\nNote: Installation creates a node_modules/ directory in the skill folder. The scripts themselves only output to stdout at runtime."
      },
      {
        "title": "Search Articles",
        "body": "node ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs \"query\" [--limit N]\n\nParameters:\n\nquery - Search term (required)\n--limit N - Max results (1-50, default: 10)\n\nOutput: JSON array with slug, title, snippet, relevanceScore\n\nExample:\n\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs \"artificial intelligence\" --limit 5"
      },
      {
        "title": "Fetch Article",
        "body": "node ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Article_Slug\"\n\nParameters:\n\nslug - Article slug (required, case-sensitive, use underscores)\n\nOutput: Clean markdown article content\n\nExample:\n\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Helsinki\"\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Artificial_intelligence\""
      },
      {
        "title": "What This Skill Does",
        "body": "Network access: Fetches from grokipedia.com only (search API + article pages)\nNo credentials: Public read-only access, no API keys or tokens needed\nNo runtime file writes: Only outputs to stdout (JSON for search, markdown for articles). Install step creates node_modules/ in the skill directory.\nNo persistence: No background processes, no cron, no elevated privileges\nDependencies: jsdom (DOM parsing) and @mozilla/readability (article extraction)"
      },
      {
        "title": "Notes",
        "body": "Article slugs are case-sensitive (e.g., Helsinki not helsinki)\nSlugs use underscores for spaces (e.g., Artificial_intelligence)\nSearch returns up to 50 results max\nArticles contain internal links in format [text](/page/Slug)\nContent is AI-generated by Grok"
      }
    ],
    "body": "Grokipedia Parser\n\nSearch and fetch articles from Grokipedia.com — xAI's AI-generated encyclopedia.\n\nSource: github.com/kirillleventcov/grokipedia-parser\n\nRequirements\nNode.js (v18+) / Bun — used to run the search and fetch scripts\nDependencies — jsdom and @mozilla/readability (installed via bun install)\nInstall\ncd ~/.openclaw/workspace/skills/Grokipedia\nbun install --production\n\n\nNote: Installation creates a node_modules/ directory in the skill folder. The scripts themselves only output to stdout at runtime.\n\nScripts\nSearch Articles\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs \"query\" [--limit N]\n\n\nParameters:\n\nquery - Search term (required)\n--limit N - Max results (1-50, default: 10)\n\nOutput: JSON array with slug, title, snippet, relevanceScore\n\nExample:\n\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs \"artificial intelligence\" --limit 5\n\nFetch Article\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Article_Slug\"\n\n\nParameters:\n\nslug - Article slug (required, case-sensitive, use underscores)\n\nOutput: Clean markdown article content\n\nExample:\n\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Helsinki\"\nnode ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs \"Artificial_intelligence\"\n\nWhat This Skill Does\nNetwork access: Fetches from grokipedia.com only (search API + article pages)\nNo credentials: Public read-only access, no API keys or tokens needed\nNo runtime file writes: Only outputs to stdout (JSON for search, markdown for articles). Install step creates node_modules/ in the skill directory.\nNo persistence: No background processes, no cron, no elevated privileges\nDependencies: jsdom (DOM parsing) and @mozilla/readability (article extraction)\nNotes\nArticle slugs are case-sensitive (e.g., Helsinki not helsinki)\nSlugs use underscores for spaces (e.g., Artificial_intelligence)\nSearch returns up to 50 results max\nArticles contain internal links in format [text](/page/Slug)\nContent is AI-generated by Grok"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kirillleventcov/grokipedia",
    "publisherUrl": "https://clawhub.ai/kirillleventcov/grokipedia",
    "owner": "kirillleventcov",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/grokipedia",
    "downloadUrl": "https://openagent3.xyz/downloads/grokipedia",
    "agentUrl": "https://openagent3.xyz/skills/grokipedia/agent",
    "manifestUrl": "https://openagent3.xyz/skills/grokipedia/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/grokipedia/agent.md"
  }
}