Help us improve
Share bugs, ideas, or general feedback.
From poisk
Hybrid semantic + keyword search over source code and documents via poisk. Only use when explicitly requested.
npx claudepluginhub alexander-akhmetov/poisk --plugin poiskHow this skill is triggered — by the user, by Claude, or both
Slash command
/poisk:searchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search indexed source code and documents using `poisk run` — hybrid semantic + keyword search over indexed content.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Search indexed source code and documents using poisk run — hybrid semantic + keyword search over indexed content.
poisk run <query> [--top-k N] [--folders dir1,dir2]
Output format per result:
[score] file_path:line_num [symbol] (context chain)
Full chunk text...
Warnings go to stderr. Use 2>/dev/null to suppress logs.
lex:term: keyword-only (exact match via FTS5)vec:term: semantic-only (vector similarity)lex:exact | vec:similar: compose sub-queries with |lang:go, kind:markdown, sym:functionNamelex: queries for exact terms (error messages, config keys, function names)--top-k to control result count (default 20)--folders to narrow results to a specific directory# Semantic search
poisk run "how does authentication work" --top-k 10 2>/dev/null
# Exact keyword match
poisk run "lex:handleRequest" 2>/dev/null
# Combined: semantic + keyword
poisk run "vec:error handling patterns | lex:error handling" 2>/dev/null
# Filter to specific folder
poisk run "database migrations" --folders ~/projects/myapp 2>/dev/null
# Filter by language
poisk run "lang:go interface implementation" 2>/dev/null