/follower-monitoring
Monitors X/Twitter follower changes using browser console scripts. Detects who unfollowed, tracks new followers with welcome messages, monitors any public account, runs continuous monitoring with alerts, tracks follower growth over time, and analyzes follower demographics. Use
$ npx -y skills add nirholas/XActions --skill follower-monitoring --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
/follower-monitoring
Context preview
The summary Claude sees to decide when to auto-load this skill.
Monitors X/Twitter follower changes using browser console scripts. Detects who unfollowed, tracks new followers with welcome messages, monitors any public account, runs continuous monitoring with alerts, tracks follower growth over time, and analyzes follower demographics. Use
SKILL.md
follower-monitoring.SKILL.mdname: follower-monitoring
description: Monitors X/Twitter follower changes using browser console scripts. Detects who unfollowed, tracks new followers with welcome messages, monitors any public account, runs continuous monitoring with alerts, tracks follower growth over time, and analyzes follower demographics. Use when tracking follower changes, detecting unfollowers, or monitoring Twitter accounts.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Follower Monitoring
Browser console scripts for tracking follower changes on X/Twitter. All scripts use localStorage for persistent snapshot comparison.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Detect who unfollowed you | `src/detectUnfollowers.js` | `x.com/USERNAME/followers` | | Monitor any public account | `src/monitorAccount.js` | `x.com/TARGET/followers` | | Continuous monitoring + alerts | `src/continuousMonitor.js` | `x.com/USERNAME/followers` | | New follower tracking + welcome | `src/newFollowersAlert.js` | `x.com/USERNAME/followers` | | Follower growth over time | `src/followerGrowthTracker.js` | `x.com/USERNAME/followers` | | Follower demographics | `src/audienceDemographics.js` | `x.com/USERNAME/followers` | | Audit follower quality | `src/auditFollowers.js` | `x.com/USERNAME/followers` | | Follow ratio management | `src/followRatioManager.js` | `x.com/USERNAME` |
How They Work
All scripts use the same **snapshot-compare pattern**: 1. First run: Scrapes visible users by scrolling, saves snapshot to localStorage 2. Subsequent runs: Scrapes current list, compares against saved snapshot, reports additions/removals
detectUnfollowers.js
Compares follower snapshots. Auto-downloads unfollowers as `.txt` file. Simple two-run workflow: paste once to baseline, paste again later to detect changes.
monitorAccount.js
Works on ANY public account (not just yours). Tracks both followers and following list changes. Downloads removed accounts list.
continuousMonitor.js
Long-running script with auto-refresh on interval (default: 5 minutes). Sends browser Notification API alerts and plays Web Audio API sounds on changes. Tab must stay open.
newFollowersAlert.js
Tracks new followers with display names. Generates welcome message templates. Also reports unfollowers as secondary output.
followerGrowthTracker.js
Records follower count snapshots over time with timestamps. Calculates daily/weekly/monthly growth rates. Projects future milestones. Visual growth chart in console.
**Controls:** `XActions.track()`, `XActions.history()`, `XActions.project(target)`
audienceDemographics.js
Scrapes follower profiles and classifies by niche, account size, bot likelihood, and verified status. Visual distribution charts.
followRatioManager.js
Navigate to profile page. Monitors follower/following ratio with letter grades. Generates improvement plans.
**Controls:** `XActions.track()`, `XActions.plan()`, `XActions.history()`
Storage Keys
| Script | localStorage Key | |--------|-----------------| | detectUnfollowers | `xactions_my_followers` | | monitorAccount | `xactions_monitor_{username}_{type}` | | newFollowersAlert | `xactions_new_followers` | | followerGrowthTracker | `xactions_follower_growth` | | followRatioManager | `xactions_ratio_history` |
Strategy Guide
Daily monitoring setup
1. Open `x.com/USERNAME/followers` in a pinned tab 2. Paste `src/continuousMonitor.js` — it auto-refreshes every 5 minutes 3. Enable browser notifications when prompted 4. Check back periodically for alerts
Weekly follower health check
1. `src/followerGrowthTracker.js` -> `XActions.track()` to log this week 2. `src/followRatioManager.js` -> `XActions.track()` for ratio snapshot 3. `src/auditFollowers.js` to check for new bot followers 4. `src/audienceDemographics.js` to verify audience quality
Resetting data
localStorage.removeItem('xactions_my_followers')
localStorage.removeItem('xactions_follower_growth')
localStorage.removeItem('xactions_ratio_history')Notes
- All scripts auto-export results as downloadable JSON
- `continuousMonitor.js` requires the tab to stay open (Chrome throttles background timers)
- Monitoring accuracy improves with more scroll rounds (increase in CONFIG)
- localStorage persists across browser sessions but NOT across browser profiles
Read more
name: follower-monitoring description: Monitors X/Twitter follower changes using browser console scripts. Detects who unfollowed, tracks new followers with welcome messages, monitors any public account, runs continuous monitoring with alerts, tracks follower growth over time, and analyzes follower demographics. Use when tracking follower changes, detecting unfollowers, or monitoring Twitter accounts. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Follower Monitoring
Browser console scripts for tracking follower changes on X/Twitter. All scripts use localStorage for persistent snapshot comparison.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Detect who unfollowed you | `src/detectUnfollowers.js` | `x.com/USERNAME/followers` | | Monitor any public account | `src/monitorAccount.js` | `x.com/TARGET/followers` | | Continuous monitoring + alerts | `src/continuousMonitor.js` | `x.com/USERNAME/followers` | | New follower tracking + welcome | `src/newFollowersAlert.js` | `x.com/USERNAME/followers` | | Follower growth over time | `src/followerGrowthTracker.js` | `x.com/USERNAME/followers` | | Follower demographics | `src/audienceDemographics.js` | `x.com/USERNAME/followers` | | Audit follower quality | `src/auditFollowers.js` | `x.com/USERNAME/followers` | | Follow ratio management | `src/followRatioManager.js` | `x.com/USERNAME` |
How They Work
All scripts use the same **snapshot-compare pattern**: 1. First run: Scrapes visible users by scrolling, saves snapshot to localStorage 2. Subsequent runs: Scrapes current list, compares against saved snapshot, reports additions/removals
detectUnfollowers.js
Compares follower snapshots. Auto-downloads unfollowers as `.txt` file. Simple two-run workflow: paste once to baseline, paste again later to detect changes.
monitorAccount.js
Works on ANY public account (not just yours). Tracks both followers and following list changes. Downloads removed accounts list.
continuousMonitor.js
Long-running script with auto-refresh on interval (default: 5 minutes). Sends browser Notification API alerts and plays Web Audio API sounds on changes. Tab must stay open.
newFollowersAlert.js
Tracks new followers with display names. Generates welcome message templates. Also reports unfollowers as secondary output.
followerGrowthTracker.js
Records follower count snapshots over time with timestamps. Calculates daily/weekly/monthly growth rates. Projects future milestones. Visual growth chart in console.
**Controls:** `XActions.track()`, `XActions.history()`, `XActions.project(target)`
audienceDemographics.js
Scrapes follower profiles and classifies by niche, account size, bot likelihood, and verified status. Visual distribution charts.
followRatioManager.js
Navigate to profile page. Monitors follower/following ratio with letter grades. Generates improvement plans.
**Controls:** `XActions.track()`, `XActions.plan()`, `XActions.history()`
Storage Keys
| Script | localStorage Key | |--------|-----------------| | detectUnfollowers | `xactions_my_followers` | | monitorAccount | `xactions_monitor_{username}_{type}` | | newFollowersAlert | `xactions_new_followers` | | followerGrowthTracker | `xactions_follower_growth` | | followRatioManager | `xactions_ratio_history` |
Strategy Guide
Daily monitoring setup
1. Open `x.com/USERNAME/followers` in a pinned tab 2. Paste `src/continuousMonitor.js` — it auto-refreshes every 5 minutes 3. Enable browser notifications when prompted 4. Check back periodically for alerts
Weekly follower health check
1. `src/followerGrowthTracker.js` -> `XActions.track()` to log this week 2. `src/followRatioManager.js` -> `XActions.track()` for ratio snapshot 3. `src/auditFollowers.js` to check for new bot followers 4. `src/audienceDemographics.js` to verify audience quality
Resetting data
localStorage.removeItem('xactions_my_followers')
localStorage.removeItem('xactions_follower_growth')
localStorage.removeItem('xactions_ratio_history')Notes
- All scripts auto-export results as downloadable JSON
- `continuousMonitor.js` requires the tab to stay open (Chrome throttles background timers)
- Monitoring accuracy improves with more scroll rounds (increase in CONFIG)
- localStorage persists across browser sessions but NOT across browser profiles
⚡ 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

