From buzz-crypto-bd
Filters outgoing tweets for blocked words, patterns, and compliance rules before auto-posting. Useful for enforcing content safety in automated social media workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/buzz-crypto-bd:content-filterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Every tweet Buzz auto-posts MUST pass through this filter first.
Every tweet Buzz auto-posts MUST pass through this filter first. If any blocked word or pattern is detected, the tweet is REJECTED and logged to Telegram as [🚫 FILTER BLOCKED].
guaranteed, moon, mooning, 100x, 1000x, pump, pumping,
not financial advice, NFA, DYOR, buy now, don't miss,
last chance, to the moon, easy money, free money,
going to explode, next [any token], [any token] killer,
rug, scam, shit, fuck, damn, hell,
guaranteed returns, passive income, get rich
const { checkContent } = require("./content-filter");
const result = checkContent(tweetText);
if (!result.passed) {
// REJECT — do not post
logToTelegram(`[🚫 FILTER BLOCKED] ${result.reason}: "${result.matched}"`);
} else {
// SAFE — proceed to post
postTweet(tweetText);
}
npx claudepluginhub buzzbysolcex/buzz-bd-agentProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.