/grok-ai
Integrates with X/Twitter's Grok AI for chat, image generation, tweet analysis, and content creation. Automates Grok prompts, scrapes Grok responses, and uses Grok for content strategy. Requires X Premium+. Use when users want to use Grok AI for content generation, analysis, or
$ npx -y skills add nirholas/XActions --skill grok-ai --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
/grok-ai
Context preview
The summary Claude sees to decide when to auto-load this skill.
Integrates with X/Twitter's Grok AI for chat, image generation, tweet analysis, and content creation. Automates Grok prompts, scrapes Grok responses, and uses Grok for content strategy. Requires X Premium+. Use when users want to use Grok AI for content generation, analysis, or
SKILL.md
grok-ai.SKILL.mdname: grok-ai
description: Integrates with X/Twitter's Grok AI for chat, image generation, tweet analysis, and content creation. Automates Grok prompts, scrapes Grok responses, and uses Grok for content strategy. Requires X Premium+. Use when users want to use Grok AI for content generation, analysis, or chat automation on X.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Grok AI Integration
Browser console scripts for automating interactions with X's built-in Grok AI assistant.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Chat with Grok | `src/grokIntegration.js` | `x.com/i/grok` | | Generate images | `src/grokIntegration.js` | `x.com/i/grok` | | Analyze tweet with Grok | `src/grokIntegration.js` | Any tweet |
Grok Integration
**File:** `src/grokIntegration.js`
Automates Grok AI prompts and response scraping.
How to Use
1. Navigate to `x.com/i/grok` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Controls
- `XActions.ask(prompt)` -- Send a prompt to Grok
- `XActions.scrapeResponse()` -- Capture Grok's latest response
- `XActions.generateImage(prompt)` -- Request image generation
- `XActions.batchAsk(prompts[])` -- Send multiple prompts sequentially
- `XActions.export()` -- Download conversation history as JSON
Features
- Automated prompt submission with response capture
- Batch prompting for content generation workflows
- Image generation prompt automation
- Conversation history export
- Rate-limited to avoid triggering restrictions
DOM Selectors
| Element | Selector | |---------|----------| | Grok input | `[data-testid="grokInput"]` or `textarea[placeholder]` | | Send button | `[data-testid="grokSend"]` | | Response container | `[data-testid="grokResponse"]` | | Image output | `[data-testid="grokImage"]` | | Grok nav | `a[href="/i/grok"]` |
Content Strategy with Grok
Using Grok for content ideation
1. `XActions.ask("What are the top 5 trending topics in {niche} right now?")` 2. `XActions.ask("Write 3 tweet variations about {topic}")` 3. `XActions.ask("Analyze this tweet for engagement: {tweet_text}")` 4. Capture responses with `XActions.scrapeResponse()` 5. Feed into `src/threadComposer.js` for thread creation
Batch content generation
await XActions.batchAsk([
"Write a hot take about AI agents",
"Write a thread hook about productivity",
"Write a poll question about remote work",
"Suggest 5 tweet ideas about {niche}",
]);
XActions.export(); // Download all responsesImage generation workflow
1. `XActions.generateImage("Professional headshot, tech founder, minimalist")` 2. Wait for generation (10-30 seconds) 3. Right-click generated image to save 4. Use as profile picture, header, or tweet media
Requirements
- X Premium or Premium+ subscription
- Grok access varies by region and account tier
- Image generation requires Premium+ in most regions
- Rate limits: ~20 prompts/hour for chat, ~5 images/hour
MCP Alternative
For programmatic AI content without Grok, the XActions MCP server includes AI tools powered by OpenRouter:
| MCP Tool | Purpose | |----------|---------| | `x_analyze_voice` | Analyze account's writing style | | `x_generate_tweet` | Generate tweet in user's voice | | `x_rewrite_tweet` | Rewrite tweet for better engagement | | `x_summarize_thread` | Summarize a thread |
These require an `OPENROUTER_API_KEY` env var but work without Premium.
Notes
- Grok responses are AI-generated and should be reviewed before posting
- Grok has real-time X data access -- can reference current trends
- Image generation creates original images (not screenshots/existing images)
- Conversation context is maintained within a chat session
Read more
name: grok-ai description: Integrates with X/Twitter's Grok AI for chat, image generation, tweet analysis, and content creation. Automates Grok prompts, scrapes Grok responses, and uses Grok for content strategy. Requires X Premium+. Use when users want to use Grok AI for content generation, analysis, or chat automation on X. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Grok AI Integration
Browser console scripts for automating interactions with X's built-in Grok AI assistant.
Script Selection
| Goal | File | Navigate to | |------|------|-------------| | Chat with Grok | `src/grokIntegration.js` | `x.com/i/grok` | | Generate images | `src/grokIntegration.js` | `x.com/i/grok` | | Analyze tweet with Grok | `src/grokIntegration.js` | Any tweet |
Grok Integration
**File:** `src/grokIntegration.js`
Automates Grok AI prompts and response scraping.
How to Use
1. Navigate to `x.com/i/grok` 2. Open DevTools (F12) -> Console 3. Paste the script -> Enter
Controls
- `XActions.ask(prompt)` -- Send a prompt to Grok
- `XActions.scrapeResponse()` -- Capture Grok's latest response
- `XActions.generateImage(prompt)` -- Request image generation
- `XActions.batchAsk(prompts[])` -- Send multiple prompts sequentially
- `XActions.export()` -- Download conversation history as JSON
Features
- Automated prompt submission with response capture
- Batch prompting for content generation workflows
- Image generation prompt automation
- Conversation history export
- Rate-limited to avoid triggering restrictions
DOM Selectors
| Element | Selector | |---------|----------| | Grok input | `[data-testid="grokInput"]` or `textarea[placeholder]` | | Send button | `[data-testid="grokSend"]` | | Response container | `[data-testid="grokResponse"]` | | Image output | `[data-testid="grokImage"]` | | Grok nav | `a[href="/i/grok"]` |
Content Strategy with Grok
Using Grok for content ideation
1. `XActions.ask("What are the top 5 trending topics in {niche} right now?")` 2. `XActions.ask("Write 3 tweet variations about {topic}")` 3. `XActions.ask("Analyze this tweet for engagement: {tweet_text}")` 4. Capture responses with `XActions.scrapeResponse()` 5. Feed into `src/threadComposer.js` for thread creation
Batch content generation
await XActions.batchAsk([
"Write a hot take about AI agents",
"Write a thread hook about productivity",
"Write a poll question about remote work",
"Suggest 5 tweet ideas about {niche}",
]);
XActions.export(); // Download all responsesImage generation workflow
1. `XActions.generateImage("Professional headshot, tech founder, minimalist")` 2. Wait for generation (10-30 seconds) 3. Right-click generated image to save 4. Use as profile picture, header, or tweet media
Requirements
- X Premium or Premium+ subscription
- Grok access varies by region and account tier
- Image generation requires Premium+ in most regions
- Rate limits: ~20 prompts/hour for chat, ~5 images/hour
MCP Alternative
For programmatic AI content without Grok, the XActions MCP server includes AI tools powered by OpenRouter:
| MCP Tool | Purpose | |----------|---------| | `x_analyze_voice` | Analyze account's writing style | | `x_generate_tweet` | Generate tweet in user's voice | | `x_rewrite_tweet` | Rewrite tweet for better engagement | | `x_summarize_thread` | Summarize a thread |
These require an `OPENROUTER_API_KEY` env var but work without Premium.
Notes
- Grok responses are AI-generated and should be reviewed before posting
- Grok has real-time X data access -- can reference current trends
- Image generation creates original images (not screenshots/existing images)
- Conversation context is maintained within a chat session
⚡ 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

