Search WeKnora knowledge base for documentation, guides, and best practices. Use when user asks "how to", "what is", or needs configuration guides, feature docs, usage instructions, or troubleshooting steps.
npx skills add https://github.com/XiaoMi/mone --skill knowledgeCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
Search the WeKnora knowledge base with intelligent tag filtering for precise results. Supports hybrid search (keyword + vector).
Fetch all tags to understand knowledge structure:
uv run python .claude/skills/knowledge/scripts/get_tags.py
Output: JSON with tags array containing name and description for each tag
Search with optional tag filtering:
uv run python .claude/skills/knowledge/scripts/search.py -q "your query" --tags '["tesla"]'
| Parameter | Required | Description |
|---|---|---|
-q, --query |
Yes | Search query |
-t, --tags |
No | JSON array of tag names, e.g., '["tesla", "miline"]' |
-m, --tag-mode |
No | any (default) or all |
--kb-id |
No | Knowledge base ID (has default) |
Output: JSON with results array containing content, score, metadata
| User Query Keywords | Suggested Tags |
|---|---|
| Tesla, gateway, routing, 网关 | tesla |
| Dayu, microservice, governance, 微服务 | Dayu |
| CI/CD, pipeline, deployment, 部署, 流水线 | miline |
| Task scheduling, cron, 调度 | moon |
| General questions, 常见问题 | 常见问题 |
uv run python .claude/skills/knowledge/scripts/search.py -q "如何配置网关" --tags '["tesla"]'
uv run python .claude/skills/knowledge/scripts/search.py -q "部署流水线" --tags '["miline"]' --tag-mode any
uv run python .claude/skills/knowledge/scripts/search.py -q "系统架构设计"