skills/lists-management/SKILL.md
Creates, populates, and exports X/Twitter lists from the browser console. Supports creating public or private lists, bulk-adding members by username, and exporting list members as JSON. Use when users want to create lists, add members to lists, or export list data on X.
npx skillsauth add nirholas/xactions lists-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Browser console script for creating and managing X/Twitter lists.
| Goal | File | Navigate to |
|------|------|-------------|
| Create a new list | src/listManager.js | x.com/USERNAME/lists |
| Add users to a list | src/listManager.js | List page |
| Export list members | src/listManager.js | List members page |
File: src/listManager.js
Browser console script that creates lists, adds members by username, and exports member data.
x.com/YOUR_USERNAME/lists (or an existing list page)const CONFIG = {
createList: {
enabled: false,
name: 'My List',
description: 'Created by XActions',
isPrivate: true,
},
addUsers: {
enabled: true,
usernames: ['user1', 'user2'],
},
exportMembers: {
enabled: false,
maxMembers: 200,
},
actionDelay: 2000,
};
Sets createList.enabled: true to create a new list. Fills in the name, description, and privacy toggle, then saves.
Sets addUsers.enabled: true with a list of usernames. Opens the add-member search, types each username, clicks the matching user cell, and repeats. Navigate to the target list page first.
Sets exportMembers.enabled: true. Scrolls through the list members page and exports all members (username, display name, bio) as a JSON download.
| Element | Selector |
|---------|----------|
| Create list button | [data-testid="createList"] |
| List name input | [data-testid="listNameInput"] |
| List description | [data-testid="listDescriptionInput"] |
| Private toggle | [data-testid="listPrivateToggle"] |
| Save button | [data-testid="listSaveButton"] |
| Add members | [data-testid="addMembers"] |
| Search people | [data-testid="searchPeople"] |
| User cell | [data-testid="UserCell"] |
| Problem | Solution |
|---------|----------|
| Create button not found | Navigate to x.com/USERNAME/lists first |
| User not found when adding | Verify username spelling; user may have changed handle |
| Export stops early | Page may have finished scrolling; increase maxMembers if needed |
| Search input not found | Ensure you clicked "Add member" — script expects the search overlay |
tools
Free MCP server providing 68+ tools for AI agents to automate X/Twitter. Scrapes profiles, followers, tweets. Posts, follows, likes, retweets, downloads videos, analyzes sentiment, monitors brands, manages DMs, runs workflows, and more. Uses local Puppeteer -- no API keys or payments required. Compatible with Claude Desktop, Cursor, Windsurf, VS Code. Use when setting up or using AI agent Twitter automation via MCP.
tools
Command-line interface for scraping X/Twitter data, managing MCP server config, and running automation. Scrapes profiles, followers, tweets, search results, and more from terminal. Outputs text, JSON, or CSV. Uses Puppeteer stealth. Use when running Twitter operations from command line or automated pipelines.
development
Enable and integrate x402 crypto payment protocol for XActions API access. Supports multi-chain, multi-token payments for pay-per-use API calls. Use when users want to pay for XActions operations with crypto or integrate x402 into their own agent/app.
tools
Navigate to X Pro (TweetDeck), set up monitoring columns, and manage multi-column view. Use when users want to use X Pro / TweetDeck features or set up a multi-column dashboard.