Agent skill · Business & Finance

research-topic

Crawl and collect resources for a financial research topic using Exa with full HTML and chart extraction.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: BashReadWrite
Path: skills/analysis/research-topic-epochdevs-claudecoderesearch/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

# Research Topic Crawler Collect raw resources (articles, charts, tables) for a financial research topic using the optimized Exa crawler. **Key Features:** - Full HTML content with tags preserved - Automatic chart/image URL extraction and download - Organized by source domain ## Usage ```bash /research-topic "seasonality in financial assets" /research-topic "FX macro correlations commodity currencies" /research-topic "momentum factor investing" ``` ## Workflow ### Phase 1: Initialize Topic Folder ```bash cd /home/adesola/EpochDev/ClaudeCodeResearch source .venv/bin/activate python report_notes/scripts/init_topic.py "$TOPIC" ``` This creates: ``` report_notes/<topic_slug>/ ├── manifest.json ├── sources/ │ ├── quantpedia/ │ ├── academic/ │ ├── broker_research/ │ ├── market_data/ │ └── misc/ └── images/ ``` ### Phase 2: Search and Crawl Sources Use the optimized Exa crawler script which: - Preserves HTML tags (`includeHtmlTags: true`) - Extracts image URLs (`extras.imageLinks: 30`) - Downloads charts automatically - Organizes by domain **General Search (broad coverage):** ```bash python report_notes/scripts/exa_crawler.py search "$TOPIC" --num 15 -o /tmp/search_results.json ``` **Doma

What's inside
Steps it walks through
  1. Usage
  2. Workflow
  3. Phase 1: Initialize Topic Folder
  4. Phase 2: Search and Crawl Sources
  5. Phase 3: Save Sources to Topic
  6. Phase 4: Crawl Specific URLs
  7. Phase 5: Show Status
  8. Exa Crawler Script Reference
  9. Commands
  10. API Parameters Used
  11. What Gets Extracted
  12. Output Structure
  13. Manifest Format
  14. Source Markdown Format
Ships with 1 file
  • metadata.json
Commands it runs
cd /home/adesola/EpochDev/ClaudeCodeResearch
source .venv/bin/activate
python report_notes/scripts/init_topic.py "$TOPIC"
python report_notes/scripts/exa_crawler.py search "$TOPIC" --num 15 -o /tmp/search_results.json
python report_notes/scripts/exa_crawler.py search "$TOPIC academic research" --num 10 -o /tmp/academic_results.json
python report_notes/scripts/exa_crawler.py search "USDCAD crude oil WTI correlation" --num 10 -o /tmp/usdcad_results.json
Crawl single URL with full content
python report_notes/scripts/exa_crawler.py crawl "<url>" --json -o /tmp/crawl_result.json
Then save to topic using Python
python -c "
More from claude-skill-registry
All skills →
About this skill
What does the research-topic skill do?

Crawl and collect resources for a financial research topic using Exa with full HTML and chart extraction.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill research-topic-epochdevs-claudecoderesearch --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