Skills jlm-coffee
Search Jerusalem specialty coffee shops by name, amenities, ratings, and opening hours. Use when user asks about "coffee in Jerusalem", "Jerusalem cafe", "בית קפה בירושלים", "קפה בירושלים", "specialty coffee Jerusalem", "where to get coffee in Jerusalem", "dog-friendly cafe Jerusalem", "laptop cafe Jerusalem", "open now coffee Jerusalem".
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/alexpolonsky/jlm-coffee" ~/.claude/skills/openclaw-skills-jlm-coffee && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/alexpolonsky/jlm-coffee" ~/.openclaw/skills/openclaw-skills-jlm-coffee && rm -rf "$T"
manifest:
skills/alexpolonsky/jlm-coffee/SKILL.mdsource content
Jerusalem Coffee Finder
Search specialty coffee shops in Jerusalem - ratings, amenities, opening hours, reviews, and locations from coffee.amsterdamski.com, created and curated by Shaul Amsterdamski (@amsterdamski2).
Data from the official public JSON export provided by the site maintainer. May not reflect current status. Provided "as is" without warranty of any kind.
Quick Start
# List all coffee shops python3 {baseDir}/scripts/jlm-coffee.py list # Find a shop by name python3 {baseDir}/scripts/jlm-coffee.py search "סיבריס"
Commands
| Command | Description |
|---|---|
| List all approved specialty coffee shops |
| Search shops by name (Hebrew or English) |
| Get full details for a specific shop |
| Filter shops by amenity (wifi, dogs, kosher, etc.) |
| Show shops currently open |
| List all available amenity filters |
| Pick a random coffee shop (prefers open ones) |
Search and Filter Examples
# Search by name (Hebrew or English) python3 {baseDir}/scripts/jlm-coffee.py search "רוסטרס" python3 {baseDir}/scripts/jlm-coffee.py search "Cafe Pepa" # Filter by amenity python3 {baseDir}/scripts/jlm-coffee.py filter wifi python3 {baseDir}/scripts/jlm-coffee.py filter dogs python3 {baseDir}/scripts/jlm-coffee.py filter kosher python3 {baseDir}/scripts/jlm-coffee.py filter laptop # Shops open right now python3 {baseDir}/scripts/jlm-coffee.py open-now # Full details for a shop python3 {baseDir}/scripts/jlm-coffee.py get "בארוק" python3 {baseDir}/scripts/jlm-coffee.py get EljFiggwObssQpypWMf0
Options Reference
| Option | Commands | Description |
|---|---|---|
| all | Output in JSON format (agent-friendly) |
| all | Disable colored output (auto-detected for non-TTY) |
Amenity Filters
| Key | Label | Aliases |
|---|---|---|
| WiFi | |
| Dog-friendly | dog, dog-friendly |
| Laptop-friendly | laptops |
| Outdoor seating | outside, terrace |
| Wheelchair accessible | wheelchair |
| Vegan options | |
| Kid-friendly | children, kid-friendly |
| Quiet atmosphere | |
| Smoking area | |
| Local roasting | roasting |
| Sells beans | beans |
| Filter coffee | filter |
| Kosher | |
| Open Saturday | saturday, shabbat |
| Power outlets | outlets |
| Parking |
Workflow Example
# 1. Find shops with WiFi and look at the list python3 {baseDir}/scripts/jlm-coffee.py filter wifi # 2. Get details on one that looks good python3 {baseDir}/scripts/jlm-coffee.py get "מטאפורה" # 3. Check what's open right now python3 {baseDir}/scripts/jlm-coffee.py open-now # 4. Feeling lucky? Get a random pick python3 {baseDir}/scripts/jlm-coffee.py surprise
Notes
- Community-curated: All specialty coffee in Jerusalem, community-reviewed
- Official data source: Reads from a public JSON export provided by the site maintainer (no API key, no Firestore)
- Bilingual: Search works with Hebrew and English names
- Opening hours: Based on Google Places data, cached by the site
- Reviews included: Shop details show community reviews with ratings
- Color output: ANSI colors in terminal (respects
env var andNO_COLOR
flag)--no-color - CLI shortcut: Install as
via symlink to the wrapper scriptjlm-coffee - No dependencies: Python stdlib only (urllib, json)
- Fast caching: 15-minute local cache TTL - one fetch covers all commands