OpenClaw News

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward OpenClaw news briefing skill; the main things to review are its use of your GitHub CLI login and optional scheduled message delivery.

Before installing, make sure you are comfortable with the skill using your configured GitHub CLI account, verify the local helper tools are trusted, and only add the cron job if you want recurring briefings. The provided artifacts do not show hidden credential logging, destructive actions, or unrelated data collection.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill can use the GitHub account already configured in your gh CLI to fetch release, pull request, and security issue data.

Why it was flagged

The skill may rely on the user's existing GitHub CLI authentication. The visible scripts use it for OpenClaw GitHub API reads, which is purpose-aligned, but users should notice the delegated account access.

Skill content
- `gh` CLI installed and authenticated (for GitHub API)
Recommendation

Confirm the gh CLI is authenticated to the intended GitHub account and that its token scopes are acceptable before enabling scheduled runs.

What this means

Running the skill will contact external services and create/update local state files for the briefing.

Why it was flagged

The collection script invokes local CLI tools and network-backed registry/API queries. This is expected for a news aggregation skill and the shown commands are read-oriented.

Skill content
gh api repos/openclaw/openclaw/releases ... clawdhub explore --registry https://www.clawhub.ai
Recommendation

Run it from the intended skill directory and make sure the gh and clawdhub binaries on your system are trusted.

What this means

The skill may not work as expected unless the documented local tools and search capability are available.

Why it was flagged

The registry metadata does not declare the helper tools and authentication described in SKILL.md. This appears to be an under-declared setup requirement rather than hidden behavior.

Skill content
Required binaries (all must exist): none ... Required env vars: none ... Primary credential: none
Recommendation

Treat the SKILL.md prerequisites as the practical setup contract even though the registry requirements are empty.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If you add the cron job, the agent will keep sending scheduled news briefings until the cron entry is removed or changed.

Why it was flagged

The skill documents optional recurring cron execution and message delivery. This is disclosed and user-directed, but it is still persistent behavior.

Skill content
openclaw cron add --name "openclaw-news" ... --schedule "0 9 * * *" ... --channel signal
Recommendation

Only enable the cron schedule if you want recurring briefings, confirm the destination channel, and remove the cron job when no longer needed.