# Send Countries 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "countries",
    "name": "Countries",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jeffaf/countries",
    "canonicalUrl": "https://clawhub.ai/jeffaf/countries",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/countries",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=countries",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "countries",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T03:22:11.170Z",
      "expiresAt": "2026-05-09T03:22:11.170Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=countries",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=countries",
        "contentDisposition": "attachment; filename=\"countries-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "countries"
      },
      "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/countries"
    },
    "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/countries",
    "downloadUrl": "https://openagent3.xyz/downloads/countries",
    "agentUrl": "https://openagent3.xyz/skills/countries/agent",
    "manifestUrl": "https://openagent3.xyz/skills/countries/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/countries/agent.md"
  }
}
```
## Documentation

### Countries Lookup

CLI for AI agents to lookup country info for their humans. "What's the capital of Mongolia?" — now your agent can answer.

Uses REST Countries API (v3.1). No account or API key needed.

### Usage

"Tell me about Japan"
"What countries are in South America?"
"Which country has Tokyo as capital?"
"Info on country code DE"

### Commands

ActionCommandSearch by namecountries search "query"Get detailscountries info <code>List by regioncountries region <region>Search by capitalcountries capital "city"List allcountries all

### Examples

countries search "united states"   # Find country by name
countries info US                  # Get full details by alpha-2 code
countries info USA                 # Also works with alpha-3
countries region europe            # All European countries
countries capital tokyo            # Find country by capital
countries all                      # List all countries (sorted)

### Regions

Valid regions: africa, americas, asia, europe, oceania

### Output

Search/list output:

[US] United States — Washington D.C., Americas, Pop: 331M, 🇺🇸

Info output:

🌍 Japan
   Official: Japan
   Code: JP / JPN / 392
   Capital: Tokyo
   Region: Asia — Eastern Asia
   Population: 125.8M
   Area: 377930 km²
   Languages: Japanese
   Currencies: Japanese yen (JPY)
   Timezones: UTC+09:00
   Borders: None (island/isolated)
   Driving: left side
   Flag: 🇯🇵

🗺️ Map: https://goo.gl/maps/...

### Notes

Uses REST Countries API v3.1 (restcountries.com)
No authentication or rate limits
Country codes: alpha-2 (US), alpha-3 (USA), or numeric (840)
Population formatted with K/M/B suffixes
All regions lowercase

### Agent Implementation Notes

Script location: {skill_folder}/countries (wrapper to scripts/countries)

When user asks about countries:

Run ./countries search "name" to find country code
Run ./countries info <code> for full details
Run ./countries region <region> for regional lists
Run ./countries capital "city" to find by capital

Common patterns:

"What country is X in?" → search by name
"Tell me about X" → search, then info with code
"Countries in Europe" → region europe
"Capital of X" → info with code, check capital field
"What country has capital X?" → capital search

Don't use for: Historical countries, disputed territories, non-sovereign regions.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jeffaf
- 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-02T03:22:11.170Z
- Expires at: 2026-05-09T03:22:11.170Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/countries)
- [Send to Agent page](https://openagent3.xyz/skills/countries/agent)
- [JSON manifest](https://openagent3.xyz/skills/countries/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/countries/agent.md)
- [Download page](https://openagent3.xyz/downloads/countries)