Glamies v2 · use-case walkthrough

Season setup

Standing up a competition year: calendar, schools, performances, roles, and award categories/rubrics. Most of the season/school/performance *creation* flow is seed-only today — this walkthrough shows what's actually built (calendar dates, category & rubric authoring) alongside honest gap slides for what isn't.

12 steps 7 built & screenshotted 5 not yet built
01

Create a season (name, slug, dates)

Chapter admin Not yet built
Not yet built — no UI exists for this step today

Step 1 — There is no createSeason service or route; the `seasons` table (with a draft/active/completed/archived status) exists, but every season in the app today comes from seed.ts. No form exists to stand up a new season.

02

Season tied to a discipline; rubrics auto-populate

Chapter admin Not yet built
Not yet built — no UI exists for this step today

Step 2 — There's no discipline concept anywhere in the schema yet. Every season today implicitly means "theater"; there's no discipline picker or automatic rubric-set cloning on season creation.

03

Chapter admin sets the season calendar

Chapter admin (Casey Marsh) Built & verified

Step 3 — Built: the Important Dates page lets the chapter admin add/remove calendar entries (training day, voting day, gala, deadlines) tagged by kind and scoped to a chapter. The season already has Reviewer Training, Voting Day, and Gala dates from seed.

04

New calendar date added

Chapter admin (Casey Marsh) Built & verified

Adding a date writes an `important_dates` row immediately — no draft/publish step, it's live on the shared calendar right away.

05

Schools list — view only, no creation form

Chapter admin (Casey Marsh) Built & verified

Step 4 — `admin.listSchools`/`getSchool` are read-only; there's no createSchool or editSchool endpoint. This is the closest thing that exists today: a searchable list of the season's already-seeded schools with contact info and performance counts.

06

School profile — what's visible today

Chapter admin (Casey Marsh) Built & verified

Step 5 — The school detail page shows contact info, directions (covers "parking/directions"), performances, and the reviewer team. What's missing: no school-liaison field, and no automated "≥3 reviewers per team" readiness check — a chapter admin has to eyeball the reviewer-team list themselves.

07

Create performances (title, type, school, date, venue, playbill)

Chapter admin Not yet built
Not yet built — no UI exists for this step today

Step 6 — No createPerformance/edit service exists; the `performances` table (with director, playbill URL, scheduled time, venue) is fully seeded, never authored in-app.

08

Assign a show director to each performance

Chapter admin Not yet built
Not yet built — no UI exists for this step today

Step 7 — The doc marks this "partial" because `admin.assignRole`/`removeRole` exist as backend services (server/services/admin.ts), but a repo-wide search turns up zero UI routes that actually call them — no page currently has a role-assignment control wired up. `performances.directorId` is populated by seed only.

09

Activate the season (draft → active)

Chapter admin Not yet built
Not yet built — no UI exists for this step today

Step 8 — Only `admin.setVotingDay` toggles a season-level flag (for voting day); there's no general draft→active status-transition endpoint. The season you see throughout this app is already seeded directly as "active".

10

Author award categories for the season

Chapter admin (Casey Marsh) Built & verified

Step 9 — Built: chapter admins add/edit award categories (type, PLAY/MUSICAL/BOTH, linked rubric, max nominees) and activate/deactivate them here, plus see every rubric already in the season or available as a chapter template to clone in.

11

Edit a rubric's criteria and level descriptions

Chapter admin (Casey Marsh) Built & verified

The rubric editor lets the chapter admin add/remove criteria and rewrite the description shown at each of the 1–10 levels — the same text reviewers see live while scoring (the "visible rubric").

12

Rubric saved

Chapter admin (Casey Marsh) Built & verified

Saving updates the rubric in place — every performance using this rubric immediately shows the revised level description to reviewers.