一键导入
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 职业分类
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
The Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.
Baidu Scholar Search - Search Chinese and English academic literature (journals, conferences, papers, etc.)
模拟顶级对冲基金投研决策流程,为股票制定机构级交易策略备忘录。 使用此技能当用户需要: - 进行股票深度分析 - 制定交易策略 - 撰写投研报告或投资备忘录 - 进行多空辩论分析 - 评估投资风险回报比 触发词:股票分析、投研报告、投资备忘录、hedge fund、股票研究、交易策略、基本面分析、技术分析、估值分析
Beeclaw's dynamic preference learning system. This skill automatically detects and learns user preferences from conversation patterns. TRIGGER when user expresses format preferences ("don't use emoji", "be concise"), identifies their role ("I'm a frontend engineer"), gives feedback on output style, or establishes habits/rituals. Preferences are stored in facts/preferences.md and applied to all future interactions.
Beeclaw's core reflection skill for learning from failures. TRIGGER THIS SKILL whenever a skill execution fails, the user corrects your behavior, you notice repetitive patterns (3+ similar tasks), or the user expresses frustration. This skill enables continuous improvement through structured failure analysis.
| name | baidu-search |
| description | Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics. |
| version | 1.0.0 |
| tags | ["search","web","baidu","api"] |
| metadata | {"openclaw":{"emoji":"🔍︎","requires":{"bins":["python3"],"env":["BAIDU_API_KEY"]},"primaryEnv":"BAIDU_API_KEY"}} |
Search the web via Baidu AI Search API.
python3 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
python3 scripts/search.py '{"query":"人工智能"}'
# Freshness first format "YYYY-MM-DDtoYYYY-MM-DD" example
python3 scripts/search.py '{
"query":"最新新闻",
"freshness":"2026-03-01to2026-03-08"
}'
# Freshness second format pd、pw、pm、py example
python3 scripts/search.py '{
"query":"最新新闻",
"freshness":"pd"
}'
# set count, the number of results to return
python3 scripts/search.py '{
"query":"旅游景点",
"count": 20
}'
Fully functional.