← 返回 Skills 市场
semithin

CoinMeta-Skill

作者 CoinMeta · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
263
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install coinmeta-skill
功能描述
Fetch latest cryptocurrency newsflashes and market updates using CoinMeta API with keyword search and pagination support.
使用说明 (SKILL.md)

CoinMeta API

Query cryptocurrency newsflash data.

Base URL: https://api.coinmeta.com Auth: Header X-Api-Key: $COINMETA_API_KEY Response format: {"code": 200, "data": [...], "msg": "success"} — code 200 = success


Newsflash List

Endpoint: POST https://api.coinmeta.com/open/v1/newsflash/list

curl example:

curl -s -X POST -H "Accept:*/*" \
  -H "X-Api-Key: ${COINMETA_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{"page":1,"size":10}' \
  "https://api.coinmeta.com/open/v1/newsflash/list"

Request params:

Param Type Description
page int Page number, default 1
size int Page size, default 10

Response fields:

Field Type Description
id int Newsflash ID
views int View count
title string Title
content string Content (HTML)
createdAt int Unix timestamp

Keyword Search

Endpoint: POST https://www.coinmeta.com/open/v1/newsflash/search

curl -s -X POST -H "Accept:*/*" \
  -H "X-Api-Key: ${COINMETA_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{"page":1,"size":10,"keyword":"btc"}' \
  "https://www.coinmeta.com/open/v1/newsflash/search"

Request params:

Param Type Description
page int Page number, default 1
size int Page size, default 10
keyword string Search keyword, required

Output format:

📰 Crypto Newsflash · Page [N]

1. [Title]
   Views: [views] · [Time]
   [Summary...]

2. [Title]
   Views: [views] · [Time]
   [Summary...]
...

Parsing rules:

  • createdAt is Unix timestamp, convert to readable time
  • content contains HTML tags, strip tags to display plain text

Article List

Endpoint: POST https://api.coinmeta.com/open/v1/article/list

curl example:

curl -s -X POST -H "Accept:*/*" \
  -H "X-Api-Key: ${COINMETA_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{"page":1,"size":10}' \
  "https://api.coinmeta.com/open/v1/article/list"

Request params:

Param Type Description
page int Page number, default 1
size int Page size, default 10

Response fields:

Field Type Description
id int Article ID
title string Title
summary string Summary
views int View count
createdAt int Unix timestamp

Article Search

Endpoint: POST https://api.coinmeta.com/open/v1/article/search

curl example:

curl -s -X POST -H "Accept:*/*" \
  -H "X-Api-Key: ${COINMETA_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{"page":1,"size":10,"keyword":"比特币"}' \
  "https://api.coinmeta.com/open/v1/article/search"

Request params:

Param Type Description
page int Page number, default 1
size int Page size, default 10
keyword string Search keyword, required

Response fields: Same as Article List


Error Handling

code msg Description
401 Missing API key API key not set, set COINMETA_API_KEY environment variable
401 Invalid API key API key invalid, please verify
422 Parameter error Invalid request params, check page/size
!= 200 Other Request failed, display msg content
network error - Prompt to retry
安全使用建议
Before installing or providing an API key: 1) Verify the skill's origin — there is no homepage or source repository listed; prefer skills with a known owner or public repo. 2) Confirm the platform will store COINMETA_API_KEY securely and that you will only provide a key scoped to CoinMeta (do not reuse high-privilege or cross-service keys). 3) Ask the publisher to reconcile the manifest inconsistency (registry shows no required env/bins but SKILL.md requires COINMETA_API_KEY and curl). 4) Test the skill in a sandbox account/key first to confirm it only calls the documented CoinMeta endpoints (note the api.coinmeta.com vs www.coinmeta.com discrepancy and ask the author to clarify). 5) If you cannot verify the vendor or reveal a safe test key, do not provide secrets — you can still evaluate informational behavior by inspecting logs or running equivalent curl commands manually.
功能分析
Type: OpenClaw Skill Name: coinmeta-skill Version: 1.0.2 The coinmeta skill bundle is a standard API wrapper for querying cryptocurrency news and articles from api.coinmeta.com. It uses curl to perform authenticated POST requests and provides clear instructions for the agent to parse JSON responses and handle errors, with no evidence of malicious intent, data exfiltration, or prompt injection.
能力标签
crypto
能力评估
Purpose & Capability
The SKILL.md describes exactly the behavior advertised (querying CoinMeta endpoints for newsflashes and articles). Requiring an API key (COINMETA_API_KEY) and curl is proportional to the task. However, the registry-level summary provided with the skill lists no required env vars or binaries while SKILL.md declares both COINMETA_API_KEY and curl — this metadata mismatch is unexpected and reduces confidence.
Instruction Scope
Instructions are narrowly scoped to making POST requests to specific CoinMeta endpoints, parsing timestamps, and stripping HTML from content. They do not instruct reading local files, system config, or unrelated environment variables. Minor issue: endpoints use two domains (api.coinmeta.com vs www.coinmeta.com) which looks like an inconsistency/typo but not necessarily malicious.
Install Mechanism
This is instruction-only with no install spec or code files, so nothing is written to disk by the skill itself. Runtime requires curl to be present; no third-party packages or downloads are requested.
Credentials
SKILL.md declares COINMETA_API_KEY as primaryEnv (reasonable for an API client). But the registry metadata provided above states 'Required env vars: none' — that inconsistency is concerning because it could mean the manifest shown to the platform or user is incomplete or out of sync. The skill asks for a single API key only (no unrelated credentials), which is proportionate if the key is only for CoinMeta, but verify the platform prompts/labels this key clearly and that you don't reuse sensitive keys from other services.
Persistence & Privilege
Skill flags show no elevated persistence (always: false). It is user-invocable and may be called autonomously by the agent (default), which is expected for skills. The skill does not request modification of other skills or system-wide configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install coinmeta-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /coinmeta-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Added Article List and Article Search endpoints, enabling users to access and search full cryptocurrency articles. - Updated documentation to include new response fields and curl examples for articles. - No code changes; documentation only.
v1.0.1
- Added SKILL.md with detailed documentation for the CoinMeta cryptocurrency newsflash API. - Described authentication, endpoints, request/response formats, sample curl usage, error handling, and output formatting guidelines. - Lists required environment variables and system dependencies.
元数据
Slug coinmeta-skill
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

CoinMeta-Skill 是什么?

Fetch latest cryptocurrency newsflashes and market updates using CoinMeta API with keyword search and pagination support. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 263 次。

如何安装 CoinMeta-Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install coinmeta-skill」即可一键安装,无需额外配置。

CoinMeta-Skill 是免费的吗?

是的,CoinMeta-Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

CoinMeta-Skill 支持哪些平台?

CoinMeta-Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 CoinMeta-Skill?

由 CoinMeta(@semithin)开发并维护,当前版本 v1.0.2。

💬 留言讨论