From hs-search
Searches health-samurai.io for Aidbox and Health Samurai docs, blog, case studies, code examples via API. Fetches full .md pages and site overviews for up-to-date product details.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hs-search:hs-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search health-samurai.io content: docs, blog, case studies, landing pages, code examples. Returns up-to-date information with links to source pages.
Search health-samurai.io content: docs, blog, case studies, landing pages, code examples. Returns up-to-date information with links to source pages.
curl -s 'https://www.health-samurai.io/api/llm/search?q=keywords+here&limit=10'
# Optional: §ion=docs|blog|landing — filter by content type
Returns { results: [{ title, url, snippet }], query, total }.
Use keywords, not full sentences. URL-encode $ as %24. Always single-quote the URL in curl.
When snippets aren't enough (how-to, setup guides, code examples), fetch the .md version. Strip #anchor from url, append .md:
# search result url: /docs/aidbox/access-control/authorization/access-policies#structure
# → strip anchor, add .md:
curl -s 'https://www.health-samurai.io/docs/aidbox/access-control/authorization/access-policies.md'
Works for /docs/..., /articles/..., and top-level pages (/aidbox.md, /price.md). Not available for GitHub example URLs. Fetch one page at a time — pages can be large.
For broad questions ("what products exist?", "what docs are available?"):
curl -s 'https://www.health-samurai.io/llms.txt' # site overview
curl -s 'https://www.health-samurai.io/docs/aidbox/llms.txt' # aidbox docs tree
https://health-samurai.io as base URL (not docs.aidbox.app). Exception: GitHub URLs from results — use as-is.User: "How do I configure access policies in Aidbox?"
# 1. Search
curl -s 'https://www.health-samurai.io/api/llm/search?q=AccessPolicy'
# 2. Best result: url=/docs/aidbox/access-control/authorization/access-policies#structure
# 3. Snippet too short → fetch full page
curl -s 'https://www.health-samurai.io/docs/aidbox/access-control/authorization/access-policies.md'
# 4. Answer from full content, link to the page with https://health-samurai.io base
npx claudepluginhub healthsamurai/samurai-skills --plugin hs-searchManages Claude documentation: local index search/discovery/resolution by keywords/tags/natural language, sitemap scraping, metadata/alias handling, drift detection.
Queries ABC medical cloud API docs from Apifox OpenAPI specs (5000+ interfaces). Searches by module/path/method, resolves $ref refs, fetches schemas and stats. Useful for API reference lookups.
Searches and interprets Bitdrift documentation for SDK setup, API/service details, product behavior, configuration, and best practices via targeted fetches from docs.bitdrift.io.