From xactions
Navigates to X Pro (TweetDeck), sets up monitoring columns with presets, and manages multi-column views via browser console JavaScript scripts. Useful for X/Twitter dashboard configuration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xactions:x-pro-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Browser console scripts for navigating and configuring X Pro (formerly TweetDeck).
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 automaticallynpx claudepluginhub nirholas/xactionsDetects X/Twitter Premium tiers, verifies feature access, and provides subscription-dependent script guidance. Use for Premium status checks, feature gating, and browser console scripts.
Automates X/Twitter data extraction and actions: tweet search, profile lookup, follower export, posting, DMs, webhooks, MCP, SDKs, Hermes Tweet, and TweetClaw plugins.
Automates X/Twitter operations via Xquik API: search, posting, replies, likes, retweets, follows, DMs, monitors, extraction jobs, draws, media, and trends. Useful for social listening, launch monitoring, and controlled publishing.