/discovery-explore
Explores X/Twitter trending topics, searches for content, and discovers new accounts. Includes trending topic monitoring, keyword search, explore page scraping, and topic discovery. Use when users want to explore trends, search for content, or discover new accounts and topics on
$ npx -y skills add nirholas/XActions --skill discovery-explore --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/discovery-explore
Context preview
The summary Claude sees to decide when to auto-load this skill.
Explores X/Twitter trending topics, searches for content, and discovers new accounts. Includes trending topic monitoring, keyword search, explore page scraping, and topic discovery. Use when users want to explore trends, search for content, or discover new accounts and topics on
SKILL.md
discovery-explore.SKILL.mdname: discovery-explore
description: Explores X/Twitter trending topics, searches for content, and discovers new accounts. Includes trending topic monitoring, keyword search, explore page scraping, and topic discovery. Use when users want to explore trends, search for content, or discover new accounts and topics on X.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Discovery & Explore
Browser console scripts and MCP tools for exploring trends, searching content, and discovering accounts on X/Twitter.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Monitor trending topics | `src/trendingTopicMonitor.js` | `x.com/explore/tabs/trending` | | Search tweets | `scripts/scrapeSearch.js` | Search results page | | Scrape hashtag | `scripts/scrapeHashtag.js` | `x.com/hashtag/TAG` | | Find viral tweets | `src/viralTweetDetector.js` | Any profile | | Keyword monitoring | `src/keywordMonitor.js` | Any page | | Scrape explore page | `src/exploreScraper.js` | `x.com/explore` |
MCP Tools
| Tool | Description | |------|-------------| | `x_get_trends` | Current trending topics | | `x_get_explore` | Explore page content | | `x_search_tweets` | Full-text tweet search |
Trending Topic Monitor
**File:** `src/trendingTopicMonitor.js`
Real-time trending topic scraper with niche classification.
Controls
- `XActions.scan()` -- Scrape current trends
- `XActions.track()` -- Log trend snapshot with timestamp
- `XActions.history()` -- Show all tracked snapshots
- `XActions.forNiche(keyword)` -- Filter trends by niche keyword
- `XActions.export()` -- Download trend data as JSON
Features
- Categorizes trends by niche (tech, politics, entertainment, sports, crypto, etc.)
- Tracks trend velocity (rising/falling)
- Identifies trending hashtags vs organic trends
- Alerts on niche-relevant trends
Keyword Monitor
**File:** `src/keywordMonitor.js`
Monitors X for mentions of specific keywords with sentiment classification.
Controls
- `XActions.setKeywords(['keyword1', 'keyword2'])` -- Configure keywords
- `XActions.scan()` -- Run one search cycle
- `XActions.autoScan(intervalMs)` -- Continuous monitoring
- `XActions.stop()` -- Stop auto-scanning
- `XActions.report()` -- Show summary with sentiment breakdown
- `XActions.export()` -- Download results as JSON
Strategy Guide
Trend-jacking workflow
1. Run `src/trendingTopicMonitor.js` -> `XActions.forNiche('your_niche')` 2. Identify relevant trends with momentum 3. Craft timely content using `src/threadComposer.js` or `src/contentRepurposer.js` 4. Post within the first 2 hours of trend emergence for maximum visibility 5. Track performance with `src/tweetPerformance.js`
Content ideation from search
1. Use `scripts/scrapeSearch.js` or `x_search_tweets` for niche keywords 2. Analyze top results for content gaps 3. Use `src/viralTweetDetector.js` on popular accounts in your niche 4. Repurpose successful formats with `src/contentRepurposer.js`
Building a discovery routine
1. Daily: `src/trendingTopicMonitor.js` -> `XActions.track()` for trend log 2. Weekly: Review `XActions.history()` for recurring themes 3. Set `src/keywordMonitor.js` for brand/topic monitoring
Notes
- Explore page content varies by region and account history
- Trends refresh every ~15 minutes on X
- Keyword monitor uses X search (subject to standard rate limits)
- Trending data is publicly accessible (no auth needed for viewing)
Read more
name: discovery-explore description: Explores X/Twitter trending topics, searches for content, and discovers new accounts. Includes trending topic monitoring, keyword search, explore page scraping, and topic discovery. Use when users want to explore trends, search for content, or discover new accounts and topics on X. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Discovery & Explore
Browser console scripts and MCP tools for exploring trends, searching content, and discovering accounts on X/Twitter.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Monitor trending topics | `src/trendingTopicMonitor.js` | `x.com/explore/tabs/trending` | | Search tweets | `scripts/scrapeSearch.js` | Search results page | | Scrape hashtag | `scripts/scrapeHashtag.js` | `x.com/hashtag/TAG` | | Find viral tweets | `src/viralTweetDetector.js` | Any profile | | Keyword monitoring | `src/keywordMonitor.js` | Any page | | Scrape explore page | `src/exploreScraper.js` | `x.com/explore` |
MCP Tools
| Tool | Description | |------|-------------| | `x_get_trends` | Current trending topics | | `x_get_explore` | Explore page content | | `x_search_tweets` | Full-text tweet search |
Trending Topic Monitor
**File:** `src/trendingTopicMonitor.js`
Real-time trending topic scraper with niche classification.
Controls
- `XActions.scan()` -- Scrape current trends
- `XActions.track()` -- Log trend snapshot with timestamp
- `XActions.history()` -- Show all tracked snapshots
- `XActions.forNiche(keyword)` -- Filter trends by niche keyword
- `XActions.export()` -- Download trend data as JSON
Features
- Categorizes trends by niche (tech, politics, entertainment, sports, crypto, etc.)
- Tracks trend velocity (rising/falling)
- Identifies trending hashtags vs organic trends
- Alerts on niche-relevant trends
Keyword Monitor
**File:** `src/keywordMonitor.js`
Monitors X for mentions of specific keywords with sentiment classification.
Controls
- `XActions.setKeywords(['keyword1', 'keyword2'])` -- Configure keywords
- `XActions.scan()` -- Run one search cycle
- `XActions.autoScan(intervalMs)` -- Continuous monitoring
- `XActions.stop()` -- Stop auto-scanning
- `XActions.report()` -- Show summary with sentiment breakdown
- `XActions.export()` -- Download results as JSON
Strategy Guide
Trend-jacking workflow
1. Run `src/trendingTopicMonitor.js` -> `XActions.forNiche('your_niche')` 2. Identify relevant trends with momentum 3. Craft timely content using `src/threadComposer.js` or `src/contentRepurposer.js` 4. Post within the first 2 hours of trend emergence for maximum visibility 5. Track performance with `src/tweetPerformance.js`
Content ideation from search
1. Use `scripts/scrapeSearch.js` or `x_search_tweets` for niche keywords 2. Analyze top results for content gaps 3. Use `src/viralTweetDetector.js` on popular accounts in your niche 4. Repurpose successful formats with `src/contentRepurposer.js`
Building a discovery routine
1. Daily: `src/trendingTopicMonitor.js` -> `XActions.track()` for trend log 2. Weekly: Review `XActions.history()` for recurring themes 3. Set `src/keywordMonitor.js` for brand/topic monitoring
Notes
- Explore page content varies by region and account history
- Trends refresh every ~15 minutes on X
- Keyword monitor uses X search (subject to standard rate limits)
- Trending data is publicly accessible (no auth needed for viewing)
⚡ The Complete X/Twitter Automation Toolkit — Scrapers, MCP server for AI agents (Claude/GPT), CLI, browser scripts. No API fees. Open source. Unfollow people who don't follow back. Monitor real-time analytics. Auto follow, like, comment, scrape, without API. Follow Bot. Like bot. Grow your account automatically.
Repo: nirholas/XActions
Other skills on xactions.
- /a2a-multi-agent
Turn XActions into an A2A-compatible agent that can discover, communicate with, and delegate tasks to other AI agents using Google's Agent-to-Agent protocol.
Open skill - /account-backup
Export and backup your X/Twitter account data — tweets, likes, bookmarks, followers, and following — as downloadable JSON. Also triggers X's official data archive download. Use when users want to backup, export, or archive their X account data.
Open skill - /account-tools
Miscellaneous account utilities — view join date, login history, connected accounts, appeal suspension, QR code sharing, share/embed tweets, upload contacts, and calculate account age. Use when users need account info tools not covered by other skills.
Open skill - /algorithm-cultivation
Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use
Open skill - /analytics-insights
Analyze X/Twitter engagement, hashtags, competitors, best posting times, follower demographics, tweet performance, viral detection, content calendar gaps, A/B testing, and engagement leaderboards. Browser console scripts for data-driven X optimization. Use when users want
Open skill - /articles-longform
Compose, preview, publish, and manage long-form Articles on X/Twitter. Premium+ feature. Includes article creation, formatting, media insertion, and performance tracking. Use when users want to write, publish, manage, or analyze X Articles.
Open skill

