Integration
Wikiclaw
The free encyclopedia for the OpenClaw AI agent ecosystem. Browse 199+ agents, 5,400+ skills, plugins, and integrations.
Install
npm install
```
README
<div align="center">
<img src="public/banner.png" alt="WikiClaw โ The OpenClaw Encyclopedia" width="600" />
### The free encyclopedia for the [OpenClaw](https://openclaw.ai) AI agent ecosystem.
A Wikipedia-style wiki documenting **199+ production-ready agents**, **5,400+ skills**, plugins, and integrations from the OpenClaw community โ all in one beautifully designed, lightning-fast site.
[**Live demo โ**](https://wikiclaw.dev) ยท [**GitHub**](https://github.com/wikiclaw-org/wikiclaw) ยท [**Follow on X**](https://x.com/allankjensen) ยท [**Report issue**](https://github.com/wikiclaw-org/wikiclaw/issues)






</div>
---
## โจ What is WikiClaw?
[OpenClaw](https://openclaw.ai) is the most popular open-source personal AI agent framework, with 247k+ GitHub stars. It runs on your machine, connects through messaging apps you already use (WhatsApp, Telegram, Slack, Discord, iMessage), and takes action on your behalf.
**WikiClaw** is the community-maintained encyclopedia for that ecosystem. It indexes every agent, skill, and plugin in one place, with a clean reading experience inspired by Wikipedia and a modern aesthetic borrowed from OpenClaw itself.
---
## ๐ฏ Features
- ๐ **199+ agents** seeded from [`awesome-openclaw-agents`](https://github.com/mergisi/awesome-openclaw-agents) with full SOUL.md content
- ๐๏ธ **25+ categories** spanning business, creative, engineering, healthcare, and more
- ๐ **Instant search** across all agents โ names, roles, categories
- ๐ **Wikipedia-style article pages** with infoboxes, table of contents, "See also" sections, and external links
- ๐ **Portal homepage** with featured agent, "Did you know" facts, quick start, and visual category grid
- โก **Edge-fast** โ Upstash Redis + Next.js ISR for sub-100ms page loads anywhere in the world
- ๐ฑ **Mobile-first responsive design** โ works beautifully on every screen size
- ๐จ **Eye-catching design** โ dark hero with glowing orb, OpenClaw red accents, Wikipedia-clean article body
- ๐ค **SEO-ready** โ sitemap, robots, OpenGraph images, structured metadata for every page
- ๐ **Deploy in one click** to Vercel
---
## ๐๏ธ Architecture
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Next.js 16 App Router + React Server Comps โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โข Static page generation (ISR) โ
โ โข Dynamic OG image rendering โ
โ โข Client-side filter & search โ
โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Upstash Redis (REST API) โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โข agent:{slug} โ agent data hash โ
โ โข agents:all โ sorted set index โ
โ โข category:{slug} โ category metadata โ
โ โข category:{slug}:agents โ set membership โ
โ โข stats โ global counts โ
โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ scripts/seed.ts โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ Pulls agents.json + SOUL.md files from โ
โ awesome-openclaw-agents on GitHub and โ
โ populates Redis with a single pipeline. โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
**No PostgreSQL. No backend server. No complex ORM.** Just Redis hashes, server components, and ISR. The entire database is ~500 KB.
---
## ๐ Quick start
### 1. Clone and install
```bash
git clone https://github.com/wikiclaw-org/wikiclaw.git
cd wikiclaw
npm install
```
### 2. Set up Upstash Redis
WikiClaw uses [Upstash Redis](https://upstash.com/) โ a serverless Redis with a generous free tier and native Vercel integration.
1. Create a free database at [upstash.com](https://upstash.com/)
2. Copy your `KV_REST_API_URL` and `KV_REST_API_TOKEN`
3. Create `.env.local` from the example:
```bash
cp .env.example .env.local
# then paste your credentials
```
### 3. Seed the database
```bash
npm run seed
```
This pulls all 199 agents and their SOUL.md files from GitHub and writes them to Redis in a single batched pipeline. Takes about 30 seconds.
### 4. Run the dev server
```bash
npm run dev
```
Open [http://localhost:3000](http://localhost:3000). ๐
---
## ๐ Project structure
```
wikiclaw/
โโโ public/
โ โโโ logo.png # WikiClaw mascot (primary logo)
โ โโโ banner.png # Wordmark + mascot banner
โ โโโ icon-192.png # PWA icon 192x192
โ โโโ icon-512.png # PWA icon 512x512
โ
โโโ scripts/
โ โโโ seed.ts # Fetch agents.json โ Redis
โ
โโโ src/
โ โโโ app/
โ โ โโโ layout.tsx # Root layout, metadata, fonts
โ โ โโโ page.tsx # Portal homepage (hero + cards)
โ โ โโโ globals.css # Wikipedia + OpenClaw styles
โ โ โโโ icon.png # Favicon (from mascot)
โ โ โโโ apple-icon.png # iOS home screen icon
โ โ โโโ opengraph-image.tsx # Dynamic OG image
โ โ โโโ manifest.ts # PWA manifest
โ โ โโโ robots.ts # robots.txt
โ โ โโโ sitemap.ts # Auto-generated sitemap
โ โ โโโ agents/
โ โ โ โโโ page.tsx # Alphabetical agent index
โ โ โ โโโ AgentsListClient.tsx # Filter + group-by-letter UI
โ โ โ โโโ [slug]/page.tsx # Wikipedia-style agent article
โ โ โโโ categories/
โ โ โ โโโ page.tsx # Visual category grid
โ โ โ โโโ [slug]/page.tsx # Pages-in-category listing
โ โ โโโ search/page.tsx # Server-side search results
โ โ
โ โโโ components/
โ โ โโโ layout/ # Header, Footer
โ โ โโโ agents/ # AgentCard, AgentInfobox, AgentGrid
โ โ โโโ categories/ # CategoryBadge, CategoryFilter
โ โ โโโ search/ # SearchBar, HeroSearchBar
โ โ โโโ content/ # MarkdownRenderer
โ โ
โ โโโ lib/
โ โ โโโ redis.ts # Upstash client singleton
โ โ โโโ agents.ts # Agent data access
โ โ โโโ categories.ts # Category data access
โ โ โโโ types.ts # TypeScript interfaces
โ โ โโโ utils.ts # slugify, formatters
โ โ
โ โโโ config/
โ โโโ site.ts # Site metadata constants
โ โโโ categories.ts # Category color map
โ
โโโ .env.example # Required env vars template
โโโ package.json
```
---
## ๐ ๏ธ Tech stack
| Layer | Choice |
| ---------------- | ----------------------------------------------------- |
| **Framework** | [Next.js 16](https://nextjs.org/) (App Router, Turbopack) |
| **Language** | TypeScript 5 |
| **Styling** | [Tailwind CSS 4](https://tailwindcss.com/) |
| **Typography** | Inter (sans) + Crimson Pro (serif headings) |
| **Database** | [Upstash Redis](https://upstash.com/) (REST API) |
| **Markdown** | `react-markdown` + `remark-gfm` |
| **Hosting** | [Vercel](https://vercel.com/) |
| **Data source** | [`awesome-openclaw-agents`](https://github.com/mergisi/awesome-openclaw-agents) |
---
## โ๏ธ Deploy to Vercel
WikiClaw is built to deploy to Vercel in under a minute.
1. **Fork this repo**
2. Click the Vercel deploy button (or import the repo manually):
[](https://vercel.com/new/clone?repository-url=https://github.com/wikiclaw-org/wikiclaw)
3. Add your Upstash Redis env vars in Vercel project settings:
- `KV_REST_API_URL`
- `KV_REST_API_TOKEN`
4. Deploy!
5. Run the seed script locally once to populate your Upstash database โ it's a one-time operation.
That's it. No servers to manage, no databases to spin up, no DevOps nightmare.
---
## ๐ค Contributing
Contributions are very welcome! WikiClaw is a community wiki and we want it to grow with the OpenClaw ecosystem.
**Easy ways to contribute:**
- ๐ **Fix typos or improve descriptions** โ open a PR against `scripts/seed.ts` or the upstream `awesome-openclaw-agents` repo
- ๐จ **Polish the UI** โ there's always room to make things prettier
- ๐ **File bugs** โ open an issue with steps to reproduce
- ๐ก **Suggest features** โ community ratings, edit history, "Submit Agent" form, plugins page, skills page (Phase 2)
**Roadmap:**
- [x] Phase 1 โ Agent Wiki (current)
- [ ] Phase 2 โ Skills, Plugins & Integrations pages
- [ ] Phase 3 โ Community features (auth, ratings, wiki-style edits, "Submit Agent" form)
---
## ๐ Acknowledgements
- The [**OpenClaw**](https://openclaw.ai) team and community for building an amazing agent framework
- [**mergisi/awesome-openclaw-agents**](https://github.com/mergisi/awesome-openclaw-agents) for the agent dataset
- [**VoltAgent/awesome-openclaw-skills**](https://github.com/VoltAgent/awesome-openclaw-skills) for the skills catalogue (used in Phase 2)
- The thousands of community contributors who built and shared their agents
---
## ๐ License
[MIT](LICENSE) โ free to use, modify, and d
... (truncated)
integration
Comments
Sign in to leave a comment