dsearch
Original:🇺🇸 English
Translated
Search and read offline documentation for various programming languages and libraries. Use this skill when you need to verify syntax, check function signatures, or read documentation without internet access.
4installs
Sourceicampana/dsearch
Added on
NPX Install
npx skill4agent add icampana/dsearch dsearchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →dsearch
dsearchTools
dsearch
The primary command for interacting with documentation.
Examples
List installed documentation
To see what documentation is available:
bash
dsearch listSearch for a specific term
To search for a term across all installed documentation:
bash
dsearch "query string"Search within a specific documentation set
To narrow down the search to a specific language or library (e.g., Go):
bash
dsearch "http.Client" --doc goRead documentation in Markdown format
For LLM consumption, always use to get clean Markdown output, and include to ensure the entire page is retrieved without truncation:
--format md--fullbash
dsearch "http.Client" --doc go --format md --fullInstall new documentation
If the required documentation is missing:
bash
dsearch install pythonBest Practices
- Always use when valid to get machine-readable output.
--format md - Use to retrieve the complete documentation page, preventing truncation of long articles.
--full - Use to reduce noise when you know the context (e.g., searching for
--doc <name>inMapvsgo).javascript - If a search returns too many results, try a more specific query or use the flag.
--limit