← 返回 Skills 市场
thekenyeung

ClawBeat: OpenClaw News, Research & Events

作者 thekenyeung · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
260
总下载
1
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install clawbeat
功能描述
Query live OpenClaw ecosystem intelligence from ClawBeat.co — news, research papers, events, repos, and daily briefings for the OpenClaw agentic framework an...
使用说明 (SKILL.md)

ClawBeat: OpenClaw News, Research & Events

ClawBeat.co is a live intelligence feed for the OpenClaw agentic AI framework ecosystem and alternatives (NanoClaw, etc.). Use this skill to fetch curated news, research papers, GitHub projects, events, and daily briefings.

All requests use the public read-only API key. No credentials required.

CLAWBEAT_URL="https://twouuiapzrkezwbtylij.supabase.co/rest/v1"
CLAWBEAT_KEY="sb_publishable_j-AmOSIuQPEeKIyYAOA2Gg_8ekguDsG"

get_news

Fetch the latest intel/news items (most recent first).

curl -s "$CLAWBEAT_URL/news_items?select=title,url,summary,pub_date,tags&order=pub_date.desc&limit=20" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"

search_news

Search news by keyword (replace KEYWORD).

curl -s "$CLAWBEAT_URL/news_items?select=title,url,summary,pub_date,tags&title=ilike.*KEYWORD*&order=pub_date.desc&limit=20" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"

get_events

Fetch upcoming events sorted by start date.

curl -s "$CLAWBEAT_URL/events?select=title,url,organizer,event_type,location_city,location_state,start_date,end_date&order=start_date.asc&limit=50" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"

get_daily_edition

Fetch the most recent Daily Edition briefing (stories + summaries).

curl -s "$CLAWBEAT_URL/daily_editions?select=edition_date,stories&order=edition_date.desc&limit=1" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"

get_repos

Fetch tracked GitHub projects in the OpenClaw ecosystem.

curl -s "$CLAWBEAT_URL/github_projects?select=name,url,description,stars,language,topics&order=stars.desc&limit=50" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"

get_research

Fetch research papers tracked by ClawBeat.

curl -s "$CLAWBEAT_URL/research_papers?select=title,url,authors,pub_date,abstract&order=pub_date.desc&limit=20" \
  -H "apikey: $CLAWBEAT_KEY" \
  -H "Authorization: Bearer $CLAWBEAT_KEY"
安全使用建议
This skill is coherent with its description: it simply queries ClawBeat's public Supabase REST API using a publishable read-only key embedded in the examples. Before installing, consider: (1) confirm you are comfortable with the agent making outbound requests to the listed Supabase domain; do not send sensitive or private data in search keywords, since those queries go to the external service; (2) the API key in the SKILL.md appears to be a public/publishable key — it’s not a secret, but verify with ClawBeat if you need a different/official endpoint or key; (3) if you require stronger privacy, ask for a self-hosted or proxied endpoint or avoid invoking the skill for confidential content.
功能分析
Type: OpenClaw Skill Name: clawbeat Version: 1.0.1 The skill provides read-only access to the ClawBeat.co intelligence feed via a Supabase REST API (twouuiapzrkezwbtylij.supabase.co). It uses standard curl commands and a public API key to fetch news, events, and research papers, with no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description (ClawBeat news, research, events) match the runtime instructions: curl calls to a ClawBeat/Supabase REST API to list news, events, repos, research, and daily briefings. Nothing requested or instructed appears unrelated to fetching that data.
Instruction Scope
SKILL.md contains only curl examples that query a Supabase REST endpoint and instruct substituting keywords into query parameters. The skill will make outbound network requests to a third-party API (twouuiapzrkezwbtylij.supabase.co). There are no instructions to read local files, access other env vars, or transmit data to unexpected endpoints. Be aware that user-provided search terms will be interpolated into the URL and sent to the external service.
Install Mechanism
Instruction-only skill with no install spec or code files; nothing is written to disk by the skill itself. This is the lowest-risk install model.
Credentials
Registry metadata declares no required env vars or credentials, and SKILL.md provides example CLAWBEAT_URL and CLAWBEAT_KEY values. The key shown is a publishable/read-only key (not your private credentials). The presence of a hard-coded public key in the skill is acceptable for read-only access but worth noting: the skill will call an external service using that key and URL.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent system privileges or modify other skills/config. Autonomous invocation is allowed (platform default) but not combined with any high-risk permissions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawbeat
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawbeat 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Updated the homepage URL in metadata to include UTM parameters for improved source tracking. - No changes to skill logic or feature set.
v1.0.0
Initial release. Provides read-only access to six live endpoints: news, search, events, daily briefing, GitHub repos, and research papers — all sourced from ClawBeat.co's OpenClaw ecosystem intelligence feed. No credentials required.
元数据
Slug clawbeat
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

ClawBeat: OpenClaw News, Research & Events 是什么?

Query live OpenClaw ecosystem intelligence from ClawBeat.co — news, research papers, events, repos, and daily briefings for the OpenClaw agentic framework an... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 260 次。

如何安装 ClawBeat: OpenClaw News, Research & Events?

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

ClawBeat: OpenClaw News, Research & Events 是免费的吗?

是的,ClawBeat: OpenClaw News, Research & Events 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

ClawBeat: OpenClaw News, Research & Events 支持哪些平台?

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

谁开发了 ClawBeat: OpenClaw News, Research & Events?

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

💬 留言讨论