Install
openclaw skills install sushiro查询寿司郎(Sushiro / 壽司郎)中国大陆全国 100+ 门店的实时排队 / 等位情况。通过微信小程序后端拉取门店列表、单店详情、各城市排队榜、区域筛选、按经纬度排距离。当用户问"寿司郎排队 / 等位 / 还要等多久 / 哪家人少 / 几桌在等",对比城市或商圈的等位状况,按门店 id / 店名 / 区域查找具体门店,或获取官方城市 / 区域列表时使用。底层是 curl + jq,无需 API key。仅覆盖中国大陆门店,不含日本 / 港澳台。
openclaw skills install sushiroA thin curl + jq wrapper over the three public endpoints of Sushiro China's wechat-mini-program backend (crm-cn-prd.sushiro.com.cn). No API key required — the Bearer token is a shared mini-program credential and is hardcoded in the script.
The CLI is at scripts/sushiro. Invoke it directly (it's executable). Common usage:
scripts/sushiro summary # nationwide aggregate
scripts/sushiro stores --waiting --limit=10 # 10 busiest stores now
scripts/sushiro stores --city=深圳 # all Shenzhen stores
scripts/sushiro store 1012 # single-store detail
scripts/sushiro wait 1012 # one-line wait count
scripts/sushiro search 来福士 # name/area/address search
scripts/sushiro areas # all 区 names
scripts/sushiro raw 'stores?latitude=22.5&longitude=113.9&numresults=3'
Add --json to stores, store, or areas for raw JSON when piping or post-processing. summary, search, and raw always emit JSON or table; pipe through jq as needed.
how many people waiting at X?, which Sushiro is least busy in 深圳?): use the default table/pretty output and just relay the answer.--json and pipe to jq.| Field | Meaning |
|---|---|
wait | Groups currently in queue (not minutes). 0 = walk-in. |
waitTimeCap | Upper bound of wait time in minutes (usually 180). |
storeStatus | OPEN / CLOSED / PRE_OPEN. |
netTicketStatus | ONLINE (queue accepts remote tickets) / OFFLINE. |
nameKana | City (城市). Field name is a legacy carry-over from JP schema. |
area | Neighborhood (e.g. 深圳南山区). |
id | Store id (4-digit, e.g. 1012). Use with store / wait. |
The backend itself updates in real-time. There is no local cache — every call hits Sushiro. If a result looks wrong, try sushiro raw stores?latitude=1&longitude=1&numresults=1 to confirm the upstream is responsive; a 4xx/5xx means Sushiro changed or rotated the token.
For full URL schema, parameter semantics, and a sample raw response, see references/api.md.
crm-cn-prd) does not cover Japan / HK / TW. Tell the user explicitly if they ask about other regions.SUSHIRO_TOKEN=... env var, or update the default in the script.sleep or use the upstream's own cron (1 req/min is fine).