← 返回 Skills 市场
archjian

Marsbit News

作者 archjian · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
313
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install marsbit-news
功能描述
Retrieve the latest and searched crypto, blockchain, and Web3 news articles and flash updates from Marsbit with full content on request.
使用说明 (SKILL.md)

Marsbit News Skill

name: marsbit-news
description: Retrieve crypto, blockchain and Web3 news articles and flash updates from Marsbit.Marsbit is a crypto and Web3 media platform providing market news, analysis, and real-time updates.
keywords: crypto, blockchain, web3, bitcoin, ethereum, defi, nft
version: 1.0.0
author: Marsbit
source: https://news.marsbit.co

Marsbit News Skill provides structured crypto news data including:

  • latest crypto articles
  • full article content
  • article search by keyword
  • latest flash news
  • flash news search

Base API

https://api.marsbit.co/info/ai


Tools

get_latest_articles

Retrieve the latest Marsbit articles.

Endpoint
GET /articles/latest

Parameters

name type required description
limit integer no number of articles to return

Example

https://api.marsbit.co/info/ai/articles/latest?limit=5

Response Example

{ "data": [ { "id": "20260310172909758349", "title": "获顶级风投押注,Zcash原班人马2500万美元「再创业」", "summary": "...", "url": "https://news.marsbit.co/20260310172909758349.html", "publishedAt": "2026-03-10T09:29:10Z", "source": "Marsbit" } ] }

Notes
Returns article metadata only. Use get_article_detail to retrieve full content.


get_article_detail

Retrieve the full content of a Marsbit article.

Endpoint
GET /articles/detail

Parameters

name type required description
id string yes article id

Example

https://api.marsbit.co/info/ai/articles/detail?id=20260310163710942215

Response Example

{ "data": { "id": "20260310163710942215", "title": "你的AI焦虑,正在被人收割", "summary": "...", "url": "https://news.marsbit.co/20260310163710942215.html", "publishedAt": "2026-03-10T08:37:11Z", "source": "Marsbit", "content": "..." } }

Notes
Returns full article content.


search_articles

Search Marsbit articles by keyword.

Endpoint
GET /articles/search

Parameters

name type required description
query string yes search keyword
limit integer no max number of results

Example

https://api.marsbit.co/info/ai/articles/search?query=BTC&limit=5


get_latest_flashes

Retrieve the latest Marsbit flash news.

Flash news are short real-time updates about the crypto market.

Endpoint
GET /flashes/latest

Parameters

name type required description
limit integer no number of flash updates

Example

https://api.marsbit.co/info/ai/flashes/latest?limit=10

Response Example

{ "data": [ { "id": "20260310174744190518", "title": "Wintermute:中东局势升级推动油价冲击,加密资产逆势跑赢", "url": "https://news.marsbit.co/flash/20260310174744190518.html", "publishedAt": "2026-03-10T09:47:44Z", "source": "Marsbit", "content": "..." } ] }


search_flashes

Search Marsbit flash news by keyword.

Endpoint
GET /flashes/search

Parameters

name type required description
query string yes search keyword
limit integer no max results

Example

https://api.marsbit.co/info/ai/flashes/search?query=BTC&limit=10


Tool Selection Guide

user request tool
latest crypto articles get_latest_articles
read full article get_article_detail
search topic articles search_articles
latest crypto breaking news get_latest_flashes
search flash news search_flashes

Response Guidelines

When presenting results:

  1. show title
  2. summarize key points
  3. include publish time
  4. include source
  5. include url

Avoid returning full article content unless the user explicitly asks.


Example Prompts

These user requests should trigger this skill.

English examples

  • latest crypto news
  • latest Marsbit articles
  • Bitcoin news
  • Ethereum news
  • crypto breaking news
  • search BTC news
  • crypto market updates

Chinese examples

  • 最新加密新闻
  • Marsbit 最新文章
  • BTC 新闻
  • ETH 新闻
  • 最新快讯
  • 比特币新闻
  • 加密市场资讯

Time Format

All timestamps use ISO 8601 UTC format.

Example

2026-03-10T09:29:10Z


Error Handling

If data is empty, return that no matching results were found.


Source

Marsbit
https://news.marsbit.co

安全使用建议
This skill is an instruction-only adapter for Marsbit's public news API and appears internally consistent. Before installing, consider: 1) You will be sending user queries to https://api.marsbit.co — if you have privacy concerns, avoid or block that domain. 2) The package has no homepage listed in the registry metadata, though SKILL.md points to news.marsbit.co; if you need provenance, verify the Marsbit site independently. 3) No credentials are requested, so there is no secret-exfiltration risk from env vars, but the agent will transmit query text to the Marsbit API when invoked. 4) Because the skill can be invoked autonomously by the agent (normal default), ensure you trust the agent's permission model if you do not want automatic network calls.
功能分析
Type: OpenClaw Skill Name: marsbit-news Version: 1.0.1 The Marsbit News skill is a standard API wrapper for retrieving crypto and Web3 news from the marsbit.co platform. The skill defines read-only tools for fetching latest articles, searching news, and retrieving article details via the 'api.marsbit.co' endpoint, with no evidence of malicious instructions, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
Name/description (crypto/Web3 news) match the documented endpoints (articles, flashes, search) under https://api.marsbit.co/info/ai. The skill requests no unrelated binaries, credentials, or config paths.
Instruction Scope
SKILL.md only describes calling Marsbit HTTP endpoints and how to present results. It does not instruct reading local files, environment variables, or posting data to unrelated external endpoints.
Install Mechanism
No install spec or code files are present (instruction-only). Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requires no environment variables or credentials. The declared primary sources are the public Marsbit API endpoints, which is proportionate to a news retrieval skill.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request elevated or persistent platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install marsbit-news
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /marsbit-news 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Marsbit News Skill 1.0.1 - No code or documentation changes detected in this version. - Functionality, API usage, and user response behavior remain unchanged. - This release is functionally identical to version 1.0.0.
v1.0.0
Marsbit News Skill 1.0.0 - Initial release providing access to Marsbit's crypto, blockchain, and Web3 news. - Retrieve latest articles and flash (breaking) news updates. - Search articles and flash news by keyword. - Fetch full article content with article ID. - Clear tool selection guide for different user requests. - Standardized response format and error handling.
元数据
Slug marsbit-news
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Marsbit News 是什么?

Retrieve the latest and searched crypto, blockchain, and Web3 news articles and flash updates from Marsbit with full content on request. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 313 次。

如何安装 Marsbit News?

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

Marsbit News 是免费的吗?

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

Marsbit News 支持哪些平台?

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

谁开发了 Marsbit News?

由 archjian(@archjian)开发并维护,当前版本 v1.0.1。

💬 留言讨论