一键导入
knowledgebase-search
Shared workflow for knowledgebase retrieval using docs_tools and injected OpenClaw context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Shared workflow for knowledgebase retrieval using docs_tools and injected OpenClaw context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | knowledgebase-search |
| description | Shared workflow for knowledgebase retrieval using docs_tools and injected OpenClaw context. |
agents/shared/knowledgebase.search_docs (BM25 + fallback keyword scoring).get_doc_content.uv run python - <<'PY'
from agent_service.shared.docs_tools import rebuild_index, search_docs
print(rebuild_index())
print(search_docs("<query>", max_results=5))
PY
uv run python - <<'PY'
from agent_service.shared.docs_tools import get_doc_content
print(get_doc_content("agents/shared/knowledgebase/<domain>/<file>.md"))
PY
docs_tools directly as an MCP function.openclaw-svc injects this skill plus retrieved KB context into the task before execution.search_docs) as the canonical knowledge lookup path.Create and configure role-scoped GitHub Apps for VibeTeam, map credentials to agents placeholders, and validate installation permissions/identity.
Run VibeTeam GitHub/Slack handoff validation with unit tests, Slack evals, GitHub webhook evals, and permission checks. Use when validating multi-agent GitHub communication (issues, discussions, PR comments) or when asked to prove changes via tests/evals and record status.
Create and configure VibeTeam Slack apps (one ingress app plus role-scoped responder apps), wire role tokens/secrets, and validate routing/identity behavior.
Final completion gate for VibeTeam tasks. Use at the end of implementation to verify diff quality, real testing, GitHub/Slack multi-agent communication evidence, and PR health before declaring done.
Search shared knowledgebase content using docs_tools (BM25 + fallback keyword scoring) before answering from memory.
Ingest user-provided files into the shared agents knowledgebase and verify retrieval.