✓ Verified
🛒 E-commerce
✓ Enhanced Data
Jlm Coffee
Search specialty coffee shops in Jerusalem by amenities and hours.
- Rating
- 4.3 (122 reviews)
- Downloads
- 19,164 downloads
- Version
- 1.0.0
Overview
Search specialty coffee shops in Jerusalem by amenities and hours.
Complete Documentation
View Source →
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
bash
# 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 | List all approved specialty coffee shops |
| search | Search shops by name (Hebrew or English) |
| get | Get full details for a specific shop |
| filter | Filter shops by amenity (wifi, dogs, kosher, etc.) |
| open-now | Show shops currently open |
| amenities | List all available amenity filters |
| surprise | Pick a random coffee shop (prefers open ones) |
Search and Filter Examples
bash
# 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 |
|---|---|---|
| --json | all | Output in JSON format (agent-friendly) |
| --no-color | all | Disable colored output (auto-detected for non-TTY) |
Amenity Filters
| Key | Label | Aliases |
|---|---|---|
| wifi | WiFi | |
| dogs | Dog-friendly | dog, dog-friendly |
| laptop | Laptop-friendly | laptops |
| outdoor | Outdoor seating | outside, terrace |
| accessible | Wheelchair accessible | wheelchair |
| vegan | Vegan options | |
| kids | Kid-friendly | children, kid-friendly |
| quiet | Quiet atmosphere | |
| smoking | Smoking area | |
| local-roasting | Local roasting | roasting |
| sell-beans | Sells beans | beans |
| filter-coffee | Filter coffee | filter |
| kosher | Kosher | |
| open-saturday | Open Saturday | saturday, shabbat |
| power | Power outlets | outlets |
| parking | Parking |
Workflow Example
bash
# 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
NO_COLORenv var and--no-colorflag) - CLI shortcut: Install as
jlm-coffeevia symlink to the wrapper script - No dependencies: Python stdlib only (urllib, json)
- Fast caching: 15-minute local cache TTL - one fetch covers all commands
Installation
Terminal bash
openclaw install jlm-coffee
Copied!
💻Code Examples
python3 {baseDir}/scripts/jlm-coffee.py search "סיבריס"
python3-basedirscriptsjlm-coffeepy-search-.txt
## Commands
| Command | Description |
|---------|-------------|
| `list` | List all approved specialty coffee shops |
| `search <query>` | Search shops by name (Hebrew or English) |
| `get <id_or_name>` | Get full details for a specific shop |
| `filter <amenity>` | Filter shops by amenity (wifi, dogs, kosher, etc.) |
| `open-now` | Show shops currently open |
| `amenities` | List all available amenity filters |
| `surprise` | Pick a random coffee shop (prefers open ones) |
## Search and Filter Examplespython3 {baseDir}/scripts/jlm-coffee.py get EljFiggwObssQpypWMf0
python3-basedirscriptsjlm-coffeepy-get-eljfiggwobssqpypwmf0.txt
## Options Reference
| Option | Commands | Description |
|--------|----------|-------------|
| `--json` | all | Output in JSON format (agent-friendly) |
| `--no-color` | all | Disable colored output (auto-detected for non-TTY) |
## Amenity Filters
| Key | Label | Aliases |
|-----|-------|---------|
| `wifi` | WiFi | |
| `dogs` | Dog-friendly | dog, dog-friendly |
| `laptop` | Laptop-friendly | laptops |
| `outdoor` | Outdoor seating | outside, terrace |
| `accessible` | Wheelchair accessible | wheelchair |
| `vegan` | Vegan options | |
| `kids` | Kid-friendly | children, kid-friendly |
| `quiet` | Quiet atmosphere | |
| `smoking` | Smoking area | |
| `local-roasting` | Local roasting | roasting |
| `sell-beans` | Sells beans | beans |
| `filter-coffee` | Filter coffee | filter |
| `kosher` | Kosher | |
| `open-saturday` | Open Saturday | saturday, shabbat |
| `power` | Power outlets | outlets |
| `parking` | Parking | |
## Workflow Exampleexample.sh
# List all coffee shops
python3 {baseDir}/scripts/jlm-coffee.py list
# Find a shop by name
python3 {baseDir}/scripts/jlm-coffee.py search "סיבריס"example.sh
# 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 EljFiggwObssQpypWMf0example.sh
# 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 surpriseTags
#shopping_and-e-commerce
Quick Info
Category E-commerce
Model Claude 3.5
Complexity One-Click
Author alexpolonsky
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
Ready to Install?
Get started with this skill in seconds
openclaw install jlm-coffee
Related Skills
✓ Verified
💻 Development
4claw
4claw — a moderated imageboard for AI agents.
🧠 Claude-Ready
)}
★ 4.4 (118)
↓ 4,990
v1.0.0
✓ Verified
💻 Development
Aap Passport
Agent Attestation Protocol - The Reverse Turing Test.
🧠 Claude-Ready
)}
★ 4.3 (89)
↓ 4,621
v1.0.0
✓ Verified
💻 Development
Adaptive Suite
A continuously adaptive skill suite that empowers Clawdbot.
🧠 Claude-Ready
)}
★ 4.7 (88)
↓ 1,625
v1.0.0
✓ Verified
💻 Development
Adversarial Prompting
Adversarial analysis to critique, fix.
🧠 Claude-Ready
)}
★ 4.6 (372)
↓ 28,222
v1.0.0