reference-searcher — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited reference-searcher (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Structured methodology for searching external references — official docs, open-source implementations, and web resources — to inform development decisions.
#### 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=TypeScriptBest for: How established projects (1000+ stars) handle specific patterns, battle-tested error handling, real-world integration examples.
Search tips:
(?s) prefix for multi-line regex patterns#### 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.
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? |
## 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]User: "How should I implement rate limiting in Express?"
Output:
express-rate-limit with Redis store, sliding window algorithm, with specific config exampleInspired by: oh-my-opencode Librarian agent
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.