Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

timemaptimemap 搜索

Agent Skill

timemap 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,206

周安装

604

GitHub Stars

公开资料未说明

下载量

4,977
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:timemap(timemap 搜索)
来源仓库:https://github.com/alexpolonsky/timemap
安装命令:
openclaw skills install timemap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install timemap

简介

搜索特拉维夫与海法的娱乐场所历史信息,涵盖酒吧、影院等场所。

  • 适用于旅游规划与文化研究,提供年代与地址详细信息。
  • 输入地点或时期关键词,系统返回相关场所列表与背景介绍。
  • 数据来源为公开档案,建议核实最新营业状态与访问可行性。
  • 适合历史爱好者或城市探索者,丰富行程策划细节。timemap 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
timemap
version
1.0.0
description
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", "בילה בתל אביב", "מה היה פה פעם", "מועדונים שנסגרו", "בתי קפה היסטוריים", "בתי קולנוע בחיפה".
author
Alex Polonsky (https://github.com/alexpolonsky)
homepage
https://github.com/alexpolonsky/agent-skill-timemap
license
MIT
metadata
{"openclaw": {"emoji": "🗺️", "os": ["darwin", "linux"], "requires": {"bins": ["python3"]}}}

Timemap - Tel Aviv & Haifa Venue History

Search historical entertainment, nightlife, and culture venues in Tel Aviv-Yafo and Haifa from 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, a non-profit project by Reut Miryam Cohen 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

# 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

CommandDescription
search <query>Search venues by name or address (Hebrew or English)
filterFilter 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
citiesList cities with venue counts
statsDatabase statistics (venues by city, tag, decade, status)
memories <id>Show user memories for a specific venue
randomPick a random venue (prefers ones with memories/photos)

Search Examples

# 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

# 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

# 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

# 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

OptionCommandsDescription
--jsonallOutput in JSON format (agent-friendly)
--limit Nsearch, filter, timeline, nearby, tagsMax results (default: 25 for terminal, unlimited for --json)
--no-colorallDisable colored output (auto-detected for non-TTY)
--freshallBypass cache and fetch fresh data from API
--cityfilterFilter by city code (tlv, haifa)
--tagsfilterFilter by tag (substring match)
--yearfilterVenues that opened or closed in this year
--active-infilterVenues that were active in this year
--openedfilterVenues that opened in this year
--closedfilterVenues that closed in this year
--radiusnearbySearch radius in km (default: 0.5)

City Codes

CodeCity
tlvTel Aviv
haifaHaifa

Tags

7 main categories (matching the site's UI filters):

TagHebrewDescription
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

# 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:

# 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:

{
  "ok": true,
  "command": "search",
  "count": 2,
  "venues": [...]
}

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.32%
按下载量换算4,097

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills