skills/content-cleanup/SKILL.md
Mass-cleanup your X/Twitter account. Unlike all posts, clear all reposts/retweets, clear all bookmarks, and remove unwanted followers. Use when users want to clean their account history, remove old likes, or start fresh.
npx skillsauth add harryvik990/X-auto content-cleanupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Browser console scripts for mass-cleaning your X/Twitter account history.
| Script | File | Purpose |
|--------|------|---------|
| Unlike All Posts | src/unlikeAllPosts.js | Remove all likes from your likes page |
| Clear All Reposts | src/clearAllReposts.js | Remove all retweets/reposts |
| Clear All Bookmarks | src/clearAllBookmarks.js | Remove all saved bookmarks |
| Remove Followers | src/removeFollowers.js | Soft-block to remove specific followers |
File: src/unlikeAllPosts.js
Mass-unlike all posts from your likes page.
x.com/YOUR_USERNAME/likesconst CONFIG = {
maxUnlikes: Infinity, // Set a number to limit
minDelay: 800, // Minimum delay between unlikes (ms)
maxDelay: 2000, // Maximum delay
};
| Element | Selector |
|---------|----------|
| Unlike button | [data-testid="unlike"] |
File: src/clearAllReposts.js
Remove all retweets/reposts from your profile.
x.com/YOUR_USERNAME| Element | Selector |
|---------|----------|
| Unretweet button | [data-testid="unretweet"] |
| Confirm unretweet | [data-testid="unretweetConfirm"] |
File: src/clearAllBookmarks.js
Remove all saved bookmarks. Tries the built-in "Clear All" button first, falls back to individual removal.
x.com/i/bookmarksFile: src/removeFollowers.js
Remove specific followers without fully blocking them (soft-block technique).
const CONFIG = {
usersToRemove: ['username1', 'username2'],
removeAll: false, // Set to true to remove ALL visible followers
maxRemovals: 50,
dryRun: true, // Set to false to actually remove
};
x.com/YOUR_USERNAME/followersremoveAll: true)dryRun: falsetools
Free MCP server providing 68+ tools for AI agents to automate X/Twitter. Scrapes profiles, followers, tweets. Posts, follows, likes, retweets, downloads videos, analyzes sentiment, monitors brands, manages DMs, runs workflows, and more. Uses local Puppeteer -- no API keys or payments required. Compatible with Claude Desktop, Cursor, Windsurf, VS Code. Use when setting up or using AI agent Twitter automation via MCP.
tools
Command-line interface for scraping X/Twitter data, managing MCP server config, and running automation. Scrapes profiles, followers, tweets, search results, and more from terminal. Outputs text, JSON, or CSV. Uses Puppeteer stealth. Use when running Twitter operations from command line or automated pipelines.
content-media
Researches trending topics and competitor threads to generate high-engagement thread content with optimized hooks, value ladders, and calls to action. Use when creating threads or planning viral content.
tools
Mass unfollow on X/Twitter via browser console scripts. Unfollows everyone, only non-followers, non-followers with username logging, smart time-based unfollow with whitelists, and follow/following ratio management. Use when cleaning up a following list, removing non-followers, bulk unfollowing accounts, or optimizing your follow ratio.