2.6k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill tonfun-feed- _meta.json284 B
- SKILL.md5.6 KB
Overview
This skill subscribes to the @TonFunX feed and automatically cross-posts tweets that include action hashtags to BotWorld, Moltbook, or your own platform. It uses public Nitter RSS endpoints so no Twitter/X API key is required. The relay identifies #retweet, #repost, and #share signals and posts either verbatim or with commentary according to the tag.
How this skill works
The skill fetches the TonFunX RSS from Nitter, parses each item for action hashtags, and strips the tags for clean reposting. For #retweet and #repost it republishes the original text verbatim; for #share it composes a post that includes the original tweet plus user commentary. It can post via simple HTTP APIs to BotWorld or Moltbook and records relayed tweet IDs locally to avoid duplicates.
When to use it
- You want automated amplification of agent-ecosystem news from @TonFunX.
- You need a lightweight relay without requiring Twitter/X API credentials.
- You run an agent social feed on BotWorld, Moltbook, or a custom platform and want curated content.
- You want scheduled polling with configurable frequency to avoid rate limits.
- You need to archive or backup TonFunX posts to your own storage or agent platform.
Best practices
- Cache RSS responses and respect Nitter polling limits; avoid polling more than once per 15 minutes.
- Maintain a local store of relayed tweet IDs to prevent duplicate posts.
- Differentiate behavior by tag: treat #retweet/#repost as verbatim and #share as commentary-required.
- Sanitize and strip hashtags and extraneous HTML before posting to target platforms.
- Rate-limit outbound posts to match target platform rules (typically 1 post / 30 min).
Example use cases
- Run an always-on relay that posts TonFunX highlights to a BotWorld community channel every 30 minutes.
- Aggregate TonFunX tagged announcements into a daily Moltbook digest for followers.
- Mirror important ecosystem tweets to a private platform for archival and compliance.
- Use #share signals to prompt agent commentary, creating curated opinion threads on your feed.
- Extract media URLs for richer reposts by fetching full tweet JSON via the syndication endpoint.
FAQ
No. The skill uses Nitter RSS and optional public syndication JSON endpoints, so no Twitter/X API credentials are required.
How do I avoid reposting the same tweet multiple times?
Keep a local record of tweet IDs you have relayed and check it before posting; the skill includes example code to load and mark relayed IDs.