Install
openclaw skills install grokipediaSearch and fetch articles from Grokipedia.com — xAI's AI-generated encyclopedia (like Wikipedia but written by Grok). Use when asked about topics that might have a Grokipedia article, or when the user explicitly mentions Grokipedia.
openclaw skills install grokipediaSearch and fetch articles from Grokipedia.com — xAI's AI-generated encyclopedia.
Source: github.com/kirillleventcov/grokipedia-parser
jsdom and @mozilla/readability (installed via bun install)cd ~/.openclaw/workspace/skills/Grokipedia
bun install --production
Note: Installation creates a
node_modules/directory in the skill folder. The scripts themselves only output to stdout at runtime.
node ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs "query" [--limit N]
Parameters:
query - Search term (required)--limit N - Max results (1-50, default: 10)Output: JSON array with slug, title, snippet, relevanceScore
Example:
node ~/.openclaw/workspace/skills/Grokipedia/scripts/search.mjs "artificial intelligence" --limit 5
node ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs "Article_Slug"
Parameters:
slug - Article slug (required, case-sensitive, use underscores)Output: Clean markdown article content
Example:
node ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs "Helsinki"
node ~/.openclaw/workspace/skills/Grokipedia/scripts/fetch.mjs "Artificial_intelligence"
grokipedia.com only (search API + article pages)node_modules/ in the skill directory.jsdom (DOM parsing) and @mozilla/readability (article extraction)Helsinki not helsinki)Artificial_intelligence)[text](/page/Slug)