检索知识库并返回相关知识条目。支持语义搜索,按相关性排序,可指定 token 预算控制返回量。
Install with the open skills CLI (global, non-interactive — available in every Claude Code session):
npx skills add LeoYeAI/openclaw-master-skills --skill "knowledge-query" -g -a claude-code -yOr manually — clone and copy the skill directory (SKILL.md + companion files):
git clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skills /tmp/openclaw-master-skills && cp -r /tmp/openclaw-master-skills/skills/kivo/skill/query ~/.claude/skills/knowledge-queryPart of the kivo skill collection — installing the parent includes this skill.
This skill is a directory: SKILL.md is the entry point; the files below ship with it.
---
name: knowledge-query
description: "检索知识库并返回相关知识条目。支持语义搜索,按相关性排序,可指定 token 预算控制返回量。"
---
# KnowledgeQuerySkill — 知识查询
基于语义搜索检索知识库,返回与查询最相关的知识条目。
## 触发词
查知识、搜索记忆、搜索知识库、你知道关于、查一下之前的决策、有没有相关经验、你还记得、recall、query knowledge、search knowledge、what do you know about
## 使用方式
```bash
# 查询相关知识(默认 budget 2000 tokens)
tsx scripts/query.ts --query "用户的交付偏好"
# 指定 token 预算
tsx scripts/query.ts --query "架构决策" --budget 4000
```
## 核心路径
`src/search/semantic-search.ts` → `src/repository/knowledge-repository.ts`
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Use when executing implementation plans with independent tasks in the current session