🎯

docs-seeker

🎯Skill

from duonglx/chanmayfoods

VibeIndex|
What it does

Searches and retrieves technical documentation across libraries, repositories, and topics using automated executable scripts with intelligent query detection.

πŸ“¦

Part of

duonglx/chanmayfoods(32 items)

docs-seeker

Installation

Node.jsRun Node.js server
node scripts/detect-topic.js "<user query>"
Node.jsRun Node.js server
node scripts/fetch-docs.js "<user query>"
Node.jsRun Node.js server
node scripts/detect-topic.js "<query>" # β†’ {topic, library, isTopicSpecific}
Node.jsRun Node.js server
node scripts/fetch-docs.js "<query>" # β†’ 2-3 URLs
Node.jsRun Node.js server
node scripts/detect-topic.js "<query>" # β†’ {isTopicSpecific: false}

+ 1 more commands

πŸ“– Extracted from docs: duonglx/chanmayfoods
4Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

"Search technical documentation using executable scripts to detect query type, fetch from llms.txt sources (context7.com), and analyze results. Use when user needs: (1) Topic-specific documentation (features/components/concepts), (2) Library/framework documentation, (3) GitHub repository analysis, (4) Documentation discovery with automated agent distribution strategy"

Overview

# Documentation Discovery via Scripts

Overview

Script-first documentation discovery using llms.txt standard.

Execute scripts to handle entire workflow - no manual URL construction needed.

Primary Workflow

ALWAYS execute scripts in this order:

```bash

# 1. DETECT query type (topic-specific vs general)

node scripts/detect-topic.js ""

# 2. FETCH documentation using script output

node scripts/fetch-docs.js ""

# 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.

Scripts

detect-topic.js - Classify query type

  • Identifies topic-specific vs general queries
  • Extracts library name + topic keyword
  • Returns JSON: {topic, library, isTopicSpecific}
  • Zero-token execution

fetch-docs.js - Retrieve documentation

  • Constructs context7.com URLs automatically
  • Handles fallback: topic β†’ general β†’ error
  • Outputs llms.txt content or error message
  • Zero-token execution

analyze-llms-txt.js - Process llms.txt

  • Categorizes URLs (critical/important/supplementary)
  • Recommends agent distribution (1 agent, 3 agents, 7 agents, phased)
  • Returns JSON with strategy
  • Zero-token execution

Workflow References

[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

References

[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

Execution Principles

  1. Scripts first - Execute scripts instead of manual URL construction
  2. Zero-token overhead - Scripts run without context loading
  3. Automatic fallback - Scripts handle topic β†’ general β†’ error chains
  4. Progressive disclosure - Load workflows/references only when needed
  5. Agent distribution - Scripts recommend parallel agent strategy

Quick Start

Topic query: "How do I use date picker in shadcn?"

```bash

node scripts/detect-topic.js "" # β†’ {topic, library, isTopicSpecific}

node scripts/fetch-docs.js "" # β†’ 2-3 URLs

# Read URLs with WebFetch

```

General query: "Documentation for Next.js"

```bash

node scripts/detect-topic.js "" # β†’ {isTopicSpecific: false}

node scripts/fetch-docs.js "" # β†’ 8+ URLs

cat llms.txt | node scripts/analyze-llms-txt.js - # β†’ {totalUrls, distribution}

# Deploy agents per recommendation

```

Environment

Scripts load .env: process.env > .claude/skills/docs-seeker/.env > .claude/skills/.env > .claude/.env

See .env.example for configuration options.

More from this repository10

🎯
ui-ux-pro-max🎯Skill

Generates comprehensive UI/UX design recommendations with 50+ styles, 21 color palettes, font pairings, and best practices across multiple tech stacks.

🎯
frontend-design🎯Skill

Generates distinctive, production-grade frontend interfaces by extracting design guidelines from references and implementing creative, high-quality code with exceptional aesthetic attention.

🎯
code-review🎯Skill

Enforces rigorous code review practices by systematically receiving feedback, requesting reviews, and implementing strict verification gates before claiming task completion.

🎯
frontend-dev-guidelines🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or context of the "frontend-dev-guidelines" skill from the specified repository. Could you provide more details ab...

🎯
debugging🎯Skill

Systematically investigates and traces root causes of bugs, ensuring comprehensive validation and verification before implementing fixes.

🎯
threejs🎯Skill

Enables creating immersive 3D web experiences with WebGL/WebGPU, supporting scenes, models, animations, rendering, and advanced graphics techniques.

🎯
chrome-devtools🎯Skill

Automates browser interactions, performance analysis, and web debugging using Puppeteer CLI scripts for comprehensive web testing and inspection.

🎯
template-skill🎯Skill

Provides a customizable template for creating new Claude skills with structured guidance and best practices.

🎯
ui-styling🎯Skill

Crafts beautiful, accessible user interfaces using shadcn/ui components, Tailwind CSS utility styling, and canvas-based visual design systems.

🎯
backend-development🎯Skill

Designs and implements robust, scalable backend systems using modern technologies, best practices, and secure architectural patterns.