AI SummaryMinimal working example demonstrating core Groq functionality. Create a new file for your hello world example. Proceed to for development workflow setup.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "groq-hello-world" skill in my project. Please run this command in my terminal: # Install skill into your project (2 files) mkdir -p .claude/skills/groq-hello-world-helixdevelopment-helixagent && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/groq-hello-world-helixdevelopment-helixagent/SKILL.md "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/examples/groq-hello-world-helixdevelopment-helixagent/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/groq-hello-world-helixdevelopment-helixagent/metadata.json "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/examples/groq-hello-world-helixdevelopment-helixagent/metadata.json" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Create a minimal working Groq example. Use when starting a new Groq integration, testing your setup, or learning basic Groq API patterns. Trigger with phrases like "groq hello world", "groq example", "groq quick start", "simple groq code".
Overview
Minimal working example demonstrating core Groq functionality.
Prerequisites
• Completed groq-install-auth setup • Valid API credentials configured • Development environment ready
Step 1: Create Entry File
Create a new file for your hello world example.
Step 2: Import and Initialize Client
`typescript import { GroqClient } from '@groq/sdk'; const client = new GroqClient({ apiKey: process.env.GROQ_API_KEY, }); `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster