# Xspoonai Official Grok Research

> Grok Research

- Skill: `jiayaoqijia/xspoonai-official-grok-research` (Agent Skill, multi-file: 6 files)
- Install (CLI): `npx skillmds@latest add jiayaoqijia/xspoonai-official-grok-research`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jiayaoqijia/xspoonai-official-grok-research/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: jiayaoqijia (https://skillmd.com/u/jiayaoqijia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jiayaoqijia/xspoonai-official-grok-research

---


# Grok Research

Expert web research skill that uses Grok-compatible endpoints to perform deep searches and synthesize information with explicit source citations.

## Quick Start

```python
# Minimal working example
from spoon_ai.agents import SpoonReactSkill

agent = SpoonReactSkill(
    name="researcher",
    skill_paths=["./grok-research"],
    scripts_enabled=True
)
await agent.activate_skill("grok-research")
result = await agent.execute("What is the current status of SpoonOS?")
```

## Scripts

| Script | Purpose |
|--------|---------|
| [grok_tool.py](scripts/grok_tool.py) | Main tool for performing web research and synthesis. |

## Environment Variables

| Variable | Required | Description |
|----------|----------|-------------|
| `GROK_API_KEY` | Yes | Your Grok-compatible API key. |
| `GROK_BASE_URL` | Yes | The endpoint URL (OpenAI-compatible). |
| `GROK_MODEL` | No | Model to use (default: grok-2-latest). |

## Best Practices

1. Use specific queries for better search results.
2. Provide context in the query if searching for niche technical topics.
3. Review the `sources` array for deeper verification.

