Sales team celebration dashboard with deal-to-purchase comparisons
Build a fun celebration and leaderboard workflow for a sales team. Every time a deal closes as won in the CRM, the workflow figures out a gloriously ridiculous thing you could buy for the same amount as the deal's value, posts that (with a matching GIF) to the team's chat channel, and records it on a live team dashboard/scoreboard. Trigger it three ways: A webhook endpoint (the entry point) that receives a close-won deal event. Point your CRM's outbound webhook or HTTP callout — I used Salesforce, but any CRM works — at this route. Keep it authenticated with an unguessable external id since an external service calls it. A dashboard page (space-authenticated) that people open in a browser to see the scoreboard. A JSON data endpoint (space-authenticated) that the dashboard fetches its stats from. Main steps, at a high level: Parse the incoming deal payload into a clean deal record (opportunity, account, deal value/ARR, sales rep, currency). Ask an AI model for an absurd purchase equivalent to the deal value, plus a punchline and a GIF search term. I used Claude via Anthropic — swap in any LLM you prefer. Search for a matching GIF using the search term. I used Giphy — or any GIF/image search API. Fan out to two things in parallel: post the celebration message to the team's chat channel (I used Slack — or your team's chat tool), and append the deal to persistent storage. Render a dashboard that reads aggregated stats and shows totals, a per-rep leaderboard, and a feed of the ridiculous purchases. Persist deals durably (e.g. a named volume) so the dashboard reflects history across runs. The webhook writes; the dashboard and data endpoint are read-only. Make the dashboard genuinely fun and share-worthy. Tools used: Salesforce (webhook trigger), Anthropic (Claude), Giphy API, Slack
What this prompt builds
A celebration workflow that fires when a deal closes as won in the CRM, generates a humorous purchase equivalent to the deal's ARR, posts it with a GIF to the team's Slack channel, and logs it on a live leaderboard dashboard. Designed to recognize sales engineers and boost team morale with absurd comparisons and visual celebration. Integrates Salesforce, Anthropic Claude, Giphy, and Slack to deliver persistent, share-worthy team recognition.
The problem
Sales teams that want to celebrate closed deals in a memorable, fun way often lack a lightweight mechanism to recognize wins publicly and keep morale high. Manual shout-outs are inconsistent, and standard CRM notifications are dry and easy to ignore. This workflow solves that by automatically turning every closed-won deal into a celebratory Slack post complete with a ridiculous purchase equivalent (matching the deal's ARR), a GIF, and a running leaderboard that tracks wins and keeps the team engaged. It's designed for teams that value culture and want deal celebrations to be instant, visible, and genuinely entertaining.
Solution and impact
The workflow delivers instant recognition and team engagement every time a deal closes. By translating ARR into absurd, shareable comparisons and posting them with a GIF to Slack, it turns dry CRM data into a moment of celebration that the whole team sees and remembers. The persistent dashboard and leaderboard create ongoing visibility into wins and foster healthy competition, boosting morale and reinforcing a culture of recognition without any manual effort from managers or ops.