# Send Ddg 1.0.0 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ddg-1-0-0",
    "name": "Ddg 1.0.0",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/shelehovnick1-spec/ddg-1-0-0",
    "canonicalUrl": "https://clawhub.ai/shelehovnick1-spec/ddg-1-0-0",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ddg-1-0-0",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ddg-1-0-0",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/usage-patterns.md",
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ddg-1-0-0",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T09:43:11.504Z",
      "expiresAt": "2026-05-09T09:43:11.504Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ddg-1-0-0",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ddg-1-0-0",
        "contentDisposition": "attachment; filename=\"ddg-1-0-0-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ddg-1-0-0"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ddg-1-0-0"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ddg-1-0-0",
    "downloadUrl": "https://openagent3.xyz/downloads/ddg-1-0-0",
    "agentUrl": "https://openagent3.xyz/skills/ddg-1-0-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ddg-1-0-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ddg-1-0-0/agent.md"
  }
}
```
## Documentation

### ddgr - DuckDuckGo from the Terminal

ddgr is a command-line utility to search DuckDuckGo from the terminal. It provides fast, privacy-focused web searches without opening a browser.

### Via Snap (recommended for Ubuntu):

sudo snap install ddgr

### Via PPA:

sudo add-apt-repository ppa:twodopeshaggy/jarun
sudo apt-get update
sudo apt-get install ddgr

### From source:

git clone https://github.com/jarun/ddgr.git
cd ddgr
sudo make install

Dependencies: Python 3.8 or later

### Simple search (non-interactive):

snap run ddgr "search query" --np

### Search with specific number of results:

snap run ddgr "search query" --num 5 --np

### Search with time limit:

snap run ddgr "query" --time w --np    # past week
snap run ddgr "query" --time m --np    # past month
snap run ddgr "query" --time y --np    # past year

### Site-specific search:

snap run ddgr "query" --site github.com --np

### JSON output:

snap run ddgr "query" --json --np

### Open first result in browser:

snap run ddgr "query" --ducky

### Interactive Mode

Run without --np to enter interactive mode:

snap run ddgr "search query"

Interactive commands:

1, 2, 3... → open result in browser
n → next page of results
p → previous page of results
q or Ctrl+D → quit
? → show help

### Advanced Options

OptionDescription-n N, --num NShow N results per page (0-25, default 10)-r REG, --reg REGRegion-specific search (e.g., 'us-en', 'uk-en')-t SPAN, --time SPANTime limit: d (day), w (week), m (month), y (year)-w SITE, --site SITESearch specific site-x, --expandShow complete URLs--jsonOutput in JSON format--duckyOpen first result in browser--np, --nopromptNon-interactive mode--unsafeDisable safe search

### DuckDuckGo Bangs

Use DuckDuckGo bangs to search specific sites:

snap run ddgr "!w Linux" --np        # Wikipedia search
snap run ddgr "!yt music" --np       # YouTube search
snap run ddgr "!gh python" --np      # GitHub search
snap run ddgr "!a books" --np        # Amazon search

### Make it Easier with an Alias

Add to ~/.bashrc or ~/.zshrc:

alias ddg='snap run ddgr'

Then use:

ddg "search query" --np

### Privacy Features

No user tracking or profiling
Do Not Track enabled by default
Works over Tor network (with proxy)
HTTPS proxy support
No stored search history

### Search for tech news:

snap run ddgr "latest AI news 2025" --num 5 --np

### Find Ubuntu tutorials:

snap run ddgr "Ubuntu tutorial" --site askubuntu.com --np

### Search recent Python documentation:

snap run ddgr "Python 3.12 features" --time m --np

### Use bang to search Wikipedia:

snap run ddgr "!w OpenClaw" --np

### Troubleshooting

Command not found:

Ensure ddgr is installed via snap: sudo snap install ddgr
Use full command: snap run ddgr instead of just ddgr

No results:

Check internet connection
Try without --np to see if interactive mode works
Verify DuckDuckGo is accessible in your region

Slow response:

DuckDuckGo HTML interface can be slower than main site
Use --time to limit results by time for faster queries

### More Information

GitHub: https://github.com/jarun/ddgr
DuckDuckGo: https://duckduckgo.com
Bangs: https://duckduckgo.com/bang
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: shelehovnick1-spec
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T09:43:11.504Z
- Expires at: 2026-05-09T09:43:11.504Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ddg-1-0-0)
- [Send to Agent page](https://openagent3.xyz/skills/ddg-1-0-0/agent)
- [JSON manifest](https://openagent3.xyz/skills/ddg-1-0-0/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ddg-1-0-0/agent.md)
- [Download page](https://openagent3.xyz/downloads/ddg-1-0-0)