From xactions
Manages delegate accounts on X/Twitter via browser console: add, remove, list delegates, set post/reply/like permissions. Use for granting/revoking team access.
npx claudepluginhub nirholas/xactionsThis skill uses the workspace's default tool permissions.
Browser console script for managing who can post on behalf of your X account.
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.
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.
Sends one-to-one direct messages on X (Twitter), reads DM history with recipients, resolves usernames to user IDs via REST API. Use for targeted DM interactions and inbox management.
Share bugs, ideas, or general feedback.
Browser console script for managing who can post on behalf of your X account.
| Goal | File | Navigate to |
|---|---|---|
| View and manage delegates | src/delegateAccess.js | x.com |
x.comsrc/delegateAccess.js → Enterconst CONFIG = {
autoNavigate: true, // Navigate to delegate settings automatically
scanDelegates: true, // List current delegates
showPermissionsInfo: true, // Display permissions reference
delayBetweenActions: 2000, // ms between UI actions
scrollDelay: 1500, // ms between scroll actions
};
| Permission | Icon | Description |
|---|---|---|
post | ✍️ | Post tweets on your behalf |
reply | 💬 | Reply to tweets on your behalf |
like | ❤️ | Like tweets on your behalf |
dm | 📨 | Send DMs on your behalf |
XActions.delegates.list() // List all current delegates
XActions.delegates.add('username', perms) // Add a delegate with permissions
XActions.delegates.remove('username') // Remove a delegate
XActions.delegates.setPermissions('username', perms) // Update permissions
sessionStorage under xactions_delegatesx.com/settings/delegate to view X's native delegate management UI