Use the `ketch` CLI for all web search, scraping, code search, and library doc lookups. Trigger whenever the user says "use ketch", asks to search the web, scrape a URL, look up OSS code examples, or fetch library docs — even if they don't mention ketch by name.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vinhnguyen1211-skills:ketchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fast, stateless CLI for web search, scraping, code search, and library docs. Always prefer `--json` for structured output.
Fast, stateless CLI for web search, scraping, code search, and library docs. Always prefer --json for structured output.
# Web search
ketch search "query" # titles, URLs, snippets
ketch search "query" --scrape # + full page content
ketch search "query" --limit 10 --json
# Scrape URLs → clean markdown
ketch scrape https://example.com
ketch scrape https://a.com https://b.com # concurrent batch
# Crawl a site
ketch crawl https://docs.example.com --depth 2
ketch crawl https://example.com/sitemap.xml --sitemap --background
ketch crawl status # list crawls
ketch crawl status <id> # check specific crawl
# Code search (OSS)
ketch code "query" --lang go # Sourcegraph (default)
ketch code "query" --lang go -b github # GitHub Code Search
# Library docs (Context7)
ketch docs "query" # auto-resolve library
ketch docs "query" --library /org/repo # direct lookup
ketch docs --resolve "glamour" # list matching library IDs
# Config & cache
ketch config # show effective config as JSON
ketch config set backend searxng
ketch cache # cache stats
| Flag | Description |
|---|---|
--json | Structured JSON output |
--scrape | Fetch full content from search results |
--limit, -l | Max results (default 5) |
--lang | Language filter for code search |
-b | Backend: brave/ddg/searxng (search), sourcegraph/github (code) |
--depth | BFS crawl depth (default 3) |
--background | Run crawl in background, returns crawl ID |
--no-cache | Bypass page cache |
| Feature | Backend | Endpoint |
|---|---|---|
| Search | SearXNG | http://homedev:8080 |
| Code search | Sourcegraph | https://sourcegraph.com |
| Docs search | Context7 | — |
--no-cache to force re-fetch.Inline in chat. No file needed.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub vinhnguyen1211/skills --plugin vinhnguyen1211-skills