From xactions
Manages X/Twitter notifications in browser console: filter by type, bulk mark as read, scrape to JSON, track engagers. Use on x.com/notifications for bulk processing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xactions:notifications-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Browser console script for managing and filtering X/Twitter notifications.
Browser console script for managing and filtering X/Twitter notifications.
| Goal | File | Navigate to |
|---|---|---|
| Filter and manage notifications | src/notificationManager.js | x.com/notifications |
| Scrape notification data | scripts/scrapeNotifications.js | x.com/notifications |
| Welcome new followers | src/welcomeNewFollowers.js | x.com/USERNAME/followers |
File: src/notificationManager.js
Manages X notifications: filter by type (mentions, likes, reposts, follows, replies), mark as read, and track notification activity.
x.com/notificationsconst CONFIG = {
filterTypes: ['mentions', 'likes', 'reposts', 'follows'],
markAsRead: true,
scrollToLoadMore: true,
maxNotifications: 200,
actionDelay: 1000,
};
File: scripts/scrapeNotifications.js
Standalone scraper that exports all visible notifications as structured JSON with author, type, content, and timestamp.
| Element | Selector |
|---|---|
| Notification cells | [data-testid="notification"] |
| Toggle switch | [data-testid="settingsSwitch"] |
| Notifications tab | a[href="/notifications"] |
| Mentions tab | a[href="/notifications/mentions"] |
| Notification text | [data-testid="notification"] [dir="auto"] |
src/notificationManager.js to filter for mentionssrc/engagementLeaderboard.js to cross-reference top engagerssrc/welcomeNewFollowers.js to detect new followersnpx claudepluginhub nirholas/xactionsSends personalized bulk DMs with templates, manages conversations, filters message requests, and exports DMs on X/Twitter via browser console JavaScript scripts.
Automates X/Twitter data extraction and actions: tweet search, profile lookup, follower export, posting, DMs, webhooks, MCP, SDKs, Hermes Tweet, and TweetClaw plugins.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.