用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill ddg-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | ddg-search |
| description | DuckDuckGo 搜索工具 - 无需 API key 的网页搜索替代方案 Use when this capability is needed. |
| metadata | {"author":"90le"} |
使用 DuckDuckGo 进行网页搜索,无需 API key,是 web_search 的理想替代方案。
ddg-search 让你可以:
cd ~/clawd
mkdir -p scripts
cp [path/to]/ddg-search.sh scripts/
chmod +x scripts/ddg-search.sh
./scripts/ddg-search.sh "搜索关键词"
# 搜索技术文档
./scripts/ddg-search.sh "OpenClaw AI assistant skills"
# 搜索新闻
./scripts/ddg-search.sh "latest AI news 2026"
# 搜索教程
./scripts/ddg-search.sh "how to install homebrew"
搜索结果包含:
示例输出:
搜索: OpenClaw AI assistant skills
1. OpenClaw - AI Assistant Framework
https://github.com/openclaw/openclaw
OpenClaw is an AI assistant framework...
2. OpenClaw Skills Hub
https://github.com/90le/openclaw-skills-hub
A GitHub repository for OpenClaw AI assistants...
3. 如何使用 OpenClaw 技能
https://docs.openclaw.ai/skills
详细指南...
./scripts/ddg-search.sh "查询关键词" > search-results.txt
./scripts/ddg-search.sh "关键词 site:github.com"
./scripts/ddg-search.sh "关键词 filetype:pdf"
./scripts/ddg-search.sh "keyword1 AND keyword2"
./scripts/ddg-search.sh "OpenClaw documentation"
./scripts/ddg-search.sh "GitHub API endpoints"
./scripts/ddg-search.sh "bash scripting tutorial"
./scripts/ddg-search.sh "macOS automation tools"
./scripts/ddg-search.sh "error: command not found jq"
搜索后获取详细内容:
# 1. 搜索
./scripts/ddg-search.sh "OpenClaw skills" | grep "github.com"
# 2. 提取 URL
URL="https://github.com/90le/openclaw-skills-hub"
# 3. 获取详细内容
curl -s "$URL" | grep -A 5 "description"
| 工具 | API Key | 速度 | 准确性 | 适用场景 |
|---|---|---|---|---|
| web_search | 需要 | 快 | 高 | 商业用途 |
| ddg-search | 不需要 | 中 | 中 | 日常搜索 |
| wiki-search | 不需要 | 快 | 高 | 百科知识 |
# 搜索特定网站
./scripts/ddg-search.sh "!g keyword" # Google
./scripts/ddg-search.sh "!github keyword" # GitHub
./scripts/ddg-search.sh "!docs keyword" # 文档搜索
# 搜索特定平台
./scripts/ddg-search.sh "!stackoverflow problem"
# 精确匹配
./scripts/ddg-search.sh "\"exact phrase\""
# 排除关键词
./scripts/ddg-search.sh "keyword -exclude"
# 通配符
./scripts/ddg-search.sh "key*word"
# 范围搜索
./scripts/ddg-search.sh "price $50..$100"
# 查找技能模板
./scripts/ddg-search.sh "OpenClaw skill template"
# 创建新技能
# 搜索 GitHub 仓库
./scripts/ddg-search.sh "site:github.com openclaw skills"
# 克隆感兴趣的仓库
# 搜索长文章
./scripts/ddg-search.sh "AI agents long article"
# 使用 summarize 总结
#!/bin/bash
# batch-search.sh
keywords=("OpenClaw" "AI assistant" "skills hub")
for keyword in "${keywords[@]}"; do
echo "搜索: $keyword"
./scripts/ddg-search.sh "$keyword" > "results/${keyword}.txt"
sleep 2 # 避免请求过快
done
# 添加到 cron
openclaw cron add \
--name "daily-news-search" \
--schedule "0 9 * * *" \
--command "./scripts/ddg-search.sh 'AI news' > memory/daily-news.txt"
#!/bin/bash
# search-and-notify.sh
keyword=$1
results=$(./scripts/ddg-search.sh "$keyword")
# 如果有结果,发送通知
if [ -n "$results" ]; then
echo "找到 $keyword 的搜索结果!"
echo "$results"
fi
#!/bin/bash
# search-history.sh
HISTORY_FILE="memory/search-history.txt"
echo "$(date '+%Y-%m-%d %H:%M') - $*" >> "$HISTORY_FILE"
./scripts/ddg-search.sh "$*"
#!/bin/bash
# analyze-search.sh
results=$(./scripts/ddg-search.sh "$1")
# 统计结果数量
count=$(echo "$results" | grep -c "^[0-9]\+\.")
# 提取所有链接
links=$(echo "$results" | grep -o "https://[^ ]*")
echo "搜索结果数: $count"
echo "链接数: $(echo "$links" | wc -l)"
欢迎改进!请在 GitHub 上提交 issue 或 PR。
https://github.com/90le/openclaw-skills-hub
Created by Xiaoqiu (小丘) - OpenClaw AI assistant
自由搜索,无需限制! 🦆
Converted and distributed by TomeVault — claim your Tome and manage your conversions.