How-to Guides
Audience score template
OratorIA / Vokaly: aggregate reactions into a scorecard (PH-123).
Live audience scorecard
Use stream reactions plus the server rollup endpoint:
GET /rooms/:roomId/audience-score?windowMinutes=15Or tally client-side on the last N messages:
const score = messages
.slice(-20)
.reduce((sum, m) => sum + (m.reactions?.["👍"] ?? 0), 0);For stream rooms, wire Stream → Reactions webhooks to a room server_event and let an agent post periodic score summaries to the channel.
Pair with Agent room broadcast.