skills$openclaw/jb-docs
mejango556

by mejango

jb-docs – OpenClaw Skill

jb-docs is an OpenClaw Skills integration for coding workflows. Query Juicebox V5 documentation via REST API or MCP server. Search docs, get contract addresses, and find implementation guides.

556 stars1.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namejb-docs
descriptionQuery Juicebox V5 documentation via REST API or MCP server. Search docs, get contract addresses, and find implementation guides. OpenClaw Skills integration.
ownermejango
repositorymejango/juicypath: jb-docs
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mejango/juicy:jb-docs
last updatedFeb 7, 2026

Maintainer

mejango

mejango

Maintains jb-docs in the OpenClaw Skills directory.

View GitHub profile
File Explorer
1 files
jb-docs
SKILL.md
4.0 KB
SKILL.md

name: jb-docs description: Query Juicebox V5 documentation via REST API or MCP server. Search docs, get contract addresses, and find implementation guides.

Query Juicebox documentation via the REST API or MCP server.

MCP Server (Recommended)

Add to your Claude Code or MCP client configuration:

{
  "mcpServers": {
    "juice-docs": {
      "type": "http",
      "url": "https://docs.juicebox.money/api/mcp-sse"
    }
  }
}

MCP Tools Available

  • search_docs - Search documentation by keyword
  • get_doc - Get full document content by path
  • list_docs_by_category - List docs in a category
  • get_doc_structure - Get documentation structure

Direct MCP Call Example

curl -X POST https://docs.juicebox.money/api/mcp-sse \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_docs","arguments":{"query":"pay hook"}}}'

REST API Endpoints

Search Documentation

POST https://docs.juicebox.money/api/mcp/search
Content-Type: application/json

{
  "query": "pay hook",
  "category": "all",    # all, developer, user, dao, ecosystem
  "version": "v5",      # v3, v4, v5, all
  "limit": 10
}

Get Specific Document

POST https://docs.juicebox.money/api/mcp/get-doc
Content-Type: application/json

{
  "path": "dev/v5/learn/overview.md"
}

List Documents by Category

GET https://docs.juicebox.money/api/mcp/list-docs?category=developer&version=v5

Get Documentation Structure

GET https://docs.juicebox.money/api/mcp/structure

Using WebFetch

Use WebFetch to query the API or fetch documentation pages directly:

Search for documentation

WebFetch https://docs.juicebox.money/dev/v5/build/pay-hook/
"Extract how to implement a pay hook"

Fetch specific pages

WebFetch https://docs.juicebox.money/dev/v5/learn/overview/
"Summarize the V5 protocol overview"

Documentation Structure

/dev/                    # Developer documentation root
/dev/v5/learn/           # Conceptual documentation
/dev/v5/build/           # Implementation guides
/dev/v5/api/             # API reference
/dev/v5/api/core/        # Core contract docs

Available Documentation

Protocol Documentation

  • Learn: Conceptual guides and protocol overview
  • Build: Implementation guides and tutorials
  • API: Technical specifications and contract interfaces

Contract Addresses

  • Deployed addresses for all networks (Ethereum, Optimism, Arbitrum, Base)
  • Latest V5 contract addresses
  • Hook deployer addresses

Code References

  • Interface definitions
  • Struct documentation
  • Event signatures

Common Documentation Queries

"What's the JBController address on mainnet?"

Use the /references folder for offline contract addresses, or fetch from docs.

"How do I implement a pay hook?"

WebFetch https://docs.juicebox.money/dev/v5/build/pay-hook/
"Extract implementation steps for pay hooks"

"What events does JBMultiTerminal emit?"

WebFetch https://docs.juicebox.money/dev/v5/api/core/jbmultiterminal/
"List all events emitted by JBMultiTerminal"

Official Resources

Generation Guidelines

  1. Use WebFetch to query documentation pages directly
  2. Reference the /references folder for offline interface/struct definitions
  3. Provide direct links to relevant documentation
  4. Default to V5 unless user explicitly asks about older versions

Example Prompts

  • "What's the JBController address on Optimism?"
  • "Show me the documentation for pay hooks"
  • "What events does the terminal emit?"
  • "Get the latest V5 contract addresses"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install jb-docs?

Run openclaw add @mejango/juicy:jb-docs in your terminal. This installs jb-docs into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mejango/juicy. Review commits and README documentation before installing.