/settings-privacy
Manages X/Twitter account settings and privacy controls including protected tweets, muted words, content filtering, notification preferences, and account configuration. Use when changing privacy settings, managing muted words, or configuring account preferences.
$ npx -y skills add nirholas/XActions --skill settings-privacy --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/settings-privacy
Context preview
The summary Claude sees to decide when to auto-load this skill.
Manages X/Twitter account settings and privacy controls including protected tweets, muted words, content filtering, notification preferences, and account configuration. Use when changing privacy settings, managing muted words, or configuring account preferences.
SKILL.md
settings-privacy.SKILL.mdname: settings-privacy
description: Manages X/Twitter account settings and privacy controls including protected tweets, muted words, content filtering, notification preferences, and account configuration. Use when changing privacy settings, managing muted words, or configuring account preferences.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Settings & Privacy
Browser console scripts for managing X/Twitter account settings and privacy controls.
Script Selection
| Script | File | Purpose | |--------|------|---------| | Settings Manager | `src/settingsManager.js` | Account settings, privacy, content preferences | | Muted Words | `src/manageMutedWords.js` | Bulk add, remove, and manage muted words/phrases | | Mass Unblock | `src/massUnblock.js` | Clear blocked accounts | | Mass Unmute | `src/massUnmute.js` | Clear muted accounts |
Settings Manager
**File:** `src/settingsManager.js`
Manages account settings: privacy controls, content filtering, notification preferences, and account configuration.
How to Use
1. Navigate to `x.com/settings` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Muted Words Manager
**File:** `src/manageMutedWords.js`
Bulk add or remove muted words and phrases to filter unwanted content from timeline, notifications, and search.
How to Use
1. Navigate to `x.com/settings/muted_keywords` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Configuration
const CONFIG = {
wordsToMute: ['spam', 'giveaway', 'follow for follow'],
duration: 'forever', // 'forever', '24h', '7d', '30d'
muteFrom: 'everyone', // 'everyone' or 'people_you_dont_follow'
};DOM Selectors
| Element | Selector | |---------|----------| | Toggle switch | `[data-testid="settingsSwitch"]` | | Protected toggle | `[data-testid="protectedTweets"]` | | Settings nav | `a[href="/settings"]` | | Muted keywords | `a[href="/settings/muted_keywords"]` | | Confirmation dialog | `[data-testid="confirmationSheetConfirm"]` |
Settings Pages
| Setting | URL | Description | |---------|-----|-------------| | Protected tweets | `/settings/audience_and_tagging` | Only approved followers see posts | | Muted words | `/settings/muted_keywords` | Filter content by keyword | | Blocked accounts | `/settings/blocked/all` | View/manage blocked accounts | | Muted accounts | `/settings/muted/all` | View/manage muted accounts | | Content preferences | `/settings/content_preferences` | Sensitive content filters | | Notifications | `/settings/notifications` | Notification filtering | | Privacy and safety | `/settings/privacy_and_safety` | DM controls, discoverability | | Account info | `/settings/your_twitter_data/account` | Email, phone, username | | Download data | `/settings/download_your_data` | Request full data archive |
Strategy Guide
Locking down a new account
1. Navigate to `/settings/audience_and_tagging` -> enable Protected Tweets 2. Navigate to `/settings/privacy_and_safety` -> adjust DM settings 3. Run `src/manageMutedWords.js` to add spam filters 4. Navigate to `/settings/notifications` -> filter notifications from non-followers
Cleaning up after spam attack
1. Run `src/massUnblock.js` to clear old blocks (make room for new ones) 2. Run `src/blockBots.js` on your followers page 3. Run `src/manageMutedWords.js` with spam keywords 4. Check `/settings/muted/all` and `/settings/blocked/all` for status
Content creator setup
1. Keep Protected Tweets OFF (public account needed for growth) 2. Mute common spam keywords: giveaway, airdrop, DM me, follow back 3. Filter notifications to verified accounts or followers only 4. Enable sensitive content warnings if posting edgy content
Notes
- Protected tweets: only approved followers can see posts
- Muted words filter content from timeline, notifications, and search
- Settings changes take effect immediately
- Some settings require password confirmation
- Download data request takes 24-48 hours to process
- Muted words support phrases, hashtags, and individual words
Read more
name: settings-privacy description: Manages X/Twitter account settings and privacy controls including protected tweets, muted words, content filtering, notification preferences, and account configuration. Use when changing privacy settings, managing muted words, or configuring account preferences. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Settings & Privacy
Browser console scripts for managing X/Twitter account settings and privacy controls.
Script Selection
| Script | File | Purpose | |--------|------|---------| | Settings Manager | `src/settingsManager.js` | Account settings, privacy, content preferences | | Muted Words | `src/manageMutedWords.js` | Bulk add, remove, and manage muted words/phrases | | Mass Unblock | `src/massUnblock.js` | Clear blocked accounts | | Mass Unmute | `src/massUnmute.js` | Clear muted accounts |
Settings Manager
**File:** `src/settingsManager.js`
Manages account settings: privacy controls, content filtering, notification preferences, and account configuration.
How to Use
1. Navigate to `x.com/settings` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Muted Words Manager
**File:** `src/manageMutedWords.js`
Bulk add or remove muted words and phrases to filter unwanted content from timeline, notifications, and search.
How to Use
1. Navigate to `x.com/settings/muted_keywords` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Configuration
const CONFIG = {
wordsToMute: ['spam', 'giveaway', 'follow for follow'],
duration: 'forever', // 'forever', '24h', '7d', '30d'
muteFrom: 'everyone', // 'everyone' or 'people_you_dont_follow'
};DOM Selectors
| Element | Selector | |---------|----------| | Toggle switch | `[data-testid="settingsSwitch"]` | | Protected toggle | `[data-testid="protectedTweets"]` | | Settings nav | `a[href="/settings"]` | | Muted keywords | `a[href="/settings/muted_keywords"]` | | Confirmation dialog | `[data-testid="confirmationSheetConfirm"]` |
Settings Pages
| Setting | URL | Description | |---------|-----|-------------| | Protected tweets | `/settings/audience_and_tagging` | Only approved followers see posts | | Muted words | `/settings/muted_keywords` | Filter content by keyword | | Blocked accounts | `/settings/blocked/all` | View/manage blocked accounts | | Muted accounts | `/settings/muted/all` | View/manage muted accounts | | Content preferences | `/settings/content_preferences` | Sensitive content filters | | Notifications | `/settings/notifications` | Notification filtering | | Privacy and safety | `/settings/privacy_and_safety` | DM controls, discoverability | | Account info | `/settings/your_twitter_data/account` | Email, phone, username | | Download data | `/settings/download_your_data` | Request full data archive |
Strategy Guide
Locking down a new account
1. Navigate to `/settings/audience_and_tagging` -> enable Protected Tweets 2. Navigate to `/settings/privacy_and_safety` -> adjust DM settings 3. Run `src/manageMutedWords.js` to add spam filters 4. Navigate to `/settings/notifications` -> filter notifications from non-followers
Cleaning up after spam attack
1. Run `src/massUnblock.js` to clear old blocks (make room for new ones) 2. Run `src/blockBots.js` on your followers page 3. Run `src/manageMutedWords.js` with spam keywords 4. Check `/settings/muted/all` and `/settings/blocked/all` for status
Content creator setup
1. Keep Protected Tweets OFF (public account needed for growth) 2. Mute common spam keywords: giveaway, airdrop, DM me, follow back 3. Filter notifications to verified accounts or followers only 4. Enable sensitive content warnings if posting edgy content
Notes
- Protected tweets: only approved followers can see posts
- Muted words filter content from timeline, notifications, and search
- Settings changes take effect immediately
- Some settings require password confirmation
- Download data request takes 24-48 hours to process
- Muted words support phrases, hashtags, and individual words
⚡ The Complete X/Twitter Automation Toolkit — Scrapers, MCP server for AI agents (Claude/GPT), CLI, browser scripts. No API fees. Open source. Unfollow people who don't follow back. Monitor real-time analytics. Auto follow, like, comment, scrape, without API. Follow Bot. Like bot. Grow your account automatically.
Repo: nirholas/XActions
Other skills on xactions.
- /a2a-multi-agent
Turn XActions into an A2A-compatible agent that can discover, communicate with, and delegate tasks to other AI agents using Google's Agent-to-Agent protocol.
Open skill - /account-backup
Export and backup your X/Twitter account data — tweets, likes, bookmarks, followers, and following — as downloadable JSON. Also triggers X's official data archive download. Use when users want to backup, export, or archive their X account data.
Open skill - /account-tools
Miscellaneous account utilities — view join date, login history, connected accounts, appeal suspension, QR code sharing, share/embed tweets, upload contacts, and calculate account age. Use when users need account info tools not covered by other skills.
Open skill - /algorithm-cultivation
Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use
Open skill - /analytics-insights
Analyze X/Twitter engagement, hashtags, competitors, best posting times, follower demographics, tweet performance, viral detection, content calendar gaps, A/B testing, and engagement leaderboards. Browser console scripts for data-driven X optimization. Use when users want
Open skill - /articles-longform
Compose, preview, publish, and manage long-form Articles on X/Twitter. Premium+ feature. Includes article creation, formatting, media insertion, and performance tracking. Use when users want to write, publish, manage, or analyze X Articles.
Open skill

