Ddg Free
v1.0.0完全免费的网页搜索,使用 Bing 搜索结果。无需 API key,完全免费使用。当用户需要搜索网页、查找信息时使用此命令。
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
The skill claims to be a free web search and the included script performs an HTTP GET against cn.bing.com and returns parsed results — that is consistent with the described purpose. However, the skill name/slug ('Ddg Free' / ddg-free) suggests DuckDuckGo (DDG) while the README and code explicitly use Bing. This naming mismatch is confusing and should be clarified.
Instruction Scope
SKILL.md only instructs running the shipped Python script and describes JSON output. The instructions and script only perform an outbound request to Bing and parse HTML; they do not read local files, access environment variables, or transmit data to any unexpected endpoints. One minor issue: the examples use an absolute user-local path (/Users/liruozhen/...), which is just an example but could be misleading.
Install Mechanism
There is no install spec (instruction-only skill with an included script). This keeps risk low because nothing is automatically downloaded or executed beyond the script. The script depends on third-party Python packages (requests, bs4) but the package requirements are not declared — you must ensure these dependencies are present in the runtime environment.
Credentials
The skill does not request any environment variables, credentials, or config paths. That is proportionate for a web-scraping search helper. Be aware that queries are sent to Bing (an external service) so search terms could be logged by Microsoft/Bing.
Persistence & Privilege
The skill does not request 'always: true' and is user-invocable only. It does not attempt to modify other skills or system configuration. Its privilege/presence model is appropriate for its purpose.
What to consider before installing
What to check before installing/using: 1) Clarify the naming mismatch — the skill is labeled 'DDG' but scrapes Bing; if you expect DuckDuckGo behavior this is not the right tool. 2) Inspect and run the included script locally — it only performs HTTPS GETs to cn.bing.com and parses results, which is expected but means your queries are sent to Bing and may be logged. 3) Ensure the Python environment has requests and beautifulsoup4 installed; the skill does not declare these dependencies. 4) The example uses an absolute path to a specific user directory — update the command to the skill's installed path on your system. 5) If you require stronger privacy or an API-backed search, consider alternatives that use an official API or a privacy-focused provider. Overall the behavior is coherent and not overtly malicious, but the naming inconsistency and undeclared dependencies warrant a brief manual review before use.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
🔍 Clawdis
Binspython3
latest
Free Search
完全免费的网页搜索,使用 Bing 搜索结果。
何时使用
✅ 使用此命令当:
- 用户需要搜索网页
- 查找最新信息
- 查找资料或文档
- 需要网络搜索结果
使用方法
python3 /Users/liruozhen/openclaw/skills/ddg-free/scripts/search.py --query "搜索关键词" --max-results 5
输出格式
返回 JSON 格式,包含:
query: 搜索词results: 结果数组,每个包含:title: 标题url: 链接snippet: 摘要
示例
python3 /Users/liruozhen/openclaw/skills/ddg-free/scripts/search.py --query "人工智能最新发展" --max-results 3
特点
- ✅ 完全免费,无需注册
- ✅ 无需 API key
- ✅ 无使用限制
- ✅ 支持中英文搜索
- ✅ 使用 Bing 搜索结果
Comments
Loading comments...
