Agent skill · Backend & API

freesearch

TRULY FREE research via Exa API - zero Claude tokens. Uses Exa directly, no Gemini CLI wrapper.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill freesearch --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBash
Path: skills/analysis/freesearch/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /freesearch - TRULY FREE Research **Uses 0 Claude Code tokens.** Calls Exa API directly via curl. ## When To Use User says: - `/freesearch [topic]` - Slash command - "Free research on [topic]" - "Research without burning tokens" --- ## How It Works **Direct API calls via curl:** 1. Ask 2-3 clarifying questions (goal, depth, audience) 2. Create `docs/research/{date}_{topic}_in_progress.md` 3. Search Exa API: - web search for overview - code search for technical details - company/person search if relevant 4. Update in-progress file with raw results 5. Create `docs/research/{date}_{topic}_final.md` with: - Executive summary - Key findings - Sources with links - Related topics 6. Return file path to Claude for reading --- ## Exa API Configuration The EXA_API_KEY is loaded from encrypted secrets: ```bash # Decrypt and load key (done via skill wrapper) EXA_KEY=$(sops --decrypt --output-type json ~/github/oneshot/secrets/research_keys.json.encrypted | grep -o '"EXA_API_KEY": "[^"]*"' | cut -d'"' -f4) ``` API Endpoint: `https://api.exa.ai/search` --- ## Research Prompt Template ```bash curl -s -X POST 'https://api.exa.ai/search' \ -H "x-api-key: $EXA_API_KEY" \ -H "Content-Type: applicat

What's inside
Steps it walks through
  1. When To Use
  2. How It Works
  3. Exa API Configuration
  4. Research Prompt Template
  5. Output Locations
  6. Quick Wins to Implement
  7. Example Usage
  8. File Format Template
  9. In-Progress Template
  10. Final Template
  11. Why This Exists
  12. Tips
  13. Keywords
Ships with 1 file
  • metadata.json
Commands it runs
Decrypt and load key (done via skill wrapper)
curl -s -X POST 'https://api.exa.ai/search' \
More from claude-skill-registry
All skills →
About this skill
What does the freesearch skill do?

TRULY FREE research via Exa API - zero Claude tokens. Uses Exa directly, no Gemini CLI wrapper.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill freesearch --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going