groq-enterprise-rbac
Installation
SKILL.md
Groq Enterprise RBAC
Overview
Manage access to Groq's ultra-fast LPU inference API through API key scoping and organization-level controls. Groq's per-token pricing is extremely low (orders of magnitude cheaper than GPU-based providers), but its speed makes runaway usage easy.
Prerequisites
- Groq Cloud account at console.groq.com
- Organization created with billing configured
- At least one API key with organization admin scope
Instructions
Step 1: Create Rate-Limited API Keys per Team
set -euo pipefail
# Key for the chatbot team (high RPM, small model)
curl -X POST https://api.groq.com/openai/v1/api-keys \
-H "Authorization: Bearer $GROQ_ADMIN_KEY" \
-d '{
"name": "chatbot-prod",
Related skills