groq-security-basics

Featured

Apply Groq security best practices for API key management and data protection. Use when securing API keys, implementing least privilege access, or auditing Groq security configuration. Trigger with phrases like "groq security", "groq secrets", "secure groq", "groq API key security".

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

# Groq Security Basics ## Overview Security practices for Groq API keys and data flowing through Groq's inference API. Groq uses a single API key type (`gsk_` prefix) with full access -- there are no scoped tokens -- so key management and rotation are critical. ## Prerequisites - Groq account at console.groq.com - Understanding of environment variable management - Secret management solution for production (Vault, AWS Secrets Manager, etc.) ## Key Security Facts - Groq API keys start with `gsk_` and grant full API access - There are no read-only or scoped keys -- every key can call every endpoint - Keys are created at console.groq.com/keys and cannot be viewed after creation - Rate limits are per-organization, not per-key - Groq does not store prompt data for training (see [privacy policy](https://groq.com/privacy-policy/)) ## Instructions ### Step 1: Secure Key Storage by Environment ```bash # Development: .env file (NEVER commit) echo "GROQ_API_KEY=gsk_dev_key_here" > .env.local # .gitignore (mandatory) echo -e ".env\n.env.local\n.env.*.local" >> .gitignore # Production: use platform secret managers # Vercel vercel env add GROQ_API_KEY production # AWS aws secretsmanager create-secret --name groq-api-key --secret-string "gsk_..." # GCP echo -n "gsk_..." | gcloud secrets create groq-api-key --data-file=- # GitHub Actions gh secret set GROQ_API_KEY --body "gsk_..." ``` ### Step 2: Key Rotation Procedure ```bash set -euo pipefail # 1. Create new key in console.groq.c...

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

groq-enterprise-rbac

Configure Groq organization management, API key scoping, spending controls, and team access patterns. Trigger with phrases like "groq organization", "groq RBAC", "groq enterprise", "groq team access", "groq spending limits", "groq multi-team".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-security-basics

Apply Cohere security best practices for API key management and access control. Use when securing API keys, implementing key rotation, or auditing Cohere security configuration. Trigger with phrases like "cohere security", "cohere secrets", "secure cohere", "cohere API key security", "cohere key rotation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-install-auth

Install and configure Groq SDK authentication for TypeScript or Python. Use when setting up a new Groq integration, configuring API keys, or initializing the groq-sdk in your project. Trigger with phrases like "install groq", "setup groq", "groq auth", "configure groq API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-security-basics

Apply Ideogram security best practices for API key management and access control. Use when securing API keys, implementing key rotation, or auditing Ideogram security configuration. Trigger with phrases like "ideogram security", "ideogram secrets", "secure ideogram", "ideogram API key security", "ideogram key rotation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-security-basics

Apply Klaviyo security best practices for API key management and access control. Use when securing API keys, configuring OAuth scopes, implementing webhook signature verification, or auditing Klaviyo security configuration. Trigger with phrases like "klaviyo security", "klaviyo secrets", "secure klaviyo", "klaviyo API key security", "klaviyo OAuth".

2,266 Updated today
jeremylongshore