CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Firecrawl Research

glebis/claude-skills
300 installs240 stars
Summary

This automates web research by pulling topics from your markdown files and scraping content through FireCrawl's API. You feed it a markdown file with headers or tagged items, and it generates separate research documents for each topic with full scraped content from multiple sources. It's surprisingly complete: includes rate limiting for the free tier, generates BibTeX bibliographies from results, and bundles Pandoc and MyST templates for academic writing. The 12 second delay between topics means researching 10 topics takes about 2 minutes, which is the right trade-off if you're actually writing papers and need proper citations instead of quick summaries. Good fit for literature reviews or maintaining an Obsidian research vault where you want full source text, not just links.

Install to Claude Code

npx -y skills add glebis/claude-skills --skill firecrawl-research --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

FireCrawl Research

Overview

Enrich research documents by automatically searching and scraping web sources using the FireCrawl API. Extract research topics from markdown files and generate comprehensive research documents with source material.

When to Use This Skill

Use this skill when the user:

  • Says "Research this topic using FireCrawl"
  • Requests to enrich notes or documents with web sources
  • Wants to gather information about topics listed in a markdown file
  • Needs to search and scrape multiple topics systematically

How It Works

1. Topic Extraction

The script automatically extracts research topics from markdown files using two methods:

Method 1: Headers

## Spatial Reasoning in AI
### Computer Vision Applications

Both Spatial Reasoning in AI and Computer Vision Applications become research topics.

Method 2: Research Tags

- [research] Large Language Models for robotics
- [search] Theory of Mind in autonomous driving

Both tagged items become research topics.

2. Search and Scrape

For each topic:

  1. Searches FireCrawl with the topic as query
  2. Retrieves up to N results (default: 5)
  3. Automatically scrapes full content from each result
  4. Extracts markdown-formatted content (main content only)

3. Output Generation

Creates new markdown files in the specified output directory:

  • One file per topic
  • Filename: {topic}_{timestamp}.md
  • Contains: title, date, sources count, full scraped content
  • Each source includes: title, URL, markdown content

Usage

Basic Usage

python scripts/firecrawl_research.py research.md

Outputs to current directory.

Specify Output Directory

python scripts/firecrawl_research.py research.md ./output

Creates files in ./output/ folder.

Limit Results Per Topic

python scripts/firecrawl_research.py research.md ./output 3

Retrieves maximum 3 results per topic.

Configuration

API Key Setup

  1. Copy .env.example to .env:

    cp .env.example .env
    
  2. Add FireCrawl API key:

    FIRECRAWL_API_KEY=fc-your-actual-api-key
    

The script automatically loads the API key from the skill's .env file.

Rate Limiting

The script includes automatic rate limiting for FireCrawl's free tier:

  • Free tier limit: 5 requests/minute
  • Built-in delay: 12 seconds between topics
  • Prevents API errors and credit exhaustion

When processing multiple topics, expect:

  • 5 topics: ~1 minute
  • 10 topics: ~2 minutes
  • 20 topics: ~4 minutes

Workflow Example

User request: "Research these AI topics using FireCrawl"

Input file (ai-research.md):

# AI Research Topics

## Spatial Reasoning in Vision-Language Models

- [research] Embodied AI for robotics
- [research] Computer Use Agents

Command:

python scripts/firecrawl_research.py ai-research.md ./research_output 5

Output:

research_output/
├── Spatial_Reasoning_in_Vision-Language_Models_20251122_140530.md
├── Embodied_AI_for_robotics_20251122_140542.md
└── Computer_Use_Agents_20251122_140554.md

Each file contains:

  • Topic title
  • Timestamp
  • Source count
  • Full scraped content from up to 5 sources
  • Source URLs

Common Patterns

Pattern 1: Quick Research

Extract topics from existing notes, research them, save to current folder:

python scripts/firecrawl_research.py my-notes.md

Pattern 2: Organized Research

Create dedicated output folder for research results:

python scripts/firecrawl_research.py topics.md ./research_results

Pattern 3: Deep Dive

Increase results per topic for comprehensive coverage:

python scripts/firecrawl_research.py topics.md ./deep_research 10

Pattern 4: Obsidian Vault Integration

Direct output to vault's research folder:

python scripts/firecrawl_research.py topics.md ~/Brains/brain/Research

Error Handling

"API key not found"

Create .env file in skill folder with FIRECRAWL_API_KEY=...

"Rate limit exceeded"

  • Free tier: 5 req/min
  • Script has 12s delay built-in
  • If still hitting limit, reduce topics or wait between runs

"Insufficient credits"

  • Check FireCrawl account credits
  • Upgrade plan or wait for credit reset

"No topics found"

Add topics to markdown using:

  • ## Header format
  • - [research] Topic format
  • - [search] Topic format

Script Details

Location: scripts/firecrawl_research.py

Dependencies:

  • python-dotenv - Environment variable management
  • requests - HTTP requests to FireCrawl API

Install dependencies:

pip install python-dotenv requests

FireCrawl Features Used:

  • /v1/search endpoint - Search with automatic scraping
  • scrapeOptions.formats: ['markdown'] - Markdown output
  • scrapeOptions.onlyMainContent: true - Filter noise

Academic Writing Templates

This skill includes templates for writing scientific papers in markdown format.

Available Templates

1. Pandoc Scholarly Paper (assets/templates/pandoc-scholarly-paper.md)

  • Standard academic paper format
  • Compatible with Pandoc converter
  • Supports citations via BibTeX
  • Exports to PDF, DOCX, HTML

2. MyST Scientific Paper (assets/templates/myst-scientific-paper.md)

  • MyST (Markedly Structured Text) format
  • Advanced cross-referencing
  • Professional scientific publishing
  • Multi-format export (PDF, LaTeX, DOCX)

Using Templates

Copy template to your project:

cp assets/templates/pandoc-scholarly-paper.md my-paper.md
# or
cp assets/templates/myst-scientific-paper.md my-paper.md

Edit content:

  • Update YAML frontmatter (title, authors, affiliations)
  • Write your content in sections
  • Add citations using [@AuthorYear] (Pandoc) or {cite}\AuthorYear`` (MyST)

Convert to PDF/DOCX:

python scripts/convert_academic.py my-paper.md pdf
python scripts/convert_academic.py my-paper.md docx
python scripts/convert_academic.py my-paper.md pdf --myst  # For MyST

Bibliography Generation

Convert FireCrawl research results into BibTeX bibliography entries:

python scripts/generate_bibliography.py research_output/*.md -o references.bib

What it does:

  • Extracts URLs and titles from FireCrawl markdown files
  • Generates BibTeX @misc entries
  • Creates citation keys automatically
  • Adds access dates

Example workflow:

# 1. Research topics
python scripts/firecrawl_research.py topics.md ./research

# 2. Generate bibliography
python scripts/generate_bibliography.py research/*.md -o refs.bib

# 3. Copy template
cp assets/templates/pandoc-scholarly-paper.md paper.md

# 4. Edit paper.md (add content, cite sources)

# 5. Convert to PDF
python scripts/convert_academic.py paper.md pdf

Citation Examples

Pandoc syntax:

Recent research [@Smith2024] shows...
Multiple studies [@Jones2023; @Brown2024] indicate...

MyST syntax:

Recent research {cite}`Smith2024` shows...
Multiple studies {cite}`Jones2023,Brown2024` indicate...

Example Bibliography File

An example bibliography is provided in assets/references.bib with common entry types:

  • Journal articles (@article)
  • Conference papers (@inproceedings)
  • Books (@book)
  • PhD theses (@phdthesis)
  • Web resources (@misc)
  • Preprints (@article with arXiv)

Tips

  1. Organize topics hierarchically - Use ## for main topics, ### for subtopics
  2. Use descriptive names - Topic text becomes filename, make it clear
  3. Batch processing - Group related topics in one file for efficiency
  4. Output organization - Create separate folders for different research projects
  5. Content review - Results are truncated at 3000 chars/source for readability
  6. Academic workflow - Use bibliography generator to cite research sources in papers
  7. Template customization - Modify templates for your field's citation style

Limitations

  • No summarization - Returns raw scraped content, not summaries
  • No deduplication - Duplicate sources may appear across topics
  • No quality ranking - All results treated equally
  • New files only - Does not append to existing files
  • Free tier constraints - Rate limiting affects processing speed
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Data Science & ML
First SeenJun 3, 2026
View on GitHub

Recommended

More Data Science & ML →
jupyter-notebook

openai/skills

jupyter notebook
2.4k
21.1k
deep-learning-pytorch

mindrally/skills

deep learning pytorch
1.1k
128
jupyter-notebook-writing

zc277584121/marketing-skills

jupyter notebook writing
815
machine-learning-ops-ml-pipeline

sickn33/antigravity-awesome-skills

machine learning ops ml pipeline
470
39.4k
aris-autonomous-ml-research

aradotso/trending-skills

aris autonomous ml research
360
26
ai-ml-data-science

vasilyu1983/ai-agents-public

ai ml data science
217
60