AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

World Bank Open Data

skill-serejaris-kimi-skills-world-bank-open-data · by serejaris

World Bank Open Data is a free global development data platform with access to countries worldwide and 29,000+ indicators covering economic, social, and environmental metrics including GDP, GNP, population, poverty, unemployment, trade, inflation, education, health, and environmental time series from 1960 to present.

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-serejaris-kimi-skills-world-bank-open-data

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-serejaris-kimi-skills-world-bank-open-data)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of World Bank Open Data? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

World Bank Open Data

Use this skill to answer questions that require World Bank Open Data country indicators, development metrics, or national-level time series.

Setup

Check whether the agent-gw Python SDK is available in the current Python environment, and install it only if the check fails:

python3 -c "import agent_gw" || python3 -m pip install "$(curl -s https://cdn.kimi.com/agentgw/pysdk/manifest.json | python3 -c "import json,sys; print(json.load(sys.stdin)['latest']['url'])")"

The SDK needs an API key from api_key=..., KIMI_API_KEY, or ~/.kimi/agent-gw.json.

Workflow

  1. Run python3 scripts/world_bank_open_data_tool.py describe from the plugin

directory to call get_data_source_desc({"name": "world_bank_open_data"}).

  1. Read the returned Markdown carefully. It contains the overall data source

rules, country formats, indicator formats, date range constraints, and each API's description, required parameters, optional parameters, defaults, and allowed values.

  1. Select the API that best matches the user's question.
  2. Build params exactly from the Markdown requirements. Pay attention to

country or region, indicator code or name, year range, unit, source, frequency, and national-level data constraints.

  1. Use python3 scripts/world_bank_open_data_tool.py call to call

call_data_source_tool.

  1. If the call fails, explain the failure reason from the response.
  2. If the call succeeds, save any returned files first, then answer using

resp.result.assistant; ignore resp.result.user unless display content is specifically needed.

Common Use Cases

  • Country-level time series for GDP, GNP, population, poverty rates,

unemployment, trade, inflation, education, health, and environmental data.

  • Cross-country comparison of development indicators.
  • Long-run trend analysis using annual data from 1960 to present where available.
  • Economic, social, and environmental research that needs World Bank indicator

definitions and national-level observations.

Script

Use the bundled script from the plugin directory:

python3 scripts/world_bank_open_data_tool.py describe

After reading the Markdown and selecting an API:

python3 scripts/world_bank_open_data_tool.py call \
  --api-name "" \
  --params-json '{"required_param":"value"}'

For larger params, write a JSON object and pass --params-file path/to/params.json.

The script:

  • sends {"name": "world_bank_open_data"} to get_data_source_desc
  • sends {"data_source_name": "world_bank_open_data", "api_name": ..., "params": ...} to

call_data_source_tool

  • prints failure messages from error.user or error.assistant
  • saves returned files to each files[].name path returned by the data source
  • prints the joined result.assistant texts on success

Expected call_data_source_tool response shape:

{
    "is_success": bool,
    "result": {"user": list[str], "assistant": list[str]} | None,
    "error": {"user": list[str], "assistant": list[str]} | None,
    "files": [{"name": str, "content": str}],
}

When files are returned, name is the file path or name to write. The path is usually dictated by the selected API's params in the Markdown docs. If an API does not need files, the response normally has no files to save.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.