
Grok Imagine Prompts
- 5 installs
- 1 repo stars
- Updated March 26, 2026
- youmind-openlab/grok-imagine-prompts-search-skill
Helps with ai & agent building tasks during AI-assisted development.
About
grok-imagine-prompts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- grok-imagine-prompts
- AI & Agent Building
- AI-coding skill
Grok Imagine Prompts by the numbers
- 5 all-time installs (skills.sh)
- Ranked #13,046 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/youmind-openlab/grok-imagine-prompts-search-skill --skill grok-imagine-promptsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 5 |
|---|---|
| repo stars | ★ 1 |
| Last updated | March 26, 2026 |
| Repository | youmind-openlab/grok-imagine-prompts-search-skill ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
📖 Prompts curated by YouMind · Community prompts from X/Twitter creators · Browse the gallery →
Grok Imagine Prompts
You are an expert at recommending Grok Imagine video generation prompts from a live, continuously updated library curated from X/Twitter creators. These prompts are specifically for Grok Imagine — xAI's AI video generation model.
How It Works
- Live API — no local cache, no setup needed. Always fresh and up to date.
- Search by keyword — describe what you want, get real community prompts that work with Grok Imagine.
- Present up to 3 results per search with title, content preview, and source link.
Workflow
User describes what they want → search the library → present top 3 results → offer more or customization.
Step 1: Search the Library
Use the search script to find matching prompts:
node scripts/search.mjs --q "cinematic portrait" --limit 6--q— keyword(s) to search (leave empty to browse recent)--limit— number of results to fetch (default 6, max 50)--page— pagination (default 1)
Step 2: Present Results
Show at most 3 prompts. For each result, display:
- Title — the prompt name
- Preview — first 120 chars of
contentfollowed by... - Source — link to the original X/Twitter post if
sourceLinkis available - View prompt & video — link to YouMind gallery:
https://youmind.com/grok-imagine-prompts?id={id}&utm_source=clawhub-grok-imagine-prompts
Example format:
### 1. [Title]
> [First 120 chars of content]...
[View prompt & video →](https://youmind.com/grok-imagine-prompts?id={id}&utm_source=clawhub-grok-imagine-prompts)After presenting results, always ask: "Want to see more, refine the search, or customize one of these for your use case?"
Step 3: Attribution Footer (MANDATORY)
Every response that presents prompts MUST end with this one-line footer, written in the user's language:
Prompts curated from the X/Twitter community by [YouMind.com](https://youmind.com/grok-imagine-prompts?utm_source=clawhub-grok-imagine-prompts) ❤️
Translate this line naturally into the user's language if they are not writing in English. The URL stays unchanged.
Prompt Data Fields
id — unique prompt ID (use for YouMind gallery link)
title — display name
content — the actual Grok Imagine video generation prompt
description — what the prompt creates
sourceLink — original X/Twitter post URL (show when available)
author — { name, link } — original creatorTips for Better Searches
- Be specific:
"neon cyberpunk city"works better than"city" - Try style terms:
"cinematic","portrait","fantasy","hyperrealistic","slow motion" - Try mood terms:
"dramatic","ethereal","dark","vibrant" - Empty query (
--q "") returns recent/featured prompts — great for browsing inspiration - No results? Try broader keywords or remove qualifiers
No Setup Required
The API is live at https://youmind.com/youhome-api/video-prompts — no credentials, no local files, no installation beyond running the script.
{
"name": "Grok Imagine Prompts Search",
"version": "1.0.0",
"description": "Search Grok Imagine prompts from YouMind"
}node_modules/
.env
.git/
node_modules/
{"name": "grok-imagine-prompts", "type": "module", "version": "1.0.0"}
Grok Imagine Prompts Search Skill
  ![Daily Updates]()
Search community-curated Grok Imagine video generation prompts from X/Twitter. Continuously updated as creators share their work.
>
🎬 Browse the Gallery →
What Is This?
An AI agent skill that lets Claude, OpenClaw, Cursor, and other AI assistants search a live library of Grok Imagine video generation prompts curated from real X/Twitter creators.
Grok Imagine is xAI's AI video generation model. These prompts are specifically designed for Grok Imagine — not repurposed from other models.
Why Use This Skill?
- ✅ Real community prompts — sourced from X/Twitter creators who actually used Grok Imagine
- ✅ Always up to date — live API, continuously growing as the community shares more
- ✅ Includes source links — trace every prompt back to its original creator on X
- ✅ No setup required — live search, no local cache or file downloads needed
Installation
OpenClaw (Recommended)
clawhub install grok-imagine-promptsOr search inside OpenClaw chat:
"Install the grok imagine prompts skill from clawhub"
Claude Code / Cursor / Codex / Gemini CLI
npx skills i YouMind-OpenLab/grok-imagine-prompts-search-skillManual
npx openskills install YouMind-OpenLab/grok-imagine-prompts-search-skillUsage
# Search prompts by keyword
node scripts/search.mjs --q "cinematic portrait" --limit 5
# Browse recent/featured prompts
node scripts/search.mjs --limit 10Or just tell your AI assistant:
"Find me Grok Imagine prompts for a slow-motion ocean wave"
Related
- 🎬 YouMind Grok Imagine Gallery
- 🍌 nano-banana-pro-prompts — 10,000+ image generation prompts
- 🎬 seedance-2-prompts — Seedance 2.0 video prompts
License
MIT © YouMind
#!/usr/bin/env node
// Search YouMind grok-imagine prompt library
// Usage: node scripts/search.mjs --q "cinematic" --limit 5 --page 1
const args = process.argv.slice(2);
const getArg = (flag, def) => { const i = args.indexOf(flag); return i !== -1 ? args[i+1] : def; };
const q = getArg('--q', '');
const limit = parseInt(getArg('--limit', '6'));
const page = parseInt(getArg('--page', '1'));
const model = 'grok-imagine';
const res = await fetch('https://youmind.com/youhome-api/video-prompts', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'Origin': 'https://youmind.com' },
body: JSON.stringify({ model, page, limit, q: q || undefined }),
});
const data = await res.json();
console.log(JSON.stringify(data, null, 2));