Today's Agent Skill: Knowledge Base Searcher

What It Does

Company knowledge lives in dozens of scattered documents that nobody can find when they need them. This skill searches across your internal docs, SOPs, and wikis to answer questions in plain language — with source citations.

How It Works

The Knowledge Base Searcher indexes your document collection (Google Drive, SharePoint, Notion, or local files) and answers natural-language questions by finding the most relevant passages. Every answer includes the source document and page/section, so you can verify and go deeper. It turns your existing documentation into a searchable brain.

How to Deploy It

Deploy by pointing the skill at your document root directory or connecting to your cloud storage API. For semi-autonomous use, wire it into your team chat so anyone can ask a question in a channel and get an answer sourced from company docs within seconds.

SKILL.md — Ready to Deploy

# Knowledge Base Searcher

## Description
Search internal documents, SOPs, and wikis to answer natural-language questions with source citations.

## Trigger
"search our docs for", "what does our policy say about", "find the SOP for", "how do we handle"

## Input
- Natural language question
- Document source: directory path, Drive folder ID, or Notion workspace
- Optional: scope filter (e.g., "HR policies only", "engineering docs")

## Steps
1. Parse the question to identify key concepts and intent
2. Search indexed documents for relevant passages (semantic + keyword)
3. Rank results by relevance and recency
4. Extract the most relevant passage(s) that answer the question
5. Compose a direct answer with inline source citations
6. List related documents the user might also want

## Output Format
```markdown
# Answer

[Direct answer to the question in 2-4 sentences]

**Sources:**
- [Document Title] — Section: [section name] — Last updated: [date]
- [Document Title] — Page [N]

## Related Documents
- [Doc title] — may also be relevant for [reason]
```

## Notes
- Always cite sources — never present information without attribution
- If no relevant documents found, say so clearly rather 

Copy the full SKILL.md file and drop it into your agent's skills directory to activate this skill.

← Back to Agent Skills | Home — TN AI Tools