From xactions
Navigates to X Pro (TweetDeck), sets up monitoring columns with presets, and manages multi-column dashboard via browser console JavaScript scripts. Use for X Pro configuration.
npx claudepluginhub nirholas/xactionsThis skill uses the workspace's default tool permissions.
Browser console scripts for navigating and configuring X Pro (formerly TweetDeck).
Detects X/Twitter Premium subscription tiers, verifies feature access, and provides guidance for subscription-gated scripts. Use for status checks and managing tier-dependent browser automation.
Interacts with X (Twitter) via Xquik API: search tweets/users/followers, post replies/likes/retweets, send DMs, download media, real-time account monitoring, bulk data extraction using 113 REST endpoints.
Enables Twitter/X interactions via 35 MCP Node.js tools: tweet/post threads, search/read tweets/timelines/mentions, manage likes/retweets/bookmarks/followers, update profile/bio/avatar/banner, upload media. Zero-config browser auth.
Share bugs, ideas, or general feedback.
Browser console scripts for navigating and configuring X Pro (formerly TweetDeck).
| Goal | File | Navigate to |
|---|---|---|
| Navigate to X Pro + setup columns | src/xPro.js | x.com or pro.x.com |
| Extended X Pro management | src/xProManager.js | pro.x.com |
x.com or pro.x.comsrc/xPro.js → EnterxPro.js)const CONFIG = {
autoNavigate: true, // Navigate to X Pro automatically
setupColumns: false, // Attempt to add default monitoring columns
columnPresets: [ // Column types to add when setupColumns = true
'home',
'notifications',
'mentions',
'search',
],
searchTerms: [ // Search columns to add
// 'from:nichxbt',
// '#xactions',
],
showColumnInfo: true, // Display info about existing columns
delayBetweenActions: 2000, // ms between UI actions
};
| Column Type | Description |
|---|---|
home | Your main For You / Following timeline |
notifications | All notifications |
mentions | Only @mentions |
search | Search results for a term |
list | A Twitter List feed |
user | A specific user's tweets |
src/xPro.jsxProManager.js provides extended operations including column reordering and removalautoNavigate: true, the script will redirect to pro.x.com automatically