بنقرة واحدة
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 المهني
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.
| 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.