timemap
Search historical entertainment, nightlife, and culture venues in Tel Aviv and Haifa from timemap.co.il. Bars, cafes, clubs, cinemas, food venues, performance spaces. Use for "bars in Tel Aviv history", "what was at this address", "nightlife history", "בילה בתל אביב", "מה היה פה פעם", "מועדונים שנסגרו", "בתי קפה היסטוריים", "בתי קולנוע בחיפה".
Best use case
timemap is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Search historical entertainment, nightlife, and culture venues in Tel Aviv and Haifa from timemap.co.il. Bars, cafes, clubs, cinemas, food venues, performance spaces. Use for "bars in Tel Aviv history", "what was at this address", "nightlife history", "בילה בתל אביב", "מה היה פה פעם", "מועדונים שנסגרו", "בתי קפה היסטוריים", "בתי קולנוע בחיפה".
Teams using timemap should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/timemap/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How timemap Compares
| Feature / Agent | timemap | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Search historical entertainment, nightlife, and culture venues in Tel Aviv and Haifa from timemap.co.il. Bars, cafes, clubs, cinemas, food venues, performance spaces. Use for "bars in Tel Aviv history", "what was at this address", "nightlife history", "בילה בתל אביב", "מה היה פה פעם", "מועדונים שנסגרו", "בתי קפה היסטוריים", "בתי קולנוע בחיפה".
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
SKILL.md Source
# Timemap - Tel Aviv & Haifa Venue History
Search historical entertainment, nightlife, and culture venues in Tel Aviv-Yafo and Haifa from [timemap.co.il](https://timemap.co.il) - a community-curated database mapping bars, cafes, clubs, cinemas, food venues, and performance spaces throughout the cities' history.
> Data from [timemap.co.il](https://timemap.co.il), a non-profit project by [Reut Miryam Cohen](https://x.com/reutc) and Amir Ozer - "a loving tribute to the places and people that made the cities we grew up in." Venues include opening/closing dates, locations, tags, user memories, and photos. This skill is an unofficial CLI wrapper.
## Quick Start
```bash
# Search for a venue (Hebrew or English)
python3 {baseDir}/scripts/timemap.py search "רוטשילד"
python3 {baseDir}/scripts/timemap.py search "Barby"
# See what was active in a specific year
python3 {baseDir}/scripts/timemap.py timeline 2010
# Get database statistics
python3 {baseDir}/scripts/timemap.py stats
```
## Commands
| Command | Description |
|---------|-------------|
| `search <query>` | Search venues by name or address (Hebrew or English) |
| `filter` | Filter by --city, --tags, --year, --active-in, --opened, --closed |
| `venue <id>` | Get full details for a specific venue (by ID or name) |
| `timeline <year>` | Show all venues that were active in a given year |
| `nearby <lat> <lng>` | Find venues near coordinates (--radius in km, default 0.5) |
| `tags [tag]` | List all tags, or show venues with a specific tag |
| `cities` | List cities with venue counts |
| `stats` | Database statistics (venues by city, tag, decade, status) |
| `memories <id>` | Show user memories for a specific venue |
| `random` | Pick a random venue (prefers ones with memories/photos) |
## Search Examples
```bash
# Search by name (Hebrew or English)
python3 {baseDir}/scripts/timemap.py search "טדי"
python3 {baseDir}/scripts/timemap.py search "Barby"
# Search by address
python3 {baseDir}/scripts/timemap.py search "רוטשילד"
python3 {baseDir}/scripts/timemap.py search "דיזנגוף"
# Get full details for a venue
python3 {baseDir}/scripts/timemap.py venue 192
# Find venues with user memories
python3 {baseDir}/scripts/timemap.py memories 253
```
## Filter Examples
```bash
# Filter by city
python3 {baseDir}/scripts/timemap.py filter --city tlv
python3 {baseDir}/scripts/timemap.py filter --city haifa
# Filter by tag
python3 {baseDir}/scripts/timemap.py filter --tags bar
python3 {baseDir}/scripts/timemap.py filter --tags food
python3 {baseDir}/scripts/timemap.py filter --tags cinema
# Venues that opened in a specific year
python3 {baseDir}/scripts/timemap.py filter --opened 2005
# Venues that closed in a specific year
python3 {baseDir}/scripts/timemap.py filter --closed 2010
# Venues active in a specific year
python3 {baseDir}/scripts/timemap.py filter --active-in 2008
# Combine filters
python3 {baseDir}/scripts/timemap.py filter --city tlv --tags bar --active-in 2010
```
## Timeline & Location Examples
```bash
# See what was happening in a specific year
python3 {baseDir}/scripts/timemap.py timeline 2005
python3 {baseDir}/scripts/timemap.py timeline 1995
# Find venues near coordinates (Rothschild Blvd area)
python3 {baseDir}/scripts/timemap.py nearby 32.0646 34.7731
python3 {baseDir}/scripts/timemap.py nearby 32.0646 34.7731 --radius 1.0
# Find venues near Florentin
python3 {baseDir}/scripts/timemap.py nearby 32.0566 34.7608 --radius 0.5
```
## Browse & Explore
```bash
# List all tags
python3 {baseDir}/scripts/timemap.py tags
# Show venues with a specific tag
python3 {baseDir}/scripts/timemap.py tags bar
python3 {baseDir}/scripts/timemap.py tags club
# List cities
python3 {baseDir}/scripts/timemap.py cities
# Database statistics
python3 {baseDir}/scripts/timemap.py stats
# Random venue (great for discovery)
python3 {baseDir}/scripts/timemap.py random
```
## Options Reference
| Option | Commands | Description |
|--------|----------|-------------|
| `--json` | all | Output in JSON format (agent-friendly) |
| `--limit N` | search, filter, timeline, nearby, tags | Max results (default: 25 for terminal, unlimited for --json) |
| `--no-color` | all | Disable colored output (auto-detected for non-TTY) |
| `--fresh` | all | Bypass cache and fetch fresh data from API |
| `--city` | filter | Filter by city code (tlv, haifa) |
| `--tags` | filter | Filter by tag (substring match) |
| `--year` | filter | Venues that opened or closed in this year |
| `--active-in` | filter | Venues that were active in this year |
| `--opened` | filter | Venues that opened in this year |
| `--closed` | filter | Venues that closed in this year |
| `--radius` | nearby | Search radius in km (default: 0.5) |
## City Codes
| Code | City |
|------|------|
| `tlv` | Tel Aviv |
| `haifa` | Haifa |
## Tags
7 main categories (matching the site's UI filters):
| Tag | Hebrew | Description |
|-----|--------|-------------|
| `bar` | ברים | Bar/pub |
| `food` | אוכל | Restaurant/food venue |
| `cafe` | בתי קפה | Cafe |
| `club` | מועדונים | Nightclub |
| `cinema` | בתי קולנוע | Cinema/movie theater |
| `live_shows` | הופעות | Live performances |
| `lgbtq` | להטב"ק | LGBTQ venue |
Additional tags: `dance_bar`, `lounge`, `wine_bar`, `restaurant`
Use `python3 {baseDir}/scripts/timemap.py tags` to see current counts from live data.
## Workflow Example
```bash
# 1. Explore what Tel Aviv nightlife looked like in 2008
python3 {baseDir}/scripts/timemap.py timeline 2008
# 2. Filter just the bars
python3 {baseDir}/scripts/timemap.py filter --active-in 2008 --tags bar
# 3. Get details on an interesting venue
python3 {baseDir}/scripts/timemap.py venue "Barby"
# 4. Read user memories about it
python3 {baseDir}/scripts/timemap.py memories "Barby"
# 5. Find nearby venues
python3 {baseDir}/scripts/timemap.py nearby 32.0646 34.7731 --radius 0.5
```
## Notes
- **Community-curated**: Historical data maintained by timemap.co.il community
- **No API key needed**: Public API endpoint, no authentication required
- **Bilingual**: Search works with Hebrew and English venue names
- **Caching**: 24-hour local cache (one API call per day max, ~500KB)
- **Coordinates**: Haversine formula for accurate distance calculations
- **Deleted venues filtered**: Venues marked as deleted are automatically excluded
- **Color output**: ANSI colors in terminal (respects `NO_COLOR` env var and `--no-color` flag)
- **User memories**: Many venues have community-submitted memories and photos
- **Year estimates**: Some opening/closing years are marked as estimates
## Agent Usage Patterns
For agent integration, always use `--json` flag for structured output:
```bash
# Search returns array of matching venues
python3 {baseDir}/scripts/timemap.py search "Barby" --json
# Timeline returns venues active in a year
python3 {baseDir}/scripts/timemap.py timeline 2010 --json
# Stats returns comprehensive database metrics
python3 {baseDir}/scripts/timemap.py stats --json
```
All commands support `--json` for machine-readable output with consistent structure:
```json
{
"ok": true,
"command": "search",
"count": 2,
"venues": [...]
}
```Related Skills
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
botlearn-healthcheck
botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.
linkedin-cli
A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.
notebooklm
Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。
小红书长图文发布 Skill
## 概述