skills/concert-burndown/SKILL.md
Track ticket sales for a live event (concert, festival, conference, workshop) with daily snapshots, generate a burndown chart comparing actual sales to ideal-linear targets and tier-cumulative milestones, and report whether the event is on pace. Use when the user asks how sales are going, wants to know if their event will sell out, asks for a daily sales report, wants to set up sales tracking for an upcoming event, or asks about ticket pace / velocity / projection. Trigger generously: phrases like 'how is concert sales going', 'burndown for my event', 'are we going to sell out', 'sales velocity', 'daily ticket chart', 'how many tickets do we need to sell', or any case where the user has a ticketed event with a fixed sales window and wants visibility on pacing.
npx skillsauth add razbakov/skills concert-burndownInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A burndown chart, adapted from scrum, applied to ticket sales for a one-off event. Plots actual sales vs ideal-linear and tier-milestone lines. Computes velocity, projection, and the daily pace needed to hit the target. Updates daily.
A ticketed event with a fixed sale window (concert, festival, conference, ball, workshop) has the same structural problem as a sprint: limited time, fixed scope, need to know if you'll land. The same tool that works for scrum — a burndown chart — works for ticket sales.
Without this skill, organizers stare at their ticketing platform's order count, do mental math, and guess. With it: one chart per day, same shape every day, sees drift the moment it starts.
Use when the user:
Do NOT use for:
If platform has an MCP (e.g. Ticket Tailor MCP), pull sales programmatically. Otherwise ask the user to paste current sales manually each day.
uv (the script uses inline PEP 723 deps — installs matplotlib on first run)uv if missing)Create burndown-config.json in your event ops directory (ops/<event-slug>/ if you follow the ikigai-team layout; otherwise wherever you track event docs):
{
"event_name": "<full event name>",
"event_date": "YYYY-MM-DD",
"launch_date": "YYYY-MM-DD",
"min_target_paid": 250,
"stretch_target_paid": 450,
"tier_milestones": [
{"date": "YYYY-MM-DD", "cumulative_target": 50, "tier": "<tier name>"},
{"date": "YYYY-MM-DD", "cumulative_target": 150, "tier": "+ <next tier>"},
{"date": "YYYY-MM-DD", "cumulative_target": 250, "tier": "+ <next tier>"},
{"date": "YYYY-MM-DD", "cumulative_target": 450, "tier": "+ <regular> — full venue"}
],
"venue_capacity_paid": 450,
"financing_gap_eur": 0,
"csv_path": "sales-log.csv",
"output_png": "/absolute/path/to/burndown/latest.png"
}
csv_path is resolved relative to the config file's directory if relative, or used as-is if absolute. output_png should be absolute — typically outside the git repo (large binary).
Create ops/<event-slug>/sales-log.csv with header:
date,paid_tickets,revenue_eur,<tier1>,<tier2>,...,vip_comps,notes
Bootstrap with the launch-day snapshot (<launch_date>,0,0.00,...,launch).
Once per day (cron, scheduled task, or manual), pull sales from the platform and append a new CSV row.
If the platform has an MCP (e.g. Ticket Tailor):
Use mcp__tickettailor__event_by_id_get to fetch current event state.
Extract: total_issued_tickets (excluding VIP comps), revenue, ticket_types[].quantity_issued.
Append a row to sales-log.csv with today's date and the snapshot.
If manual: ask the user to paste current numbers from their platform dashboard. Be specific: "How many paid tickets sold? Current revenue? Any new notes (price tier change, ad campaign, etc.)?"
Example row:
2026-05-04,32,1659.00,24,0,0,5,3,7,first Group-of-5 bundle sold; SEB at 24/50; promoter codes live
Include a notes field with anything noteworthy (price tier expired, ad campaign started, etc.). This becomes the timeline annotation.
Run the included Python script (uv inline, self-contained):
~/.claude/skills/concert-burndown/scripts/burndown.py /path/to/burndown-config.json
This produces:
<output_png> — dark-theme chart with:
After generation, deliver in chat:
open <output_dir> for visual reviewIf the user wants automation: use mcp__scheduled-tasks__create_scheduled_task with cron 0 9 * * * and a prompt that pulls fresh data, regenerates the chart, posts to Telegram via their org's bot, and updates the CSV.
Daily summary line (for Telegram / digest):
<Event> burndown — YYYY-MM-DD (T-X days)
Sold: <N> paid · €<R> revenue
Min target: <N>/<T> (<%>) · Stretch: <N>/<T> (<%>)
Ideal pace to min: <X>/day · expected today: <Y> · actual/expected: <ratio>x
Recent pace (<d>d): <X>/day · projected at min: <Y>
Needed pace from today: <X>/day to hit min target
Chart aesthetic: dark background (#0e1116), white/cyan typography, amber/red accent lines. Always include the date and T-X days in the title for at-a-glance currency.
event-flyer-pack — print-ready flyer pack for a specific eventevent-poster-bundle — IG-ready event-list poster + captionpress-kit-pack — full press kit with releases + Drive folderdevelopment
Seed a new or empty Instagram account with a 9-post grid (3×3) so the profile looks established the moment a new visitor lands. Designed for festivals, new businesses, product launches, conferences, communities — any time an empty IG profile would hurt conversion from external traffic (QR scans, flyer drops, cross-promo). Generates assets via /image-from-gemini (per content-publishing rules — never HTML), writes captions with hashtag sets, and outputs a posting order + cadence plan. Trigger generously: phrases like '9 posts for instagram', 'fill my IG', 'starter grid', 'launch grid', 'instagram seed', '9-post grid', 'IG account not to look empty', 'first instagram posts', 'feed bootstrap', '3x3 grid', 'instagram launch content'. Even if the user mentions only one piece (just the images, just the captions, just the order), use this skill — the grid only works as an integrated bundle.
testing
Translate one English blog post into multiple target languages via parallel sub-agents, preserving frontmatter conventions, hero image, and brand voice. Use when the user shares a published English post URL or markdown path and says 'translate it', 'add other languages', 'publish in DE/ES/RU/UK', 'translate to 5 languages', or asks for localized versions of a specific post.
development
Build a complete press kit for an event, product launch, or campaign — in multiple languages — and publish it as a shareable Google Drive folder ready to send to journalists, partners, or a delegate. Produces press releases (typically DE/EN/ES, or configurable), uploads press photos and flyers, creates an Overview document for at-a-glance briefing, and creates a Handover document with pending tasks, contacts, risks, and decisions so press distribution can be delegated. Use when the user says 'I need a press release', 'create a press kit', 'press release in X languages', 'set up a Drive folder for press', 'handover doc for someone else to run press', or has an upcoming announcement that needs to be sent to media. Trigger generously: even partial requests (just a press release, just a flyer folder) typically evolve into the full kit.
documentation
Take a long stream-of-thought transcript (voice memo, video reflection, text dump) and turn it into a cluster of 5-20 publishable blog essays. Clusters ideas by theme, drafts each essay via parallel sub-agents, generates Gemini hero images, batch-commits, and (optionally) sends a grouped link list via the user's preferred messaging surface. Use when the user shares a transcript and says 'turn this into essays', 'write a series', 'split into posts', 'draft all of them', or pastes a long stream of ideas they want shipped.