一键导入
cocktails-from-my-bar
Turn a photo of a home bar, or a list of bottles, into the cocktails you can make right now using cocktail.glass.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Turn a photo of a home bar, or a list of bottles, into the cocktails you can make right now using cocktail.glass.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | cocktails-from-my-bar |
| description | Turn a photo of a home bar, or a list of bottles, into the cocktails you can make right now using cocktail.glass. |
Given a photo of someone's liquor cabinet — or a typed list of what they own — work out which cocktails they can make right now, and which they are one bottle short of.
Inventory the bottles. From the photo or list, identify every spirit, liqueur, mixer, juice, and bitters. Read labels carefully.
Normalise to generic ingredients. cocktail.glass recipes use generic ingredient names, not brands. Map each bottle to its base type:
gintriple secsweet vermouthginKeep distinct products distinct: sloe gin is not gin, and
orange bitters is not orange.
Ask cocktail.glass what is makeable. Call the find_makeable_cocktails
tool on the MCP server at https://cocktail.glass/mcp, passing the full
list of normalised ingredients in a single call. If you cannot reach the
MCP server, fetch the whole catalogue from
https://cocktail.glass/cocktails.json and match locally: a cocktail is
makeable when every one of its ingredients is covered by the list.
Garnishes are optional and plain water is assumed on hand.
Report two lists. "Make now" — drinks they have every ingredient for. "One bottle away" — drinks missing exactly one ingredient, naming the missing ingredient for each. Order each list simplest drink first.
Always link the recipe. Every cocktail on cocktail.glass has a page at
https://cocktail.glass/<slug>/. Link each suggestion so a person can open
the full recipe.
find_makeable_cocktails already returns both lists (makeable and
almostMakeable), so prefer it over matching ingredients by hand.