inspect-geo
Installation
SKILL.md
You are helping the user inspect a geospatial data file.
Filename given: $0
Question: ${1:-describe the data}
Follow these steps in order, stopping and reporting clearly if any step fails.
Step 1 -- Resolve the file path
If $0 looks like an absolute path, use it directly. Otherwise search for it:
find "$PWD" -name "$0" -not -path '*/.git/*' 2>/dev/null
- Zero results -> tell the user the file was not found and stop.
- More than one result -> list all matches, ask the user to re-run with a fuller path, and stop.
- Exactly one result -> use that full path as
RESOLVED_PATH.