← ClaudeAtlas

kb-querylisted

Interactive Knowledge Base search with natural language queries. Use this skill when you need to search KB, find patterns, search knowledge base, look for solutions, find bug fixes, or query institutional knowledge. Searches patterns and bug fixes with relevance ranking, quality scoring, and fuzzy matching for typo tolerance. Helps users find solutions quickly without manual browsing.
davidmatousek/tachi · ★ 75 · AI & Automation · score 82
Install: claude install-skill davidmatousek/tachi
# KB Query Skill ## Purpose Interactive Knowledge Base search with natural language queries, providing fast access to institutional knowledge through relevance-ranked results with quality scoring. ## How It Works ### Step 1: Accept Query User provides search query or problem description: ``` User: "Search KB for database connection pool issues" ``` ### Step 2: Execute Search Run KB search with intelligent parameters: ```bash # Basic search make kb-search QUERY="database connection pool" # With category filter make kb-search QUERY="JWT authentication" CATEGORY=AUTH # With quality threshold make kb-search QUERY="performance optimization" MIN_SCORE=70 # All parameters make kb-search QUERY="redis cache" CATEGORY=CACHE MIN_SCORE=60 LIMIT=10 ``` ### Step 3: Display Results Show top results with relevance and quality scores: ``` Search Results for "database connection pool" Found 3 patterns: 1. DB-005: PostgreSQL Connection Pool Optimization Category: DB | Quality: 85/100 | Relevance: 9.2/10 Keywords: postgresql, connection-pool, optimization, performance Problems solved: - Connection pool exhaustion under load - Slow query performance due to connection limits 2. PERF-002: Connection Pool Tuning Guide Category: PERF | Quality: 78/100 | Relevance: 8.5/10 Keywords: connection-pool, tuning, performance, scalability Problems solved: - Optimizing pool size for workload - Monitoring pool utilization 3. DB-002: Database Connection Retry Logi