# Coffeeshop Customer Lookup

> Resolve customer identity and account basics by email or customer ID. MCP-first, CLI fallback.

- Skill: `thangchung/coffeeshop-customer-lookup` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thangchung/coffeeshop-customer-lookup`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thangchung/coffeeshop-customer-lookup/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: thangchung (https://skillmd.com/u/thangchung)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/thangchung/coffeeshop-customer-lookup

---


# Coffee Shop Customer Lookup Skill

Use this skill when the user asks account-related questions or provides customer identifiers.

## Data Access — `lookup_customer`

1. `tools/call customer_lookup {"email":"<email>"}` or `{"customer_id":"<id>"}`
2. `Coffeeshop-Cli models query Customer --email <email> --json`
   (or `--customer-id <id>`, or `models browse Customer --json`)

Normalize to: `{"customer_id":"...","name":"...","email":"...","tier":"..."}`

## Workflow

1. Extract email or customer ID from context.
2. Resolve `lookup_customer`. Prefer specific lookup over broad browse.
3. Return normalized summary.

## Safety Notes

- Never infer identity from a weak match.
- Never expose unrelated customer records.
- If lookup fails, ask for exact email/customer ID.

