mcpbeat Sign in

Reference Searcher Agent Skill

Systematic external reference searching across documentation, open-source repositories, and web resources. Use when working with unfamiliar libraries, APIs, or when needing production-quality implementation examples.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
141
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill reference-searcher

The instruction itself

12 sections, as written by the author

Reference Searcher

Structured methodology for searching external references — official docs, open-source implementations, and web resources — to inform development decisions.

When to Use This Skill

  • Working with unfamiliar libraries or frameworks
  • Needing production-quality implementation examples
  • Debugging unexpected behavior from external dependencies
  • Finding best practices for specific patterns (auth, caching, etc.)
  • Evaluating library choices with real-world usage data

What This Skill Does

Search Strategy: Three Layers

Layer 1: Official Documentation

Search official docs for the specific library using web search:

# Search official docs directly
# e.g., "next.js middleware authentication site:nextjs.org"
# Or use documentation MCP tools if available (e.g., Context7)

Best for: API signatures, configuration options, migration guides, official patterns.

Layer 2: Open-Source Implementation Examples (GitHub)

Search real codebases for production patterns:

# Search GitHub for code patterns via grep.app or GitHub search
# e.g., https://grep.app/search?q=getServerSession%28&filter[lang][0]=TypeScript
# Or use GitHub code search: gh search code "getServerSession(" --language=TypeScript

Best for: How established projects (1000+ stars) handle specific patterns, battle-tested error handling, real-world integration examples.

Search tips:

  • Search for actual code patterns, not keywords
  • Use (?s) prefix for multi-line regex patterns
  • Filter by language and file path for precision
  • Look for repos with 1000+ stars for production quality
Layer 3: Web Search (Current Information)

Search the web for recent articles, discussions, and guides:

# Web search for current information
# e.g., "OWASP JWT security best practices 2024"

Best for: Security advisories, recent breaking changes, community discussions, performance benchmarks, "why does X behave this way" questions.

Search Workflow

  • Start with official docs — fastest, most authoritative
  • If docs insufficient — search GitHub for real implementations
  • If pattern unclear — web search for community knowledge
  • Synthesize — combine findings into actionable guidance

Result Evaluation

For each source found, assess:

| Criterion | Check |

|-----------|-------|

| Recency | Is this from the current major version? |

| Authority | Official docs > popular repos > blog posts |

| Completeness | Does it cover error handling and edge cases? |

| Applicability | Does it match our tech stack and constraints? |

Output Format

## Research: [Topic]

### Official Documentation
- [Finding 1 with link]
- [Finding 2 with link]

### Production Examples
- [Repo/file]: [What pattern they use and why]
- [Repo/file]: [Alternative approach]

### Recommendation
Based on [sources], the recommended approach is [X] because [reasons].

### Caveats
- [Known limitation or gotcha]

Anti-Patterns

  • Searching for keywords instead of actual code patterns on GitHub
  • Trusting blog posts over official documentation
  • Using examples from outdated library versions
  • Skipping error handling patterns in reference code
  • Over-researching — stop when you have enough to proceed confidently

Example

User: "How should I implement rate limiting in Express?"

Output:

  • Official docs: express-rate-limit documentation — configuration options, store adapters
  • GitHub: 3 production repos showing Redis-backed rate limiting with sliding window
  • Web: OWASP rate limiting guidelines, comparison of token bucket vs sliding window
  • Recommendation: Use express-rate-limit with Redis store, sliding window algorithm, with specific config example

Inspired by: oh-my-opencode Librarian agent

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take arabelatso/reference-searcher from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.