# Send NanoGPT Web Search 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": "nano-web-search",
    "name": "NanoGPT Web Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TWolf01/nano-web-search",
    "canonicalUrl": "https://clawhub.ai/TWolf01/nano-web-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nano-web-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nano-web-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "build_payload.py",
      "format_output.py",
      "search.py",
      "search.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nano-web-search"
    },
    "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/nano-web-search",
    "downloadUrl": "https://openagent3.xyz/downloads/nano-web-search",
    "agentUrl": "https://openagent3.xyz/skills/nano-web-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nano-web-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nano-web-search/agent.md"
  }
}
```
## Documentation

### NanoGPT Web Search

AI-powered web search via NanoGPT API with multiple providers.

### Requirements

python3 - For payload building and output formatting
curl - For HTTP requests
requests Python package - For Python API usage

### Setup

Install the requests package:

pip install requests

Set your NanoGPT API key as an environment variable:

export NANOGPT_API_KEY="sk-nano-your-key-here"

Get your API key from nano-gpt.com.

### Usage

# Basic search
./search.sh "your query"

# With specific provider
./search.sh "AI trends 2025" --provider tavily

# Deep search
./search.sh "quantum computing" --depth deep

# Search with date filter
./search.sh "climate news" --from-date 2025-01-01 --to-date 2025-02-18

# Sourced answer (synthesized response with citations)
./search.sh "what is RAG" --output-type sourcedAnswer

# JSON output (for scripting)
./search.sh "python tutorials" --json

### Providers

linkup (default) - $0.006 standard, $0.06 deep
tavily - $0.008 standard, $0.016 deep
exa - $0.005 base + per-page
kagi - $0.002 web/news, $0.025 search
perplexity - $0.005 flat
valyu - ~$0.0015/result
brave - $0.005 flat

### Options

--provider - Search provider (default: linkup)
--depth - Search depth: standard or deep
--output-type - Output format: searchResults, sourcedAnswer, structured
--from-date - Start date filter (YYYY-MM-DD)
--to-date - End date filter (YYYY-MM-DD)
--include-domains - Comma-separated domains to include
--exclude-domains - Comma-separated domains to exclude
--max-results - Max results (provider-specific)
--json - Output raw JSON

### Python API

from search import NanoWebSearch

# Pass API key explicitly (recommended)
search = NanoWebSearch(api_key="sk-nano-your-key")

# Or use NANOGPT_API_KEY environment variable
search = NanoWebSearch()

results = search.search("AI trends", provider="tavily", depth="deep")
for r in results['data']:
    print(f"{r['title']}: {r['url']}")
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: TWolf01
- Version: 1.2.3
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nano-web-search)
- [Send to Agent page](https://openagent3.xyz/skills/nano-web-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/nano-web-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nano-web-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/nano-web-search)