소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 4월 28일 22:53
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.