@ratiu5/starlight-search-cli
v0.0.6
Published
Starlight search CLI
Downloads
41
Maintainers
Readme
Starlight Search CLI
CLI tool for searching Starlight documentation and fetching llms.txt content.
Installation
npm install -g @ratiu5/starlight-search-cliCommands
search
Search documentation for a keyword.
sls search -d https://docs.example.com "buffers"Options:
-d, --domain- API domain (e.g.http://localhost:4321)
Output:
{
"results": [
{
"url": "https://docs.example.com/guide/buffers",
"title": "GPU Buffers",
"excerpt": "Learn about WebGPU buffers...",
"score": 0.95,
"llmsTxt": "https://docs.example.com/guide/buffers/_llms-txt"
}
],
"totalResults": 1
}show
Fetch and display llms.txt content from a URL.
sls show "https://docs.example.com/guide/buffers/_llms-txt"Development
pnpm dev # watch mode
pnpm build # build for production
pnpm typecheck