/spaces-live
Interacts with X/Twitter Spaces (live audio) including joining rooms, scraping metadata, discovering live or scheduled Spaces, and managing Space participation. Use when finding Spaces, scraping Space data, or interacting with live audio features on X.
$ npx -y skills add nirholas/XActions --skill spaces-live --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
/spaces-live
Context preview
The summary Claude sees to decide when to auto-load this skill.
Interacts with X/Twitter Spaces (live audio) including joining rooms, scraping metadata, discovering live or scheduled Spaces, and managing Space participation. Use when finding Spaces, scraping Space data, or interacting with live audio features on X.
SKILL.md
spaces-live.SKILL.mdname: spaces-live
description: Interacts with X/Twitter Spaces (live audio) including joining rooms, scraping metadata, discovering live or scheduled Spaces, and managing Space participation. Use when finding Spaces, scraping Space data, or interacting with live audio features on X.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Spaces & Live Audio
Browser console scripts for interacting with X/Twitter Spaces.
Script Selection
| Script | File | Purpose | |--------|------|---------| | Spaces Manager | `src/spacesManager.js` | Join, manage, and interact with Spaces | | Scrape Spaces | `src/scrapeSpaces.js` | Find and collect Space metadata from search |
Spaces Manager
**File:** `src/spacesManager.js`
Manages interactions with X Spaces: join, leave, request to speak, and get live Space data.
How to Use
1. Navigate to a Space or `x.com/i/spaces` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Scrape Spaces
**File:** `src/scrapeSpaces.js`
Finds X Spaces from search results or timelines. Identifies live, scheduled, and ended Spaces with metadata.
How to Use
1. Search for Spaces: `x.com/search?q=your-topic&f=live` or any timeline 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Configuration
const CONFIG = {
maxSpaces: 50,
scrollDelay: 2000,
maxScrollAttempts: 20,
exportResults: true,
};Output
- Live, scheduled, and ended Space counts
- Host and title for each Space
- Direct links to join
- JSON export of all collected metadata
DOM Selectors
| Element | Selector | |---------|----------| | Start Space | `[data-testid="SpaceButton"]` | | Join Space | `[data-testid="joinSpace"]` | | Speaker list | `[data-testid="spaceSpeakers"]` | | Listener count | `[data-testid="spaceListeners"]` | | Recording | `[data-testid="spaceRecording"]` | | Schedule | `[data-testid="scheduleSpace"]` | | Space title | `[data-testid="spaceTitle"]` | | Space topic | `[data-testid="spaceTopic"]` |
Strategy Guide
Using Spaces for growth
1. Use `src/scrapeSpaces.js` to find active Spaces in your niche 2. Join as a listener -- consistent presence builds recognition 3. Request to speak when topic aligns with your expertise 4. Follow hosts and frequent speakers afterward 5. Post about key takeaways after each Space (content repurposing)
Discovering niche Spaces
1. Search `x.com/search?q=your-topic&f=live` for live Spaces 2. Follow accounts that regularly host Spaces in your niche 3. Set up `src/keywordMonitor.js` with Space-related keywords 4. Check `/i/spaces` for recommended Spaces in your interests
Hosting workflow
1. Schedule a Space from the compose button 2. Promote it with a tweet thread 24h before 3. Use `src/scrapeSpaces.js` to record participant metadata 4. After the Space, engage with attendees using `src/engagementBooster.js`
Notes
- Scraping captures metadata only (not audio content)
- Spaces can be live, scheduled, or ended -- all three states are detected
- Recording availability depends on host settings
- Space links: `x.com/i/spaces/{spaceId}`
- Live Spaces filter: append `&f=live` to search URL
- Hosting requires 600+ followers (X restriction)
Read more
name: spaces-live description: Interacts with X/Twitter Spaces (live audio) including joining rooms, scraping metadata, discovering live or scheduled Spaces, and managing Space participation. Use when finding Spaces, scraping Space data, or interacting with live audio features on X. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Spaces & Live Audio
Browser console scripts for interacting with X/Twitter Spaces.
Script Selection
| Script | File | Purpose | |--------|------|---------| | Spaces Manager | `src/spacesManager.js` | Join, manage, and interact with Spaces | | Scrape Spaces | `src/scrapeSpaces.js` | Find and collect Space metadata from search |
Spaces Manager
**File:** `src/spacesManager.js`
Manages interactions with X Spaces: join, leave, request to speak, and get live Space data.
How to Use
1. Navigate to a Space or `x.com/i/spaces` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Scrape Spaces
**File:** `src/scrapeSpaces.js`
Finds X Spaces from search results or timelines. Identifies live, scheduled, and ended Spaces with metadata.
How to Use
1. Search for Spaces: `x.com/search?q=your-topic&f=live` or any timeline 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Configuration
const CONFIG = {
maxSpaces: 50,
scrollDelay: 2000,
maxScrollAttempts: 20,
exportResults: true,
};Output
- Live, scheduled, and ended Space counts
- Host and title for each Space
- Direct links to join
- JSON export of all collected metadata
DOM Selectors
| Element | Selector | |---------|----------| | Start Space | `[data-testid="SpaceButton"]` | | Join Space | `[data-testid="joinSpace"]` | | Speaker list | `[data-testid="spaceSpeakers"]` | | Listener count | `[data-testid="spaceListeners"]` | | Recording | `[data-testid="spaceRecording"]` | | Schedule | `[data-testid="scheduleSpace"]` | | Space title | `[data-testid="spaceTitle"]` | | Space topic | `[data-testid="spaceTopic"]` |
Strategy Guide
Using Spaces for growth
1. Use `src/scrapeSpaces.js` to find active Spaces in your niche 2. Join as a listener -- consistent presence builds recognition 3. Request to speak when topic aligns with your expertise 4. Follow hosts and frequent speakers afterward 5. Post about key takeaways after each Space (content repurposing)
Discovering niche Spaces
1. Search `x.com/search?q=your-topic&f=live` for live Spaces 2. Follow accounts that regularly host Spaces in your niche 3. Set up `src/keywordMonitor.js` with Space-related keywords 4. Check `/i/spaces` for recommended Spaces in your interests
Hosting workflow
1. Schedule a Space from the compose button 2. Promote it with a tweet thread 24h before 3. Use `src/scrapeSpaces.js` to record participant metadata 4. After the Space, engage with attendees using `src/engagementBooster.js`
Notes
- Scraping captures metadata only (not audio content)
- Spaces can be live, scheduled, or ended -- all three states are detected
- Recording availability depends on host settings
- Space links: `x.com/i/spaces/{spaceId}`
- Live Spaces filter: append `&f=live` to search URL
- Hosting requires 600+ followers (X restriction)
⚡ 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

