Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

mempool-space-openapi-skillmempool 空间 openapi 技巧

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

4,328

周安装

184

GitHub Stars

公开资料未说明

下载量

1,516
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mempool-space-openapi-skill(mempool 空间 openapi 技巧)
来源仓库:https://github.com/jolestar/mempool-space-openapi-skill
安装命令:
openclaw skills install mempool-space-openapi-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mempool-space-openapi-skill

简介

通过 UXC 操作 mempool.space 公共比特币和闪电浏览器 API,并采用精心策划的 OpenAPI 架构、免身份验证设置和先读护栏。

SKILL.md

name
mempool-space-openapi-skill
description
Operate mempool.space public Bitcoin and Lightning explorer APIs through UXC with a curated OpenAPI schema, no-auth setup, and read-first guardrails.

mempool.space API Skill

Use this skill to run mempool.space public Bitcoin and Lightning explorer operations through uxc + OpenAPI.

Reuse the uxc skill for shared execution, auth, and error-handling guidance.

Prerequisites

  • uxc is installed and available in PATH.
  • Network access to https://mempool.space/api.
  • Access to the curated OpenAPI schema URL:

- https://raw.githubusercontent.com/holon-run/uxc/main/skills/mempool-space-openapi-skill/references/mempool-space-public.openapi.json

Scope

This skill covers a read-first mempool.space surface for:

  • Bitcoin fee estimation and mempool state reads
  • block tip height checks
  • address and transaction status reads
  • Lightning network search, statistics, node rankings, node detail, and channel reads

This skill does not cover:

  • transaction broadcast or package submission
  • websocket subscriptions
  • internal or admin routes
  • every Esplora-compatible endpoint exposed by mempool.space

Authentication

mempool.space public reads in this skill do not require authentication.

Core Workflow

  1. Use the fixed link command by default:

- command -v mempool-space-openapi-cli - If missing, create it: uxc link mempool-space-openapi-cli https://mempool.space/api --schema-url https://raw.githubusercontent.com/holon-run/uxc/main/skills/mempool-space-openapi-skill/references/mempool-space-public.openapi.json - mempool-space-openapi-cli -h

  1. Inspect operation schema first:

- mempool-space-openapi-cli get:/v1/fees/recommended -h - mempool-space-openapi-cli get:/mempool -h - mempool-space-openapi-cli get:/address/{address} -h - mempool-space-openapi-cli get:/v1/lightning/search -h - mempool-space-openapi-cli get:/v1/lightning/channels/{short_id} -h

  1. Prefer narrow reads before broader scans:

- mempool-space-openapi-cli get:/v1/fees/recommended - mempool-space-openapi-cli get:/blocks/tip/height - mempool-space-openapi-cli get:/v1/lightning/statistics/latest

  1. Execute with key/value parameters:

- mempool-space-openapi-cli get:/address/{address} address=bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh - mempool-space-openapi-cli get:/tx/{txid}/status txid=4d5d7f2d5dc69aa68a51887db07dd6d906f31f9141320f9f0b4bab76d735a47f - mempool-space-openapi-cli get:/v1/lightning/search searchText=bfx - mempool-space-openapi-cli get:/v1/lightning/channels public_key=033d8656219478701227199cbd6f670335c8d408a92ae88b962c49d4dc0e83e025 status=active - mempool-space-openapi-cli get:/v1/lightning/channels/{short_id} short_id=835866331763769345

Operations

  • get:/v1/fees/recommended
  • get:/mempool
  • get:/blocks/tip/height
  • get:/address/{address}
  • get:/tx/{txid}/status
  • get:/v1/lightning/statistics/latest
  • get:/v1/lightning/search
  • get:/v1/lightning/nodes/rankings
  • get:/v1/lightning/nodes/{public_key}
  • get:/v1/lightning/channels
  • get:/v1/lightning/channels/{short_id}

Guardrails

  • Keep automation on the JSON output envelope; do not use --text.
  • Parse stable fields first: ok, kind, protocol, data, error.
  • Treat this v1 skill as read-only. Do not use tx/push, package submission, or internal routes.
  • Prefer the curated fee, mempool, and Lightning reads here before dropping to the much larger generic Esplora surface.
  • mempool.space is a public explorer service, so mempool state and Lightning rankings can move quickly. Re-query instead of assuming cached values remain current.
  • For get:/v1/lightning/channels/{short_id}, mempool.space currently accepts the channel id string even though the route label says short_id; prefer values returned by search or node channel listing.
  • mempool-space-openapi-cli <operation> ... is equivalent to uxc https://mempool.space/api --schema-url <mempool_space_openapi_schema> <operation> ....

References

  • Usage patterns: references/usage-patterns.md
  • Curated OpenAPI schema: references/mempool-space-public.openapi.json
  • Official mempool repository: https://github.com/mempool/mempool

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.04%
按下载量换算1,365

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills