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

whisky-search威士忌搜索

Agent Skill

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

总安装

3,881

周安装

165

GitHub Stars

1

下载量

1,360
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install whisky-search

简介

从 WhiskySpace 搜索并检索威士忌信息。当用户询问威士忌酒瓶、品牌、酿酒厂、价格、评级、地区等时,请使用此技能。

SKILL.md

name
whisky-search
description
>-
languages
English, Chinese (zh), Japanese (ja), Spanish, French, German,

Whisky Search

Use WhiskySpace API responses as the source of truth. Prefer short, factual answers built from returned fields.

Non-negotiable rules

  • Use only API-returned data plus the canonical website URL rules in this skill.
  • Do not infer site routes, official websites, histories, tasting notes, prices, or descriptions from naming patterns.
  • If a required field is missing, say it is unavailable or not provided. Do not guess.
  • Distinguish clearly between a WhiskySpace page URL and a brand's official website.
  • If the user asks for a WhiskySpace link, return the page URL. If the user asks for the official website, use only the API website field.
  • If the user asks where a URL came from, explain that it uses the canonical route in this skill plus the identifier returned by the API.
  • Never describe a canonical URL as guessed, inferred, predicted, or assumed.

Canonical website URL rules

  • Whisky detail page: https://www.whiskyspace.com/whiskies/{slug_or_id}
  • Brand page: https://www.whiskyspace.com/brand/{id}
  • If the API response includes a full website URL field for the requested WhiskySpace page, use that exact value.
  • Otherwise, whisky pages use the returned slug; if slug is missing, use the numeric ID.
  • Brand pages use the numeric id only. Never use slug to build a brand page URL.
  • Never output /brand/{slug}, /brands/{slug}, or any undeclared route.
  • If the user asks for a brand page URL and the current payload has only slug, call GET https://www.whiskyspace.com/api/brands/{slug} first and then use the returned numeric id.
  • If the required identifier is still missing after the relevant lookup, say the WhiskySpace page URL is unavailable.

Request routing

  1. Search, compare, recommend, or filter whiskies:

Use GET https://www.whiskyspace.com/api/search.

  1. Show one whisky's details:

Use GET https://www.whiskyspace.com/api/whiskies/{slug_or_id}.

  1. List brands:

Use GET https://www.whiskyspace.com/api/brands.

  1. Show one brand's details:

Use GET https://www.whiskyspace.com/api/brands/{identifier}.

  1. Show filter choices:

Use GET https://www.whiskyspace.com/api/search/filters.

  1. User asks only for a page address, link, or URL:

Fetch only what is needed to obtain the canonical identifier, then return the URL directly.

  1. User asks where a URL came from:

Answer with the canonical route plus the API identifier used. Keep it to one or two sentences.

API endpoints

Search whiskies

GET https://www.whiskyspace.com/api/search

Common parameters:

  • q
  • region, country, type, cask_type
  • min_age, max_age
  • min_abv, max_abv
  • min_rating, max_rating
  • sort=rating|name|age|price|newest
  • per_page (max 50)

Get whisky details

GET https://www.whiskyspace.com/api/whiskies/{slug_or_id}

List brands

GET https://www.whiskyspace.com/api/brands

Common parameters:

  • country
  • region
  • sort=name|founded_year|whisky_count
  • per_page

Get brand details

GET https://www.whiskyspace.com/api/brands/{identifier}

identifier can be a slug or numeric ID for the API request. Use the returned numeric id for the website brand page URL.

Get filter options

GET https://www.whiskyspace.com/api/search/filters

Output templates

Search results

Show the top 5 to 10 matches unless the user asks for more.

For each whisky include:

  • Name
  • Age if present
  • Volume and ABV if present
  • Rating and review count if present
  • Brand, region, country if present
  • Price with recorded date if present
  • Cask types if present
  • WhiskySpace link: https://www.whiskyspace.com/whiskies/{slug_or_id}

When there are many matches, say: Found N results, showing top M.

Whisky details

Include:

  • Name, brand, category
  • Age, ABV, volume
  • Rating and review count
  • Description if present
  • Cask types
  • Prices with currency, market, and recorded date
  • WhiskySpace page URL

Brand list

For each brand include:

  • Name
  • Founded year if present
  • Region and country if present
  • Whisky count if present
  • WhiskySpace brand page URL: https://www.whiskyspace.com/brand/{id}

Brand details

Include:

  • Name
  • Description or history if present
  • Region and country
  • Founded year if present
  • Official website only if the API returns website
  • WhiskySpace brand page URL: https://www.whiskyspace.com/brand/{id}

Link-only response

When the user asks only for an address, link, or URL, keep the answer minimal.

Example:

White Horse brand page:
https://www.whiskyspace.com/brand/492

Do not add extra tasting notes, history, or route speculation.

URL provenance response

When the user asks where the URL came from, use this pattern:

It uses the canonical WhiskySpace brand route `/brand/{id}` defined in this skill and the API-returned brand id `492`. I did not use the slug to build the page URL.

Adapt the route and identifier to the actual case.

Anti-patterns

Never do any of the following:

  • The brand page should be /brand/{slug}.
  • I inferred that URL from the site's naming pattern.
  • The official website is https://www.whiskyspace.com/brand/492.
  • The brand URL is unavailable, but it is probably https://www.whiskyspace.com/brand/white-horse.

Edge cases

No results

  • Say no matching results were found.
  • Suggest a broader search term or a different filter.

Missing fields

  • Use Not available or Not provided.
  • Do not omit an important field if the user explicitly asked for it.

URL request with incomplete brand data

  • If you have brand.slug but not brand.id, call the brand details endpoint first.
  • If you still do not get a numeric id, say the WhiskySpace brand page URL is unavailable.

API error or timeout

  • Explain the failure plainly.
  • Suggest retrying or simplifying the query.
  • Do not dump raw error output unless the user asks for it.

Large result sets

  • Show the top 10 by default.
  • Mention the total count when available.
  • Suggest filters such as region, age, price, or rating.

Minimal examples

Search:

curl -s "https://www.whiskyspace.com/api/search?q=Macallan&per_page=5" -H "Accept: application/json"

Whisky details:

curl -s "https://www.whiskyspace.com/api/whiskies/macallan-12-year-old" -H "Accept: application/json"

Brand details by slug to retrieve numeric ID:

curl -s "https://www.whiskyspace.com/api/brands/white-horse" -H "Accept: application/json"

Notes

  • Prices may be stale. Show the recorded date when available.
  • Ratings based on few reviews may be less reliable.
  • No API key is required for the documented endpoints.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.63%
按下载量换算1,015

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills