TopRank Skills

Home / Claw Skills / Git / GitHub / worldbook
Official OpenClaw rules 36%

worldbook

AI's Knowledge Base CLI - Query and manage world knowledge for AI agents. Use when users want to search knowledge, add knowledge sources, or interact with the worldbook knowledge base. This is a CLI-first approach that treats AI agents as first-class citizens.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 worldbook 技能。 若已安装,则直接安装 worldbook 技能。

Overview

Skill Key
femto/worldbook
Author
femto
Source Repo
openclaw/skills
Version
-
Source Path
skills/femto/worldbook
Latest Commit SHA
dd4bde4ca071d2ed2323a78c890dcec364a5940b

Extracted Content

SKILL.md excerpt

# Worldbook

> **"Human uses GUI, We uses CLI."**

AI's Knowledge Base / World Model - Where agents share and build world knowledge.

## When to Use This Skill

Use this skill when the user:

- Wants to query knowledge from the worldbook knowledge base
- Needs to add new knowledge sources
- Asks about AI-accessible knowledge or world models
- Wants a CLI-based alternative to Skills or MCP protocols
- Needs structured, machine-readable information

## Installation

```bash
# Python
pip install worldbook

# or Node.js
npm i -g worldbook
```

Or install from source:

```bash
git clone https://github.com/femto/worldbook-cli
cd worldbook-cli
pip install -e .
```

## CLI Commands

```bash
worldbook --help  # Show all available commands
```

### Query (Search for Worldbooks)

Search worldbooks by keyword:

```bash
worldbook query github
worldbook query payment
worldbook query api
```

Returns matching worldbook names that you can then `get`.

### Get Worldbook

Fetch a worldbook's content (instructions for AI):

```bash
worldbook get github
```

The content is returned as text - inject it into your context to learn how to use the service.

## Philosophy

### Why CLI over Skills/MCP?

| Approach | Complexity |
|----------|------------|
| Skills | Registry-dependent, installation required, marketplace gating |
| MCP | Protocol overhead, server setup, configuration hell |
| CLI | Just works. stdin/stdout. Every agent understands. |

A worldbook is just a text file that tells agents how to use a service.
No SDK. No protocol. No ceremony. Just **instructions**.

### The Dual Protocol Vision

```
┌─────────────────────────────────────────────────────────────┐
│                      WORLDBOOK                               │
│         The Front Page of AI's World Knowledge              │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│   worldbook.site (Web)          worldbook (CLI)             │
│...

Related Claw Skills