From xactions
Manages saved searches on X/Twitter via browser console JavaScript: save queries from search pages, list/delete/run/export from homepage, fetch fresh results.
npx claudepluginhub nirholas/xactionsThis skill uses the workspace's default tool permissions.
Browser console scripts for managing saved searches on X/Twitter.
Searches X/Twitter in real-time using Grok's x_search tool to retrieve tweets, trends, and discussions with citations. Supports filtering by time, handles, and JSON/compact outputs.
Explores X/Twitter trending topics, searches tweets, scrapes explore page, and monitors keywords using browser JS scripts and MCP tools. Useful for trend discovery, content search, and account finding.
Searches X/Twitter via API v2 for real-time dev discussions, product feedback, breaking news, expert opinions. Supports engagement sorting, user profiles, thread fetching, watchlists, result caching. Useful for recent discourse on library releases, API changes, launches.
Share bugs, ideas, or general feedback.
Browser console scripts for managing saved searches on X/Twitter.
| Goal | File | Navigate to |
|---|---|---|
| Save a search query | src/saveSearch.js | x.com/search?q=... (search results page) |
| List / delete / run saved searches | src/savedSearchManager.js | x.com |
x.com/search?q=your+querysrc/saveSearch.js → Enterx.comsrc/savedSearchManager.js → EntersavedSearchManager.js)XActions.list() // List all saved searches
XActions.run('query') // Run a saved search (navigates to results)
XActions.delete('query') // Delete a saved search by name
XActions.export() // Export all saved searches as JSON
const CONFIG = {
maxTweets: 100, // Max tweets to collect when running a search
scrollDelay: 2000, // ms between scroll actions
actionDelay: 1500, // ms between UI actions
maxScrollAttempts: 25, // Max scroll rounds before stopping
};
savedSearchManager.js can also scrape trending topics for discovery