# Knowledge Searching

> Retrieves implementation knowledge, code examples, and documentation references. Use to inform technical decision-making when the user requires specific library usage, framework patterns, or syntax details. Trigger on requests to 'search docs', 'find code examples', or 'check implementation details'. Use when this capability is needed.

- Skill: `tomevault-io/knowledge-searching` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/knowledge-searching`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/knowledge-searching/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/knowledge-searching

---


# Knowledge Searching

## Overview

Retrieves implementation knowledge to inform decision-making across the software development lifecycle. 

**Use this skill when you need:**
- Implementation details for specific libraries/frameworks
- Code examples for patterns or features
- Documentation references libraries/frameworks usage

**Announce at start:** "I'm using the knowledge-research skill to gather implementation details."

## Core Functions

### Searching Specific Documentation:
1. **Get sources** → `rag_get_available_sources()` - Returns list with id, title, url
2. **Find source ID** → Match to documentation (e.g., "Supabase docs" → "src_abc123")
3. **Search** → `rag_search_knowledge_base(query="vector functions", source_id="src_abc123")`

### General Research:
```bash
# Search knowledge base (2-5 keywords only!)
rag_search_knowledge_base(query="authentication JWT", match_count=5)

# Find code examples
rag_search_code_examples(query="React hooks", match_count=3)
```

## Query Guidelines

### ✅ Good Queries (2-5 keywords)
- `"authentication JWT"`
- `"vector functions"`
- `"React hooks"`
- `"Go context timeout"`
- `"SQL row level security"`

### ❌ Bad Queries (too long/verbose)
- ~~`"How do I implement JWT authentication in Go?"`~~
- ~~`"What are the best practices for vector similarity search?"`~~
- ~~`"Show me examples of React hooks for state management"`~~

**Rule:** Keep queries SHORT and keyword-focused for optimal search results.

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/irahardianto) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

