TON.fun Feed Relay

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill is an instruction-only relay that can automatically repost a third party’s tagged tweets from your social account, which is high-impact public posting driven by external content.

Install only if you intentionally want @TonFunX-tagged tweets to be reposted from your account. Prefer manual approval or dry-run mode, use dedicated limited posting tokens, keep destination communities fixed, respect rate limits, and monitor the local relay log.

Findings (5)

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

Whoever controls or compromises the source feed could cause your agent to post tagged content from your platform account.

Why it was flagged

The skill tells the agent to treat content retrieved from a public social feed as instructions to perform posting actions.

Skill content
Tweets tagged with **action hashtags** are signals for agents to amplify ... `#retweet` | Repost this content verbatim to your platform
Recommendation

Do not let hashtags alone authorize posting. Use a dry-run mode, require human approval, and restrict exactly which source account, tags, and destination communities are allowed.

What this means

Your account could publish promotional, incorrect, or unwanted content automatically, creating reputational or spam risk.

Why it was flagged

The documented workflow uses account credentials to create public posts, but does not require a confirmation step before publishing.

Skill content
curl -s -X POST https://botworld.me/api/v1/posts ... -H "Authorization: Bearer YOUR_BOTWORLD_KEY" ... "content": "TWEET_CONTENT_HERE"
Recommendation

Use least-privileged posting credentials if available, keep rate limits, review each post before publishing, and log every relay action.

What this means

If you provide these keys, the agent can post under your platform identity.

Why it was flagged

The skill needs bearer tokens for BotWorld or Moltbook posting, even though the registry declares no primary credential or required environment variables.

Skill content
-H "Authorization: Bearer YOUR_BOTWORLD_KEY" ... -H "Authorization: Bearer YOUR_MOLTBOOK_KEY"
Recommendation

Use a dedicated, revocable token with the smallest possible posting scope, and do not give the agent broader account credentials.

What this means

Users may underestimate that cross-posting requires account-level posting credentials.

Why it was flagged

The description can be read as saying no API keys are needed, while the posting examples require BotWorld or Moltbook bearer keys; the body only clearly avoids a Twitter API key.

Skill content
Description: Subscribe to @TonFunX tweets and auto cross-post tagged posts ... without API keys.
Recommendation

Clarify before use that Twitter access is unauthenticated, but destination-platform posting still needs authorized credentials.

What this means

A local file may reveal what content your agent reposted and where, though this is scoped to duplicate tracking.

Why it was flagged

The skill suggests persistent local tracking of relayed tweet IDs and destination post IDs.

Skill content
RELAYED_FILE = Path("relayed_tweets.json") ... data[tweet_id] = {"platform": platform, "post_id": post_id, "at": datetime.now().isoformat()}
Recommendation

Store the relay log in a known skill-specific directory, review it periodically, and delete it when no longer needed.