Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills Aโ€“Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Openclaw News

ASecurity

**Version:** 1.0.0

19 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentsgobashgitapisecurity

Works with

cliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill openclaw-news --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Openclaw News?

Add the live security badge to your README โ€” it updates automatically with every re-scan.

Security grade badge for Openclaw News
[![Security: A โ€” Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-openclaw-news/badge)](https://www.skillsdirectory.com/skills/rondoflow-openclaw-news)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: openclaw-news
description: "**Version:** 1.0.0"
category: "Community"
author: community
version: "1.0.0"
icon: puzzle
---

# OpenClaw Ecosystem News

**Version:** 1.0.0  
**Author:** OpenClaw Community  
**Tags:** news, monitoring, ecosystem, github, community  
**Registry:** https://www.clawhub.ai

## What It Does

Aggregates breaking news and developments across the OpenClaw ecosystem into a clean, curated briefing. Pure signal, no noise.

**Tracks:**
- ๐Ÿš€ **OpenClaw Releases** โ€” new versions, tags, important PRs from `openclaw/openclaw`
- ๐Ÿงฉ **ClawdHub Skills** โ€” recently published or updated skills on the registry
- ๐Ÿ”’ **Security Advisories** โ€” CVEs, security issues, vulnerability discussions
- ๐Ÿ’ฌ **Community Discussions** โ€” HN threads, Reddit posts, notable tweets
- ๐Ÿ“ฐ **Ecosystem News** โ€” major press coverage, new integrations, platform changes
- ๐Ÿ› **Moltbook Highlights** โ€” hot posts from the agent social network (when available)

## Setup

### Prerequisites

- `gh` CLI installed and authenticated (for GitHub API)
- `clawdhub` CLI installed (for skill registry queries)
- `jq` installed (for JSON processing)
- Brave Search available via agent tools (for web searches)

### Installation

Copy this skill to your workspace:
```
skills/openclaw-news/
โ”œโ”€โ”€ SKILL.md              # This file
โ”œโ”€โ”€ scripts/
โ”‚   โ”œโ”€โ”€ collect_news.sh   # Main data collection script
โ”‚   โ””โ”€โ”€ format_briefing.sh # Formats raw data into a clean briefing
โ””โ”€โ”€ state/                # Auto-created; stores last-check timestamps
    โ””โ”€โ”€ last_run.json
```

### Cron Setup

For daily briefings (9 AM):
```
openclaw cron add --name "openclaw-news" \
  --schedule "0 9 * * *" \
  --prompt "Run the OpenClaw Ecosystem News skill. Execute scripts/collect_news.sh from skills/openclaw-news/, then format and deliver the briefing." \
  --channel signal
```

For twice-daily (9 AM and 5 PM):
```
openclaw cron add --name "openclaw-news" \
  --schedule "0 9,17 * * *" \
  --prompt "Run the OpenClaw Ecosystem News skill. Execute scripts/collect_news.sh from skills/openclaw-news/, then format and deliver the briefing." \
  --channel signal
```

## Usage

### Automatic (Cron)
Once the cron is set, briefings arrive on schedule. The script tracks what it already reported via `state/last_run.json` โ€” you only see what's new.

### On-Demand
When your human asks "what's new in OpenClaw?" or similar:

1. Run `scripts/collect_news.sh` from the skill directory
2. Run `scripts/format_briefing.sh` to produce the briefing
3. Deliver the output

Or the agent can use the script outputs directly and format conversationally.

### Diff Mode
The scripts automatically compare against the last run. To force a full scan (ignore previous state), delete `state/last_run.json` or pass `--full`:
```bash
cd skills/openclaw-news
./scripts/collect_news.sh --full
```

## Briefing Format

```
๐Ÿ“ก OpenClaw Ecosystem News โ€” Jun 14, 2025

๐Ÿš€ RELEASES
โ€ข v0.9.2 released โ€” WebSocket stability fixes, new `canvas` action
  https://github.com/openclaw/openclaw/releases/tag/v0.9.2

๐Ÿงฉ NEW SKILLS
โ€ข weather-alerts v2.1.0 โ€” Added severe weather push notifications
โ€ข home-inventory v1.0.0 โ€” Track household items with camera snaps

๐Ÿ”’ SECURITY
โ€ข Nothing new โ€” all clear โœ…

๐Ÿ’ฌ COMMUNITY
โ€ข HN: "OpenClaw is the missing layer for personal AI" (142 points)
  https://news.ycombinator.com/item?id=...

๐Ÿ“ฐ ECOSYSTEM
โ€ข Fortune: "The rise of always-on AI agents" (mentions OpenClaw)

โ€”
Last checked: Jun 13, 2025 09:00 ET
Sources: GitHub, ClawdHub, Brave Search, Moltbook
```

## How the Agent Should Use This

When delivering the briefing:
- **Signal/SMS:** Send as a single message, keep it tight
- **Discord:** Can be slightly longer; use embeds if available
- **Telegram:** Markdown formatting works well
- Skip empty sections entirely (don't say "Nothing new" for every category โ€” just omit)
- If everything is quiet, a one-liner is fine: "๐Ÿ“ก All quiet in the OpenClaw ecosystem today."

## Data Sources

| Source | Method | Rate Limits |
|--------|--------|-------------|
| GitHub Releases | `gh` CLI | 5000 req/hr (authenticated) |
| GitHub Issues/PRs | `gh` CLI | Same |
| ClawdHub Registry | `clawdhub explore` | Minimal |
| Web/News | Brave Search API | Per your plan |
| Moltbook | API (when available) | TBD |
| Reddit | Brave Search | Per your plan |
| HN | Brave Search / API | Generous |

## Works Great With

- **fulcra-context** โ€” Pair with Fulcra context to calibrate when and how news gets delivered. If your human is in a deep work block or low-energy, the agent can hold non-urgent news for later or deliver a shorter summary. Keeps the signal-to-noise ratio high not just in content but in timing.

## Customization

Edit `scripts/collect_news.sh` to:
- Add/remove tracked GitHub repos
- Change search queries for community discussions
- Adjust the lookback window (default: since last run, or 24h for first run)
- Add custom RSS feeds or other sources

## Troubleshooting

**No GitHub data:** Run `gh auth status` โ€” make sure you're authenticated.  
**No ClawdHub data:** Check `clawdhub explore --registry https://www.clawhub.ai` works.  
**Stale results:** Delete `state/last_run.json` to force a fresh scan.  
**Empty briefing:** If all sections are empty, the script outputs a "quiet day" message instead of nothing.

Attribution

rondoflowrondoflow
View sourceMore from rondoflow โ†’
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots ยท $299/mo ยท GSC-verified traffic ยท sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots ยท $299/mo ยท GSC-verified traffic ยท sponsors can never buy grades.

See placements

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants โ€” handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents โ†’