
Byted Skill Demo
- 11 installs
- 411 repo stars
- Updated August 4, 2026
- bytedance/agentkit-samples
byted-skill-demo is a Claude skill that searches a Volcengine Viking knowledge base and returns matching knowledge content.
About
A skill that searches a Volcengine Viking knowledge base for relevant knowledge. A developer uses it when an agent needs to retrieve knowledge from a Viking knowledge base by generating a search query. It runs a Python script that returns the matching knowledge content.
- Searches a Viking knowledge base for relevant knowledge
- Wraps the Volcengine Viking knowledge-base service via a Python script
- Returns a list of knowledge content matching a generated search query
Byted Skill Demo by the numbers
- 11 all-time installs (skills.sh)
- Ranked #11,769 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
byted-skill-demo capabilities & compatibility
- Capabilities
- knowledge search
- Use cases
- research · web search
What byted-skill-demo says it does
本技能帮助您搜索知识库中的知识。
python scripts/search.py "搜索查询关键词"
npx skills add https://github.com/bytedance/agentkit-samples --skill byted-skill-demoAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 11 |
|---|---|
| repo stars | ★ 411 |
| Last updated | August 4, 2026 |
| Repository | bytedance/agentkit-samples ↗ |
What it does
Generate a search query and retrieve matching knowledge from a Volcengine Viking knowledge base.
Who is it for?
agents that need to search a Volcengine Viking knowledge base
When should I use this skill?
user mentions a knowledge base and wants to search it
What you get
A search query is run against the Viking knowledge base and matching knowledge content is returned.
- list of knowledge-base content relevant to the query
By the numbers
- 2 required environment variables
- 2 Python dependencies
Files
Viking 知识库
本技能帮助您搜索知识库中的知识。
功能
- 从知识库搜索知识
运行前,请确保以下几点:
1. 确保用户已设置如下环境变量
- 火山引擎知识服务 API Key,名称为
VIKING_KBSVR_API_KEY - 火山引擎知识服务 API Secret,名称为
VIKING_KBSVR_API_SECRET
2. 请确保已安装了 Python 库:pip install volcengine 以及 pip install aiohttp
搜索知识库
python scripts/search.py "搜索查询关键词"其中:
"搜索查询关键词":你需要根据用户需求生成搜索查询关键词,用于搜索知识库中的知识
该脚本将返回给您知识库中与查询关键词相关的知识内容列表
Related skills
FAQ
What service does it use?
The Volcengine Viking knowledge service, authenticated with VIKING_KBSVR_API_KEY and VIKING_KBSVR_API_SECRET.
What Python packages are required?
The volcengine and aiohttp libraries.