Search and fetch articles from Grokipedia.com - xAI's AI-generated encyclopedia.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add Demerzels-lab/elsamultiskillagent --skill grokipedia --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Grokipedia?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/demerzels-lab-grokipedia)More formats (shields.io, HTML) on the badges page.
# Grokipedia Parser
Search and fetch articles from Grokipedia.com - xAI's AI-generated encyclopedia.
## Overview
Grokipedia is an AI-powered encyclopedia created by xAI (makers of Grok). This skill provides clean, LLM-friendly access to search and retrieve articles.
## Scripts
### Search Articles
```bash
node ~/.openclaw/workspace/grokipedia-parser/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:**
```bash
node ~/.openclaw/workspace/grokipedia-parser/scripts/search.mjs "artificial intelligence" --limit 5
```
### Fetch Article
```bash
node ~/.openclaw/workspace/grokipedia-parser/scripts/fetch.mjs "Article_Slug"
```
**Parameters:**
- `slug` - Article slug (required, case-sensitive, use underscores)
**Output:** Clean markdown article content
**Example:**
```bash
node ~/.openclaw/workspace/grokipedia-parser/scripts/fetch.mjs "Helsinki"
node ~/.openclaw/workspace/grokipedia-parser/scripts/fetch.mjs "Artificial_intelligence"
```
## Notes
- Article slugs are case-sensitive (e.g., `Helsinki` not `helsinki`)
- Slugs use underscores for spaces (e.g., `Artificial_intelligence`)
- Search returns up to 50 results max
- Articles contain internal links in format `[text](/page/Slug)`
- Content is AI-generated by Grok
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!