← Back to Skills Marketplace
semithin

CoinMeta-Skill

by CoinMeta · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
263
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install coinmeta-skill
Description
Fetch latest cryptocurrency newsflashes and market updates using CoinMeta API with keyword search and pagination support.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Tags
crypto
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install coinmeta-skill
  3. After installation, invoke the skill by name or use /coinmeta-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug coinmeta-skill
Version 1.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is CoinMeta-Skill?

Fetch latest cryptocurrency newsflashes and market updates using CoinMeta API with keyword search and pagination support. It is an AI Agent Skill for Claude Code / OpenClaw, with 263 downloads so far.

How do I install CoinMeta-Skill?

Run "/install coinmeta-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is CoinMeta-Skill free?

Yes, CoinMeta-Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does CoinMeta-Skill support?

CoinMeta-Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created CoinMeta-Skill?

It is built and maintained by CoinMeta (@semithin); the current version is v1.0.2.

💬 Comments