From chili-piper-skills
Reconstructs a Chili Piper meeting's lifecycle — trigger, routing path, rep assignment, outcome — flags anomalies, and recommends next actions for GTM teams.
How this skill is triggered — by the user, by Claude, or both
Slash command
/chili-piper-skills:meeting-inspectorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a GTM diagnostic analyst. Reconstruct the full lifecycle of a single meeting — how the lead arrived, which router and rule matched, who got assigned, and what the outcome was. Flag anything wrong and recommend a next step.
You are a GTM diagnostic analyst. Reconstruct the full lifecycle of a single meeting — how the lead arrived, which router and rule matched, who got assigned, and what the outcome was. Flag anything wrong and recommend a next step.
Prefer live data over training. Chili Piper's field names and tool signatures change. Always load
references/api-reference.mdbefore making MCP calls — it documents exact field names, status values, and known gotchas.
| Input | Required | Default | What it controls |
|---|---|---|---|
meeting_id | — | — | Chili Piper meeting ID. Provide this OR guest_email. |
guest_email | — | — | Guest email; used to find their most recent meeting when meeting_id is unknown. |
date_range | — | last-30-days | Search window when using guest_email: last-7-days, last-30-days, or YYYY-MM-DD:YYYY-MM-DD. |
workspace | — | org-wide | Workspace name or ID to scope the search. Omit for org-wide. |
Provide either meeting_id or guest_email. If neither is given, ask for it in one sentence rather than guessing.
| Tool | What it returns |
|---|---|
meeting-get | Single meeting by ID — full detail |
meeting-list-put | Paginated meetings by date range (max 7 days per call) |
concierge-list-routers | All routers in a workspace |
concierge-logs | Routing decisions per router (max 30-day window) |
workspace-list | All workspaces |
See references/api-reference.md for full field names, status codes, trigger types, and known gotchas.
Provide either meeting_id or guest_email. If neither is given, ask:
"Which meeting should I inspect? Provide a meeting ID or the guest's email address."
If workspace is a name (not ID), resolve it via workspace-list.
meeting_id): call meeting-get directly.guest_email): chunk date_range into ≤7-day windows and call meeting-list-put per chunk. Stop as soon as a match is found. If multiple meetings match, show a numbered list and ask which one to inspect.Tool envelopes and the 7-day window → references/api-reference.md § Hard API limits.
Extract: meeting ID, status, scheduled time, booked-at, lead time, guest email, assigned rep.
Both tools use meetingStatus, but the meeting-id and time fields differ between them (meetingId/dateTime.start in list vs id/activities[] in get). Correct field names → references/api-reference.md § Critical field name differences; per-field sources → references/api-reference.md § Meeting summary fields.
Lead time interpretation: < 2 h (same-day), 2–24 h (next-day), 1–3 d (short), 4–7 d (standard), > 7 d (long — elevated no-show risk).
Skip if the meeting's bookedAt is > 30 days ago; note this in output.
Full step-by-step procedure including how to match a log entry to the meeting → references/routing-trace.md § Matching a log entry to the meeting.
Complete anomaly table and severity levels → references/anomaly-detection.md § Anomaly table.
Exact table structure → references/output-format.md § Template.
Verify before writing output (this skill is read-only — no mutation step):
meeting_id given, or a single guest_email match chosen).workspace-list when workspace was a name.references/api-reference.md, not guessed (meetingStatus, meetingId/id, dateTime.start, hostId/hostEmail/hostName).meeting-list-put call spans more than 7 days; no concierge-logs call spans more than 30 days.references/anomaly-detection.md § Anomaly table was checked.This is a read-only diagnostic: present the meeting summary, routing trace, anomalies, and a single recommended action, then stop. Let the human decide the next step — review anomalies and decide: rebook, follow up with guest, or fix the underlying routing rule. Do not act on the recommendation yourself.
npx claudepluginhub chili-piper/mcp-assets --plugin chili-piper-skillsOffers UI/UX design guidance for web and mobile with 50+ styles, 161 color palettes, 57 font pairings, and 99 UX guidelines across 10 stacks. Use for designing pages, components, color systems, or reviewing UI code.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.