---
name: xrpl-search
version: 0.1.0
description: Search the latest XRPL developer resources — docs, XLS standards, XRPLF repos, Ripple insights — to build products. Free, 10 queries/24h.
license: MIT
homepage: https://hypermove.xyz
install: Fetch https://hypermove.xyz/api/skills/xrpl-search?format=md and save it as xrpl-search/SKILL.md in your agent's skills directory. No CLI, no npm, no MCP required.
---

# xrpl-search

Search the latest XRPL developer resources — docs, XLS standards, XRPLF repos, Ripple insights — to build products. Free, 10 queries/24h.

## Run it (in your workspace — no MCP required)

This is a self-contained agent-skill. Once this SKILL.md is in your skills
directory it autoloads and runs locally by following the procedure below —
no HyperMove server or MCP connection is needed to install or run it.

**Inputs** (required: query):

```json
{
  "query": {
    "type": "string"
  },
  "sourceTypes": {
    "type": "array",
    "items": {
      "type": "string",
      "enum": [
        "docs",
        "xls",
        "github",
        "blog",
        "insights"
      ]
    }
  },
  "limit": {
    "type": "integer",
    "maximum": 15
  }
}
```

**Procedure** — apply the HyperMove harness pattern locally:
1. Validate the inputs above and apply your cost / rate / prompt-injection policy.
2. Do the task: Search the latest XRPL developer resources — docs, XLS standards, XRPLF repos, Ripple insights — to build products. Free, 10 queries/24h.
3. Definition of done: the output is present and well-formed.

Composes (harness primitives you apply above): lib/mcp/search, lib/mcp/xrpl-sources.

## External protocol (optional, via HyperMove MCP)

The skill runs fully locally. Connect the HyperMove MCP only if you need the
external-protocol layer — live cross-chain data (`data.call`) or to make/receive
a payment (`payments.settle`, x402/mpp · USDC/RLUSD):

- add MCP server `https://hypermove.xyz/api/mcp` (transport: http)
- Claude Code: `claude mcp add --transport http hypermove https://hypermove.xyz/api/mcp`