Install
$ agentstack add skill-opengeos-geoai-skills-overture-data ✓ 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 No
- ● Filesystem access Used
- ✓ 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.
About
You are helping the user download Overture Maps data using geoai.
Input: $@
Follow these steps in order.
Step 1 -- Parse arguments
Extract:
$0or the first positional argument as the Overture data type--bbox minx,miny,maxx,maxyas the bounding box (required)--output FILEas the output file path (optional, default:./_overture.gpkg)
Valid Overture data types: address, building, building_part, division, division_area, division_boundary, place, segment, connector, infrastructure, land, land_cover, land_use, water
If the data type is not recognized, print the list of valid types and ask the user to pick one.
If the user provided natural language (e.g. "get buildings in downtown Nashville"), extract the data type and either infer or ask for the bounding box.
Step 2 -- Validate the bounding box
Confirm the bounding box has 4 numeric values:
- `minx /dev/null || echo "$PWD")"
PROJECTID="$(echo "$PROJECTROOT" | tr '/' '-')" test -f "$HOME/.geoai-skills/$PROJECTID/state.json" && STATEDIR="$HOME/.geoai-skills/$PROJECT_ID"
If `STATE_DIR` is set:
```bash
python3 -c "
import json, os
state_file = 'STATE_DIR/state.json'
state = {}
if os.path.exists(state_file):
with open(state_file) as f:
state = json.load(f)
state.setdefault('downloaded_files', [])
state['downloaded_files'].append('OUTPUT_PATH')
with open(state_file, 'w') as f:
json.dump(state, f, indent=2)
"
Step 5 -- Report results
Summarize:
- Data type downloaded
- Number of features
- Output file path and size
- Column summary
- CRS and spatial extent
Then suggest: "Use /geoai-skills:inspect-geo to examine the downloaded data in detail."
Error handling
import geoaifails -> delegate to/geoai-skills:install-geoai.overturemapsnot installed -> suggestpip install "geoai-py[extra]"which includes the overturemaps dependency.- No features found -> suggest expanding the bounding box or trying a different data type.
- Network error -> report and suggest retrying.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: opengeos
- Source: opengeos/geoai-skills
- 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.