# Coffeeshop Counter Service

> End-to-end counter: identify customer, classify intent, build order, confirm, submit. MCP-first, CLI fallback.

- Skill: `thangchung/coffeeshop-counter-service-3` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thangchung/coffeeshop-counter-service-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thangchung/coffeeshop-counter-service-3/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-22
- Page: https://skillmd.com/skills/thangchung/coffeeshop-counter-service-3

---


# Coffee Shop Order Submission Skill

## Data Access

| Action | MCP tool | CLI fallback |
|--------|----------|--------------|
| `lookup_customer` | `customer_lookup` | `Coffeeshop-Cli models query Customer ... --json` |
| `list_menu` | `menu_list_items` | `Coffeeshop-Cli models browse MenuItem --json` |
| `submit_order` | `order_submit` | `Coffeeshop-Cli models submit Order --json` |

## Agentic Loop

1. **INTAKE** — Identify customer.
2. **CLASSIFY INTENT** — `account | item-types | process-order | order-status`.
3. **REVIEW & CONFIRM** — Build items + total. Show summary. Require explicit confirmation.
4. **FINALIZE** — Submit. Return order ID, total, ETA.

## Safety Notes

- Never invent unavailable menu items.
- Never finalize before user confirmation.

