docs-seeker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited docs-seeker (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.
Script-first documentation discovery using llms.txt standard.
Execute scripts to handle entire workflow - no manual URL construction needed.
ALWAYS execute scripts in this order:
# 1. DETECT query type (topic-specific vs general)
node scripts/detect-topic.js "<user query>"
# 2. FETCH documentation using script output
node scripts/fetch-docs.js "<user query>"
# 3. ANALYZE results (if multiple URLs returned)
cat llms.txt | node scripts/analyze-llms-txt.js -Scripts handle URL construction, fallback chains, and error handling automatically.
`detect-topic.js` - Classify query type
{topic, library, isTopicSpecific}`fetch-docs.js` - Retrieve documentation
`analyze-llms-txt.js` - Process llms.txt
[Topic-Specific Search](./workflows/topic-search.md) - Fastest path (10-15s)
[General Library Search](./workflows/library-search.md) - Comprehensive coverage (30-60s)
[Repository Analysis](./workflows/repo-analysis.md) - Fallback strategy
[context7-patterns.md](./references/context7-patterns.md) - URL patterns, known repositories
[errors.md](./references/errors.md) - Error handling, fallback strategies
[advanced.md](./references/advanced.md) - Edge cases, versioning, multi-language
Topic query: "How do I use date picker in shadcn?"
node scripts/detect-topic.js "<query>" # → {topic, library, isTopicSpecific}
node scripts/fetch-docs.js "<query>" # → 2-3 URLs
# Read URLs with WebFetchGeneral query: "Documentation for Next.js"
node scripts/detect-topic.js "<query>" # → {isTopicSpecific: false}
node scripts/fetch-docs.js "<query>" # → 8+ URLs
cat llms.txt | node scripts/analyze-llms-txt.js - # → {totalUrls, distribution}
# Deploy agents per recommendationScripts load .env: process.env > .claude/skills/docs-seeker/.env > .claude/skills/.env > .claude/.env
See .env.example for configuration options.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.