docs-search

Index documentation files and search them semantically with FAISS or SQLite-VSS.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/ThePhoenixAgency/Phoenix-Agents-Marketplace --skill docs-search-thephoenixagency
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: docs-search
Source: https://github.com/ThePhoenixAgency/Phoenix-Agents-Marketplace/tree/main/skills/docs-search
Command: npx skills add https://github.com/ThePhoenixAgency/Phoenix-Agents-Marketplace --skill docs-search-thephoenixagency

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill enables efficient and accurate retrieval of information from project documentation, reducing the time spent searching for answers.

Core Features & Use Cases

  • Semantic Indexing: Creates embeddings for documentation chunks to enable meaning-based search.
  • Information Retrieval: Finds the most relevant documentation sections based on user queries.
  • Use Case: A new developer needs to understand how to configure the proxy. They can ask the Skill, which will return the most relevant sections from ARCHITECTURE.md, README.md, and INSTALL.md.

Quick Start

Use the docs-search skill to find information about configuring the proxy.

Frequently Asked Questions about docs-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I perform semantic search on Markdown documentation?

Semantic search on Markdown documentation works by generating text embeddings for document chunks and storing them in local indexes like FAISS or SQLite-VSS to match user queries based on meaning.

Can I index RST and TXT files for information retrieval?

Yes, you can index RST and TXT files for information retrieval by creating embeddings for their text chunks and storing them in local vector indexes for similarity searches.

Does semantic documentation search require FAISS or SQLite-VSS?

Semantic documentation search supports local indexes like FAISS or SQLite-VSS to store generated text embeddings and execute efficient similarity searches across your documentation files.

How do I retrieve relevant context from project documentation?

To retrieve relevant context from project documentation, query the indexed embeddings to find the most similar text chunks, returning the matching sections and their original source information.

What is the best way to search across multiple documentation formats?

The best way to search across multiple documentation formats like Markdown, TXT, and RST is generating unified text embeddings for all chunks and indexing them for semantic similarity searches.

Why does semantic search return source information with results?

Semantic search returns source information with results to identify exactly which documentation files and sections provided the retrieved context, ensuring developers can verify the information origin.