jqzx-news-push

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill mostly matches its news-push purpose, but its setup instructions can reveal full API tokens and it installs a recurring background task.

Install only if you are comfortable giving it Machine Heart/Jiqizhixin, Get笔记, and Feishu-target access. Do not use the SKILL.md echo commands that print secret values; use masked checks instead. Verify the cron path and Feishu target before scheduling daily runs, and remove the cron entry when you no longer need the automation.

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

Your Machine Heart/Jiqizhixin and Get笔记 credentials could be accidentally revealed to anyone who can see the session or logs.

Why it was flagged

These setup commands print full service tokens/API keys instead of only checking whether they are set, which can expose credentials in terminal output, agent transcripts, or logs.

Skill content
echo "JI_ZHIXIN_TOKEN: $JI_ZHIXIN_TOKEN"; echo "GETNOTE_API_KEY: $GETNOTE_API_KEY"; echo "GETNOTE_CLIENT_ID: $GETNOTE_CLIENT_ID"
Recommendation

Do not run the echo-based credential check as written. Use a masked or presence-only check such as the included check-config.sh behavior, and rotate any token that was already exposed.

What this means

Running the skill can post content to the configured Feishu user/group and create notes in the configured Get笔记 account.

Why it was flagged

The script sends messages to Feishu and creates notes in Get笔记. These are third-party write actions, but they match the advertised news-push purpose.

Skill content
openclaw message send --channel feishu --target "$FEISHU_TARGET" --message "$FULL_CONTENT" ... curl ... "https://openapi.biji.com/open/api/v1/resource/note/save"
Recommendation

Verify the Feishu target and Get笔记 account before running or scheduling the script.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The task may keep sending messages and saving notes every day until the cron entry is removed.

Why it was flagged

The skill documents a cron job that continues to run daily after setup. This persistence is disclosed and fits the daily-news purpose.

Skill content
0 8 * * * /root/.openclaw/workspace/skills/daily-news-push/scripts/push-news.sh >> /tmp/daily-news.log 2>&1
Recommendation

Only add the cron job if you want ongoing automation, review `/tmp/daily-news.log`, and remove the crontab entry when you no longer want the push.

What this means

Setup may be confusing, and a copied cron path may not match the actual installed skill location.

Why it was flagged

Registry-level metadata does not fully match the files: package.json declares required env vars, and SKILL.md/_meta.json use the `daily-news-push` name/path. This is a coherence/provenance note rather than proof of malicious behavior.

Skill content
Slug: jqzx-news-push; Required env vars: none; Source: unknown
Recommendation

Confirm the installed path and required credentials before creating the cron job.