ワンクリックで
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
搜索和浏览 AI Agent 研究论文库 (基于 Awesome-AI-Agents-Live 数据集,8800+ 篇论文)。Use when: (1) user asks about AI agent research papers, (2) user wants to find papers on specific agent topics (memory, planning, tools, collaboration, etc.), (3) user asks about trends or state-of-the-art in AI agents, (4) user needs paper recommendations by category/difficulty/score. NOT for: general academic search outside AI agents (use arxiv-search), non-research questions.
Search academic papers from arXiv, OpenAlex, and Semantic Scholar. Use when user asks to find research papers, search academic literature, get paper information, or verify citations.
Use when user needs to: (1) control Chrome browser, web automation, web scraping; (2) 控制浏览器、网页自动化、网页抓取; (3) screenshot, form filling, page navigation, execute JS in browser; (4) 截图、填表、页面导航、执行JS; (5) interact with existing Chrome session. Triggers: browser, chrome, CDP, puppeteer, selenium, playwright, 浏览器, 网页自动化, 截图, 爬虫, 网页操作.
综合设计技能:HTML 设计稿、演示文稿、交互原型、动画、线框图、Mondo 风格海报/书籍封面/专辑封面。 触发词:设计、design、mockup、prototype、landing page、deck、PPT、海报、poster、 书籍封面、book cover、专辑封面、album art、wireframe、故事板、storyboard、 可视化、visualize、Mondo、公众号封面、小红书配图、文章配图。 支持事实核验、品牌资产协议、10 种设计哲学方向、20+ 传奇艺术家风格、 多平台比例(21:9/16:9/3:4/1:1/9:16)、反 AI 烂设计规则、React+Babel 技术规范。
Create, customize, and export publication-ready charts (line, bar, scatter, pie, histogram) from CSV/Excel data with full Chinese font support, responsive layout, and Windows-compatible rendering. Use when user asks to: (1) 画图表、绘图、数据可视化; (2) 折线图、柱状图、散点图、饼图、直方图; (3) CSV/Excel 数据绘制; (4) mention chart type ('line chart', 'bar plot'); (5) 中文标签、标题、字体.
将多个源的结构化提取结果,进行聚类合并压缩。 输出 cluster summaries + contradictions + consensus。
| name | baidu-search |
| description | Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics. |
| metadata | {"openclaw":{"emoji":"🔍︎","requires":{"bins":["python"],"env":["BAIDU_API_KEY"]},"primaryEnv":"BAIDU_API_KEY"}} |
Search the web via Baidu AI Search API.
This skill requires a BAIDU_API_KEY to be configured in OpenClaw.
If you don't have an API key yet, please visit: https://console.bce.baidu.com/ai-search/qianfan/ais/console/apiKey
For detailed setup instructions, see: references/apikey-fetch.md
python skills/baidu-search/scripts/search.py '<JSON>'
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
| query | str | yes | - | Search query |
| count | int | no | 10 | Number of results to return, range 1-50 |
| freshness | str | no | Null | Time range, two formats: format one is ”YYYY-MM-DDtoYYYY-MM-DD“, and format two includes pd, pw, pm, and py, representing the past 24 hours, past 7 days, past 31 days, and past 365 days respectively |
# Basic search
python scripts/search.py '{"query":"人工智能"}'
# Freshness first format "YYYY-MM-DDtoYYYY-MM-DD" example
python scripts/search.py '{
"query":"最新新闻",
"freshness":"2025-09-01to2025-09-08"
}'
# Freshness second format pd、pw、pm、py example
python scripts/search.py '{
"query":"最新新闻",
"freshness":"pd"
}'
# set count, the number of results to return
python scripts/search.py '{
"query":"旅游景点",
"count": 20,
}'
Fully functional.