Research
Nova — AI Content Studio for Claude Code. Content calendar, research, carousels, blog images, X posting.
npx -y skills add mb3rgel-ui/nova-claude-skill --skill researchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Research topics using Grok's web search and X/Twitter search via the xAI Responses API. Use for finding media appearances, news, people, companies, or any task requiring real-time web data.
SKILL.md
2.6 KB, as published. Nobody here has run it
Research — Grok Web + X Search
How It Works
Uses xAI's Responses API (/v1/responses) with built-in tools (web_search, x_search) for real-time research. This is NOT the chat completions endpoint — that has no search capability.
API Key
Store your xAI API key at ~/.config/xai/api_key.
XAI_KEY=$(cat ~/.config/xai/api_key)
Basic Research Query
XAI_KEY=$(cat ~/.config/xai/api_key)
curl -s https://api.x.ai/v1/responses \
-H "Authorization: Bearer $XAI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok-4-1-fast",
"input": "YOUR RESEARCH QUERY HERE",
"tools": [{"type": "web_search"}, {"type": "x_search"}]
}' | python3 -c "
import sys, json
data = json.load(sys.stdin)
for item in data.get('output', []):
if item.get('type') == 'message':
for c in item.get('content', []):
if c.get('type') == 'output_text':
print(c['text'])
for ann in c.get('annotations', []):
if ann.get('url'):
print(f' [{ann[\"url\"]}]')
"
Tool Options
| Tool | Purpose |
|---|---|
web_search | Search the web, browse pages, extract info |
x_search | Search X/Twitter posts and discussions |
Both can be used together: "tools": [{"type": "web_search"}, {"type": "x_search"}]
Web Search Parameters
{"type": "web_search", "allowed_domains": ["example.com"]}
{"type": "web_search", "excluded_domains": ["reddit.com"]}
Model Requirements
- Only grok-4 family models support server-side tools
- Use
grok-4-1-fastfor speed (recommended) - Older models do NOT support tools
Important Notes
- The
/chat/completionsendpoint does NOT support web search — only/responsesdoes - Responses can take 30-90 seconds for complex queries
- Always use timeout 120s for curl calls
Parsing the Response
The response output array contains:
web_search_callitems (searches performed)x_search_callitems (X searches performed)messageitems withcontent[].output_text(the final answer)- Annotations with citation URLs
When to Use
- Finding media appearances, podcast episodes, interviews
- Researching people, companies, events
- Checking recent news or social media discussion
- X/Twitter sentiment or discussion analysis
When NOT to Use
- Simple factual questions (use regular chat)
- Code generation or analysis
- Tasks that don't need web data