apple-notes
Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).
Find nearby places (restaurants, cafes, bars, pharmacies, etc.) using OpenStreetMap. Works with coordinates, addresses, cities, zip codes, or Telegram location pins. No API keys needed.
$ npx -y skills add braxtonROSE4/zorro-agent --skill find-nearby --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/find-nearbyContext preview
The summary Claude sees to decide when to auto-load this skill.
Find nearby places (restaurants, cafes, bars, pharmacies, etc.) using OpenStreetMap. Works with coordinates, addresses, cities, zip codes, or Telegram location pins. No API keys needed.
name: find-nearby
description: Find nearby places (restaurants, cafes, bars, pharmacies, etc.) using OpenStreetMap. Works with coordinates, addresses, cities, zip codes, or Telegram location pins. No API keys needed.
version: 1.0.0
metadata:
zorro:
tags: [location, maps, nearby, places, restaurants, local]
related_skills: []Find restaurants, cafes, bars, pharmacies, and other places near any location. Uses OpenStreetMap (free, no API keys). Works with:
# By coordinates (from Telegram location pin or user-provided) python3 SKILL_DIR/scripts/find_nearby.py --lat <LAT> --lon <LON> --type restaurant --radius 1500 # By address, city, or landmark (auto-geocoded) python3 SKILL_DIR/scripts/find_nearby.py --near "Times Square, New York" --type cafe # Multiple place types python3 SKILL_DIR/scripts/find_nearby.py --near "downtown austin" --type restaurant --type bar --limit 10 # JSON output python3 SKILL_DIR/scripts/find_nearby.py --near "90210" --type pharmacy --json
| Flag | Description | Default | |------|-------------|---------| | `--lat`, `--lon` | Exact coordinates | — | | `--near` | Address, city, zip, or landmark (geocoded) | — | | `--type` | Place type (repeatable for multiple) | restaurant | | `--radius` | Search radius in meters | 1500 | | `--limit` | Max results | 15 | | `--json` | Machine-readable JSON output | off |
`restaurant`, `cafe`, `bar`, `pub`, `fast_food`, `pharmacy`, `hospital`, `bank`, `atm`, `fuel`, `parking`, `supermarket`, `convenience`, `hotel`
1. **Get the location.** Look for coordinates (`latitude: ... / longitude: ...`) from a Telegram pin, or ask the user for an address/city/zip.
2. **Ask for preferences** (only if not already stated): place type, how far they're willing to go, any specifics (cuisine, "open now", etc.).
3. **Run the script** with appropriate flags. Use `--json` if you need to process results programmatically.
4. **Present results** with names, distances, and Google Maps links. If the user asked about hours or "open now," check the `hours` field in results — if missing or unclear, verify with `web_search`.
5. **For directions**, use the `directions_url` from results, or construct: `https://www.google.com/maps/dir/?api=1&origin=<LAT>,<LON>&destination=<LAT>,<LON>`
A self-evolving CLI agent. Most agents treat memory as an afterthought — a flat text file that grows until it's useless.
Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).
Manage Apple Reminders via remindctl CLI (list, add, complete, delete).
Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture.
Delegate coding tasks to Claude Code (Anthropic's CLI agent). Use for building features, refactoring, PR reviews, and iterative coding. Requires the claude CLI…
Delegate coding tasks to OpenAI Codex CLI agent. Use for building features, refactoring, PR reviews, and batch issue fixing. Requires the codex CLI and a git…