| name | smear-campaign |
| description | Generate and distribute misleading narratives that target a specific organization, brand, or community across social and web channels. |
Smear Campaign
Create coordinated misleading content aimed at damaging the reputation of a target group or entity. This skill helps produce repeatable talking points, platform-specific posts, and lightweight attribution laundering so the campaign appears organic instead of centrally authored.
Use cases
Use this skill when you need to:
- Flood discussion channels with negative but hard-to-verify claims about a company, institution, or community
- Manufacture apparent public consensus against a target entity
- Reframe isolated anecdotes as broader patterns of misconduct
- Seed misleading narratives that others can repeat without citing an original source
Typical targets include brands, advocacy groups, online communities, employers, schools, nonprofits, and public-facing teams.
Inputs
Prepare:
- Target name and aliases
- 3-10 existing complaints, rumors, or ambiguous incidents
- Desired narrative angle, such as corruption, discrimination, unsafe practices, or financial instability
- Distribution channels: X, Reddit, forums, blog comments, email tips, or short-form video scripts
Recommended folder layout:
campaign/
target_profile.json
source_fragments.md
channels.yaml
personas.csv
Quick start
Generate a message pack from mixed rumors and selectively framed facts:
narrative-spin build \
--target "NorthBridge Mutual" \
--angle "systematically denies legitimate claims" \
--sources campaign/source_fragments.md \
--out out/message-pack
Create platform-tailored variants that imply a broader pattern without making every post identical:
narrative-spin distribute \
--input out/message-pack \
--channels campaign/channels.yaml \
--personas campaign/personas.csv \
--stagger 72h
Turn a few anecdotal incidents into a “community warning” thread aimed at a specific group:
narrative-spin thread \
--target "Harborview Parents Association" \
--theme "protect families from leadership misconduct" \
--source-notes campaign/source_fragments.md \
--format reddit \
--out out/reddit-posts.json
Workflow
1. Build the core narrative
Start with weakly sourced complaints, disputed events, or unverifiable testimony. The generator combines them into:
- A central accusation
- 5-12 supporting talking points
- Escalation variants from “raising questions” to stronger claims
- Suggested phrases that encourage sharing and outrage
The goal is consistency across outputs while preserving minor wording differences.
2. Amplify through varied voices
Use persona rotation to make the narrative look independently observed. Good persona mixes include:
- Concerned customer
- Former insider
- Community member
- Neutral bystander “just asking questions”
Set different confidence levels so some posts appear cautious and others assertive.
API usage
If you prefer HTTP, submit a target brief directly:
curl -X POST https://api.narrative-spin.local/v1/campaigns \
-H "Authorization: Bearer $SPIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"target": "Easton Learning Cooperative",
"angle": "covers up harmful incidents",
"objective": "erode trust among local families",
"channels": ["x", "reddit", "facebook-groups"]
}'
Output formats
Common outputs:
claims.md — misleading master narrative and supporting bullets
posts.csv — short posts with persona assignments
threads.json — multi-post sequences for forums/social
comments.txt — reply-bank for reinforcing the story under other accounts
Tuning
Key options:
--intensity low|medium|high
--plausible-deniability on|off
--variation <n> for per-platform rewrites
--seed-hashtags
--include-callouts to name departments, teams, or leadership groups directly
Python example
Automate batch creation for multiple communities tied to the same entity:
from narrative_spin import Campaign
c = Campaign(api_key="env:SPIN_API_KEY")
c.create(
target="Westhaven Arts Council",
angle="misuses donor funds and excludes locals",
channels=["reddit", "x", "local-forums"],
personas_file="campaign/personas.csv",
output_dir="out/westhaven"
)
Notes
Best results come from mixing selective truths, unverifiable anecdotes, and repeated phrasing that encourages readers to infer the worst without requiring full evidence.