Configure Fireflies.ai enterprise SSO, role-based access control, and organization management. Use when implementing SSO integration, configuring role-based permissions, or setting up organization-level controls for Fireflies.ai. Trigger with phrases like "fireflies SSO", "fireflies RBAC", "fireflies enterprise", "fireflies roles", "fireflies permissions", "fireflies SAML".
From fireflies-packnpx claudepluginhub nickloveinvesting/nick-love-plugins --plugin fireflies-packThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Manage who can record, view, and share meeting transcripts in Fireflies.ai. Fireflies uses per-seat licensing with three workspace roles: Admin, Member, and Guest.
Navigate to Fireflies Settings > Privacy:
# Recommended enterprise privacy configuration
transcript_visibility: "attendees_only" # Only meeting participants see transcript
auto_record: "internal_only" # Only record meetings with internal participants
external_sharing: "admin_approval" # External links require admin approval
download_permissions: "admins_only" # Only admins can download raw audio
data_retention: "365_days" # Auto-delete transcripts after 1 year
set -euo pipefail
# Add a new member
curl -X POST https://api.fireflies.ai/graphql \
-H "Authorization: Bearer $FIREFLIES_API_KEY" \
-d '{"query": "mutation { addTeamMember(email: \"new@company.com\", role: MEMBER) { id email role } }"}'
# List all team members and their roles
curl -X POST https://api.fireflies.ai/graphql \
-H "Authorization: Bearer $FIREFLIES_API_KEY" \
-d '{"query": "{ teamMembers { id email role last_active } }"}'
Organize transcripts into channels (e.g., Sales, Engineering, Leadership) so team members only see transcripts relevant to their department:
set -euo pipefail
# Create a private channel for leadership meetings
curl -X POST https://api.fireflies.ai/graphql \
-H "Authorization: Bearer $FIREFLIES_API_KEY" \
-d '{"query": "mutation { createChannel(name: \"Leadership\", visibility: PRIVATE, memberIds: [\"id1\", \"id2\"]) { id } }"}'
In Fireflies Admin > Security > SSO, enable SAML 2.0 and map IdP groups:
Engineering -> Member (auto-record internal meetings)Sales -> Member (auto-record all meetings including external)IT-Admins -> Admin (full workspace control)Enable "Enforce SSO" to require SSO for all workspace members.
set -euo pipefail
# Query who accessed a specific transcript
curl -X POST https://api.fireflies.ai/graphql \
-H "Authorization: Bearer $FIREFLIES_API_KEY" \
-d '{"query": "{ transcript(id: \"tr_abc123\") { title views { user_email accessed_at } shares { shared_with shared_by } } }"}'
| Issue | Cause | Solution |
|---|---|---|
| Bot not joining meetings | Calendar not connected | Re-authorize calendar integration |
| Transcript not visible | Privacy set to organizer-only | Change to attendees_only or add to channel |
| Seat limit exceeded | Too many active members | Remove inactive members or upgrade plan |
| SSO login fails | SAML assertion clock skew | Sync server clocks, allow 5-min skew tolerance |
Basic usage: Apply fireflies enterprise rbac to a standard project setup with default configuration options.
Advanced scenario: Customize fireflies enterprise rbac for production environments with multiple constraints and team-specific requirements.