---
name: C Location
slug: c-location
category: Automation
description: C Location searches Apple Maps with the goplaces CLI to find places, browse nearby businesses, and get directions. Use it when you need location queries, category-based nearby searches, or turn-by-turn routes by driving, walking, or transit.
github: "https://github.com/daxaur/openpaw/tree/main/skills/c-location"
language: TypeScript
stars: 167
forks: 11
install: "npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-location ~/.claude/skills/c-location"
installs_to: ~/.claude/skills/c-location
source_path: skills/c-location/SKILL.md
collection_size: 25
category_size: 2226
collection_url: "https://dirskills.com/collections/daxaur/openpaw"
added: 2026-09-08T05:34:32.056Z
last_synced: 2026-09-08T05:34:32.056Z
canonical_url: "https://dirskills.com/skills/c-location"
---

# C Location

C Location searches Apple Maps with the goplaces CLI to find places, browse nearby businesses, and get directions. Use it when you need location queries, category-based nearby searches, or turn-by-turn routes by driving, walking, or transit.

**Install:**

```bash
npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-location ~/.claude/skills/c-location
```

## README

## What This Skill Does

Queries Apple Maps via the `goplaces` CLI to search for places, find businesses nearby, and get directions between locations.

## CLI Tool: `goplaces`

### Common Commands

```bash
# Search for a place by name or keyword
goplaces search "coffee shops near downtown Austin"

# Find nearby places by category
goplaces nearby "pizza"
goplaces nearby "gas station"

# Get directions between two locations
goplaces directions "Austin TX" "San Antonio TX"
goplaces directions --mode walking "Zilker Park" "South Congress Ave"

# Get details about a specific place
goplaces details "Barton Springs Pool, Austin"
```

### Transport Modes

- `--mode driving` (default)
- `--mode walking`
- `--mode transit`

## Usage Guidelines

1. Use natural language for location queries — `goplaces` handles geocoding automatically.
2. For "nearby" searches, the current device location is used unless a starting point is specified.
3. When providing directions, confirm origin and destination with the user if ambiguous.
4. Present results as a numbered list when multiple places are returned.

## Notes

- Requires macOS with location services enabled for proximity searches.
- Results are sourced from Apple Maps — coverage quality varies by region.
