← 返回
未分类 中文

Nooks: Places worth revisiting

Personal place intelligence — save and find cafes, coworking spaces, libraries, restaurants, and other spots worth revisiting. Stores one markdown file per p...
个人地点情报 — 保存并查找咖啡馆、共享办公空间、图书馆、餐厅以及其他值得再次光顾的地点。每个地点存储一个 Markdown 文件。
ilyabelikin ilyabelikin 来源
未分类 clawhub v1.0.1 1 版本 100000 Key: 无需
★ 0
Stars
📥 355
下载
💾 0
安装
1
版本
#latest#second brain

概述

📍 Nooks — local place intelligence

Data

Base path is relative to workspace root or document root. On first use, create it: mkdir -p mind/nooks/. Nooks uses a mind/nooks/ folder in your workspace.

Files live in mind/nooks//. City folders use short lowercase slugs: hk, sf, sg, london, bkk.

Create on first use: mkdir -p mind/nooks//.

mind/
└── nooks/
    ├── nooksconfig.yml   ← config file, make one if it is not there yet
    ├── hk/
    │   ├── blue-bottle-central.md
    │   └── amber-lan-kwai-fong.md
    └── sf/
        └── sightglass-soma.md

File names: .md. Include neighborhood when the same place has multiple locations: blue-bottle-central.md vs blue-bottle-admiralty.md.


Place File

# Place Name

Type: cafe / coworking / library / park / restaurant / bar / museum / church / etc.
Area: station/neighborhood
Maps: https://maps.app.goo.gl/...
Price: $ / $$ / $$$ / $$$$
Image: `../assets/slug-that-make-sense` only if adding an image.
Vibe: quiet / moderate / buzzy
Good for: focus, calls, client meetings, leisure
Features: #wifi #charging #outdoor #healthy-food #coffee #24h #ac #3dprinter

## Notes

4 Apr 2026: upper floor is quieter, fills up fast after 10am

Field guidance:

Maps: if a Google Places API key is configured, fetch automatically (see Google Places API). Otherwise paste the share link from Google Maps mobile (maps.app.goo.gl/...) or leave blank.

Good for: your standing assessment of what this place suits. Comma-separated. Update if your opinion changes.

Notes: dated personal log. Observations, tips, surprises, things that shift over time. Format: 4 Apr 2026: ...

Features: use standard tags so grep works: #wifi #charging #outdoor #food #coffee #quiet #24h #reservations #alcohol #coworking

Good for vs Notes — the distinction: Good for is the verdict; Notes is the evidence. One is a label, the other is a log.


Saving a Place

  1. Search the web (name + city/area) — pre-fill Type, Price, Vibe, and Features from what's publicly known.
  2. Fetch the Maps link (optional — silent skip if unavailable):
    • If the find_location tool is in your tool list, call it with , and use the maps_url it returns.
    • Otherwise if google_places_api_key is set in mind/nooks/nooksconfig.yml, call Places API Text Search yourself (IDs only, free):

```

POST https://places.googleapis.com/v1/places:searchText

Headers: X-Goog-Api-Key: , X-Goog-FieldMask: places.id

Body: { "textQuery": ", " }

→ https://www.google.com/maps/place/?q=place_id:

```

  • Otherwise leave the Maps field blank and don't mention it. Do not ask the human to install a key or paste a share link.
  1. Show what you found: "Found Sightglass — specialty coffee roaster in SoMa SF, $$. Wifi confirmed, communal tables, no time limit."
  2. Ask as a group (skip anything already answered):
    • What's it good for? — focus, calls, meetings, catch-up, date, leisure?
    • Vibe? — quiet / moderate / buzzy (if unclear from search)
    • Features to correct? — confirm or fix what you found
    • Any notes? — first impressions, tips, things to remember
  3. if mind/nooks/nooksconfig.yml have images: yes search for an image of palace interor and add to Image: feild.

Finding Places

Use grep with expanded terms. Search city folder or all of mind/nooks/ cross-city.

# Quiet wifi spots in HK
grep -rl "#quiet" mind/nooks/hk/ | xargs grep -l "#wifi"

# Focus-friendly places in SF
grep -ril "focus\|deep.work\|laptop\|coworking" mind/nooks/sf/

# All cafes across cities
grep -ril "Type:.*cafe" mind/nooks/

# Charging spots anywhere
grep -rl "#charging" mind/nooks/

Always read the full file after grepping — the matched line is a signal, not the full picture.

Keyword expansion — always broaden the query:

  • "work / focus" → focus\|deep.work\|laptop\|coworking\|quiet
  • "meeting / call" → meeting\|client\|calls\|zoom
  • "coffee" → cafe\|coffee\|espresso\|specialty
  • "chill / relax" → leisure\|chill\|relax\|casual\|catch.up

If local results are thin and Haah skill is installed, suggest dispatching to a circle.


Core Behavior

  • User mentions a place → check if a file exists, offer to create or update
  • User asks "where can I work/eat in [city]?" → search mind/nooks// first
  • User shares a Maps link → offer to save the place
  • User mentions visiting somewhere in passing → ask if worth saving
  • User adds an observation ("terrible wifi there") → append a dated note to the file

Examples:

  • "Had a great session at Sightglass" → ask if anything worth logging, update if so
  • "We should go back to Amber" → check if saved, offer to create if not
  • "That place had no charging" → update #features or add a note

Save places as they come up naturally. Enrich over time. Don't wait for a data entry session.


Heartbeat or cron

Ask your human if they want to add Nooks: check to HEARTBEAT.md. If there is no HEARTBEAT.md, suggest to create a cron job every 30 minutes to execute Nooks: check.

On every heartbeat, check a random nook file. Surface something worth knowing:

  • "You haven't been to Sightglass in a while — still your go-to for focus in SF?"
  • "Common Ground has no Maps link yet — worth adding?"
  • "Amber only has one note — anything new from your last visit?"

If nothing worth mentioning, skip.


Google Places API (DIY setup — skip if you already have a find_location tool)

If your host runtime provides a built-in find_location tool (managed agents do), nothing to set up — the tool handles it. These instructions are for self-hosted Claude Code / Cursor / etc. users who want Maps links fetched automatically.

The Maps link field can be populated automatically using the Google Places API. It's free for this use case (ID-only lookups have no monthly cap).

Setup

  1. Go to console.cloud.google.comNew Project (e.g. nooks)
  2. APIs & ServicesEnable APIs and Services → search Places API (New) → Enable
  3. APIs & ServicesCredentialsCreate CredentialsAPI Key
  4. Restrict the key: click it → API restrictions → select Places API (New) only
  5. Add a billing account (card required by Google, but ID-only searches are free)
  6. Save the key to mind/nooks/nooksconfig.yml (at the root of your nooks folder):
google_places_api_key: YOUR_KEY_HERE

Once configured, Maps links are fetched automatically when saving a place — no manual copy-paste needed.


Updating

To update this skill to the latest version, fetch the new SKILL.md from GitHub and replace this file:

https://raw.githubusercontent.com/haah-ing/nooks-skill/main/SKILL.md

What NOT to Suggest

  • Syncing with Google Maps saved places — different purpose, keep separate
  • Crowd-sourced ratings or reviews — Nooks is personal signal, not Yelp
  • Opening hours in the file — always goes stale, check Google Maps
  • Automated "you're near X" alerts — too intrusive

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-05-07 05:53 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

life-service

Works: you projects organized.

ilyabelikin
个人项目情报 — 为每个多会话项目建立独立文件夹,记录状态、下一步计划以及相关人员、地点和事项的维基链接。
★ 0 📥 472
knowledge-management

web-tools-guide

user_ec205dbb
MANDATORY before calling web_search, web_fetch, browser, or opencli. Contains required error-handling procedures (web_se
★ 76 📥 164,006
knowledge-management

Summarize

paudyyin
智能摘要工具,自动为长文本、文档、网页生成摘要,提取要点与关键词,支持自定义摘要长度。
★ 963 📥 520,259