Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Josh-E-S/awesome-pexip-skills --skill participantsgit clone --depth 1 https://github.com/Josh-E-S/awesome-pexip-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/josh-e-s/awesome-pexip-skills/participants)<a href="https://agentmods.dev/skills/josh-e-s/awesome-pexip-skills/participants"><img src="https://agentmods.dev/badge/skills/josh-e-s/awesome-pexip-skills/participants/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/josh-e-s/awesome-pexip-skills/participants"><img src="https://agentmods.dev/badge/skills/josh-e-s/awesome-pexip-skills/participants.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00094 | $0.02887 |
| Opus 5 | $0.00047 | $0.01443 |
| Sonnet 5 | $0.00019 | $0.00577 |
| Haiku 4.5 | $0.00009 | $0.00289 |
Grade A, and why
participants scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 264 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pexip participants
The participants list seems simple — show users in the meeting — but webapp3's implementation is the most architecturally dense file in the project. Reasons:
- A participant has 5+ orthogonal axes (host/guest, in-meeting/external/lobby/transferring, raised-hand, can-fecc, supports-direct-chat)
- The UI needs filtered, sorted, searched, and cached projections of these
- Breakout rooms add another dimension (every group has a breakout variant)
- Participant events fire in batches during reconnect (server replays everyone)
- Cache invalidation has dependency chains (changing host/guest invalidates "in-meeting" filter)
Webapp3 solves all of this with GroupKey (a 15-value enum) and a reverse-dependency cache invalidation graph. Use it. Don't roll your own — you'll spend a week getting the edge cases right.
The 15 GroupKey values
export enum GroupKey {
None, // Everyone
Breakout, // Has media — eligible for breakout assignment
DirectChat, // Capability flag
FECC, // Capability flag (far-end camera control)
Host, // Role — only when in-meeting
Guest, // Role — only when in-meeting
RaisedHand,
External, // Service-type connections (recordings, gateway)
InMeeting, // The active roster
Transferring, // In transit between conferences/rooms
WaitingInLobby, // Pending admission
BreakoutRaisedHand,
BreakoutExternal,
BreakoutInMeeting,
BreakoutWaitingInLobby,
}
A single participant typically belongs to multiple groups (e.g., [None, Breakout, DirectChat, InMeeting, Host, FECC]). The assignGroups helper in createParticipants.ts derives the full set from a Participant object plus a breakoutRoom boolean.
Quick start: wire it up
import {createInMeetingParticipants, GroupKey} from './utils/createParticipants';
import {participantActivityBatchedSignal} from './signals/Participant.signals';
const participants = createInMeetingParticipants(
infinityClient, // exposes admit/kick/mute/setRole
() => mediaService.media, // for self-mute (can't use clientApis on self)
infinityClientSignals, // onParticipants, onParticipantJoined, etc.
participantActivityBatchedSignal, // emits join/leave/update activities
{ // optional: prior state from a transfer
participants: previousParticipantsMap,
activities: previousActivitiesArray,
},
);
// Read filtered participants
const hosts = participants.get({filterBy: GroupKey.Host});
const handsRaised = participants.get({filterBy: GroupKey.RaisedHand});
const lobby = participants.get({filterBy: GroupKey.WaitingInLobby});
const everyone = participants.get({filterBy: GroupKey.InMeeting});
// Search
const filteredHosts = participants.get({
filterBy: GroupKey.InMeeting,
searchQuery: 'alice',
});
// Cleanup (call on call end / transfer)
participants.release();
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 264 lines · 94 tokens per session scan A 2dd97ae72205
participants is a skill published in the GitHub repository Josh-E-S/awesome-pexip-skills (1 stars, last pushed 3mo ago), licensed MIT. It adds 94 tokens to every session and 2,887 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
repro-admin
Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
prototype-web
A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.
menu-transitions-rtl
Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…