> baidu-search
百度 AI 搜索。支持网页搜索、百度百科、秒懂百科、AI 智能生成四种模式。自动包含当前日期上下文。当用户要求搜索信息、查询百科、获取最新资讯、搜索新闻、查找资料时使用。
curl "https://skillshub.wtf/countbot-ai/CountBot/baidu-search?format=md"百度 AI 搜索
基于百度千帆平台的 AI 搜索服务,支持多种搜索模式。
配置
编辑 skills/baidu-search/scripts/config.json,填写 API Key:
{
"api_key": "bce-v3/YOUR_API_KEY_HERE"
}
API Key 从 百度千帆平台 获取。
命令行调用
# 网页搜索(默认)
python3 skills/baidu-search/scripts/search.py "搜索关键词"
# JSON 输出(推荐 AI 使用)
python3 skills/baidu-search/scripts/search.py "人工智能最新进展" --json
# 限制结果数
python3 skills/baidu-search/scripts/search.py "Python教程" --limit 5
# 站点过滤
python3 skills/baidu-search/scripts/search.py "天气预报" --sites weather.com.cn
# 时间过滤(week/month/semiyear/year)
python3 skills/baidu-search/scripts/search.py "AI新闻" --recency week
# 百度百科
python3 skills/baidu-search/scripts/search.py "人工智能" --api-type baike
# 秒懂百科(视频)
python3 skills/baidu-search/scripts/search.py "深度学习" --api-type miaodong_baike
# AI 智能生成
python3 skills/baidu-search/scripts/search.py "什么是人工智能" --api-type ai_chat
API 类型
| 类型 | 说明 |
|---|---|
web_search | 网页搜索(默认) |
baike | 百度百科 |
miaodong_baike | 秒懂百科(视频) |
ai_chat | AI 智能搜索生成 |
注意事项
- 免费额度:100 次/天
- 网页搜索查询最长 72 字符
- 自动包含当前日期上下文,方便处理时效性查询
> related_skills --same-repo
> agent-team-manager
多智能体团队管理。创建、查看、修改、删除 CountBot 的多智能体团队,管理团队成员(角色)和团队级自定义模型配置。当用户要新建 Pipeline/Graph/Council 团队、调整成员分工、修改依赖关系、开关技能系统、设置团队专属模型时使用。
> weather
天气查询与预报。支持全球城市天气查询、多日预报、详细气象数据。无需 API Key。当用户询问天气、气温、是否下雨、穿衣建议、出行天气等场景时使用。JSON 输出已优化,只返回关键信息。
> skill-creator
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
> agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.