firecrawl-enterprise-rbac

Featured

Configure Firecrawl team access control with per-key credit limits and domain restrictions. Use when managing multiple API keys per team, implementing credit budgets per consumer, or controlling which domains each team can scrape. Trigger with phrases like "firecrawl RBAC", "firecrawl teams", "firecrawl enterprise", "firecrawl access control", "firecrawl permissions".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Firecrawl Enterprise RBAC ## Overview Control access to Firecrawl scraping resources through API key management, domain allowlists, and credit budgets per team. Firecrawl's credit-based pricing means access control is primarily about limiting credit consumption and restricting scrape targets per consumer. ## Prerequisites - Firecrawl Team or Scale plan - Dashboard access at [firecrawl.dev/app](https://firecrawl.dev/app) - Understanding of credit-per-page billing ## Instructions ### Step 1: Separate API Keys per Consumer ```bash set -euo pipefail # Create dedicated keys at firecrawl.dev/app for each team/service # Content indexing pipeline — high volume # Key: fc-content-indexer-prod (monthly credit limit: 50,000) # Sales team prospect research — scrape only # Key: fc-sales-research (monthly credit limit: 5,000) # Dev/testing — minimal # Key: fc-dev-testing (monthly credit limit: 500) ``` ### Step 2: Gateway Proxy with Domain Allowlists ```typescript import FirecrawlApp from "@mendable/firecrawl-js"; const TEAM_POLICIES: Record<string, { apiKey: string; allowedDomains: string[]; maxPagesPerCrawl: number; dailyCreditLimit: number; }> = { "content-team": { apiKey: process.env.FIRECRAWL_KEY_CONTENT!, allowedDomains: ["docs.*", "*.readthedocs.io", "medium.com"], maxPagesPerCrawl: 200, dailyCreditLimit: 2000, }, "sales-team": { apiKey: process.env.FIRECRAWL_KEY_SALES!, allowedDomains: ["linkedin.com", "crunchbase.com", "g2.com"], ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

firecrawl-cost-tuning

Optimize Firecrawl costs through crawl limits, format selection, caching, and credit monitoring. Use when analyzing Firecrawl billing, reducing API costs, or implementing credit budget alerts. Trigger with phrases like "firecrawl cost", "firecrawl billing", "reduce firecrawl costs", "firecrawl pricing", "firecrawl credits", "firecrawl budget".

2,266 Updated today
jeremylongshore
AI & Automation Featured

firecrawl-multi-env-setup

Configure Firecrawl across development, staging, and production environments. Use when setting up multi-environment scraping pipelines, managing credit budgets per env, or configuring self-hosted Firecrawl for development. Trigger with phrases like "firecrawl environments", "firecrawl staging", "firecrawl dev prod", "firecrawl environment setup", "firecrawl config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

firecrawl-policy-guardrails

Implement Firecrawl scraping policy enforcement: domain blocklists, credit budgets, content filtering, and robots.txt compliance guardrails. Use when setting up scraping policies, enforcing crawl limits, or preventing accidental scraping of prohibited domains. Trigger with phrases like "firecrawl policy", "firecrawl guardrails", "firecrawl domain blocklist", "firecrawl scraping rules", "firecrawl compliance".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-enterprise-rbac

Configure Cohere enterprise API key management, role-based access, and org controls. Use when implementing multi-team API key management, per-team usage limits, or setting up organization-level controls for Cohere. Trigger with phrases like "cohere enterprise", "cohere RBAC", "cohere team keys", "cohere org management", "cohere access control".

2,266 Updated today
jeremylongshore
AI & Automation Featured

firecrawl-common-errors

Diagnose and fix Firecrawl common errors and API response codes. Use when encountering Firecrawl errors, debugging failed scrapes, or troubleshooting crawl job issues. Trigger with phrases like "firecrawl error", "fix firecrawl", "firecrawl not working", "debug firecrawl", "firecrawl 429", "firecrawl 402".

2,266 Updated today
jeremylongshore