Install
$ agentstack add skill-djarvur-ddg-search-ddg-search ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
DDG Search Skill
Web search and page content fetching for Claude Code without API keys.
Installation
This skill requires two binaries to be installed in your PATH.
Install via go install
go install github.com/Djarvur/ddg-search/cmd/ddg-search@latest
go install github.com/Djarvur/ddg-search/cmd/page-dump@latest
Verify installation
which ddg-search
which page-dump
# Test the binaries
ddg-search --help
page-dump --help
Tools
web-search
Search the web using DuckDuckGo.
Parameters:
query(required): The search query string
Usage:
ddg-search "golang http client best practices"
Output: Formatted search results with title, URL, and snippet for each result.
Options:
--max-results int: Maximum number of results (default: 10)--site string: Filter results to a specific domain--region string: Search region (default: "us-en")--time string: Time filter: d (day), w (week), m (month), y (year)
page-dump
Fetch a web page and convert it to markdown.
Parameters:
url(required): The URL to fetch (HTTP or HTTPS only)
Usage:
page-dump "https://example.com/article"
Output: Markdown-formatted content of the web page.
Options:
--timeout duration: Request timeout (default: 30s)--user-agent string: Custom user agent string (default: page-dump/1.0)
Usage Examples
Search for information
ddg-search "rust async programming guide"
Fetch and read a web page
page-dump "https://doc.rust-lang.org/book/ch10-00-generics.html"
Search and then fetch a result
# First search
ddg-search "go context timeout"
# Then fetch an interesting result
page-dump "https://pkg.go.dev/context"
Troubleshooting
"command not found: ddg-search" or "command not found: page-dump"
The binaries are not in your PATH. Ensure $(go env GOPATH)/bin is in your PATH:
export PATH="$PATH:$(go env GOPATH)/bin"
Rate limiting errors
DuckDuckGo may rate-limit requests if you make too many searches in a short time. Wait a few minutes before retrying.
Timeout errors
If pages are slow to load, increase the timeout:
page-dump --timeout 60s "https://slow-example.com"
Invalid URL errors
Ensure the URL:
- Starts with
http://orhttps:// - Is properly encoded
- Points to a valid web page (not a file download)
SSL/TLS errors
For sites with certificate issues, this is expected behavior. The tool requires valid TLS certificates for HTTPS connections.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Djarvur
- Source: Djarvur/ddg-search
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.