Agent Skills
› 0xranx/golembot
› kb-guide
kb-guide
GitHub指导Agent通过MCP工具对知识库进行文档的搜索、读取、创建和更新,强调回答问题前优先查阅知识库。
Trigger Scenarios
查询现有文档或FAQ
创建或更新知识库条目
Install
npx skills add 0xranx/golembot --skill kb-guide -g -y
SKILL.md
Frontmatter
{
"name": "kb-guide",
"description": "Search, read, create, and update knowledge base entries via MCP-connected KB tools. Use when the user asks to look up documentation, find existing articles, check if docs exist on a topic, create a new KB entry, update an existing document, or when domain questions should be answered from the knowledge base first."
}
Knowledge Base Integration Guide
When MCP knowledge base servers are configured, you can use their tools to search, read, create, and update knowledge entries.
Common MCP Knowledge Base Tools
MCP KB servers typically expose tools with these patterns:
Search / Query
search_documents(query, limit?)-- full-text search across the knowledge basesearch_notes(query)-- search personal notes or wiki entriesquery_knowledge(query, filters?)-- filtered search with metadata constraints
Read
get_document(id)-- retrieve a document by IDread_page(path)-- read a wiki page by pathlist_documents(folder?, tag?)-- list documents in a folder or by tag
Create / Update
create_document(title, content, metadata?)-- create a new entryupdate_document(id, content)-- update an existing documentcreate_note(title, body)-- create a quick note
Example Tool Call
When a user asks "do we have docs on deployment?", search the KB first:
Tool: search_documents
Arguments: { "query": "deployment", "limit": 5 }
Present matching results with titles and snippets. If no results are found, offer to create a new entry.
When to Use Knowledge Base
- Before answering domain questions: Search the KB first -- it may contain authoritative answers
- When the user asks "do we have docs on...": Search the KB and return results
- After resolving an issue: Suggest creating a KB entry to capture the solution
- For onboarding/FAQ questions: Check if there's an existing KB article
Usage Pattern
- Identify the user's intent (search, read, write)
- Call the appropriate MCP tool by name
- If a tool is not available, inform the user that no KB server is configured
- Present results clearly -- include titles, snippets, and links when available
Notes
- MCP server configuration is defined in
golem.yamlunder themcpkey - Available MCP tools depend on which servers are configured -- use tool discovery to check
- Always prefer searching the KB before generating answers from your own training data
Version History
- 04635ad Current 2026-07-25 08:59


