LLM Providers
storybook-to-skills-md supports four LLM providers: OpenAI, Anthropic, Google AI, and Groq.
OpenAI
Section titled “OpenAI”API Reference: openai
Get your API key from OpenAI Platform.
--provider openai --model <model> --api-key sk-...Anthropic
Section titled “Anthropic”API Reference: anthropic
Get your API key from Anthropic Console.
--provider anthropic --model <model> --api-key sk-ant-...Google AI
Section titled “Google AI”API Reference: google
Get your API key from Google AI Studio.
--provider google --model <model> --api-key ...API Reference: groq
Get your API key from Groq Console.
--provider groq --model <model> --api-key gsk-...Groq provides high-performance inference with models like llama-3.3-70b-versatile, deepseek-r1-distill-llama-70b, and third-party models like moonshotai/kimi-k2-instruct-0905.
API Key Security
Section titled “API Key Security”Never commit API keys to version control. Use environment variables:
export OPENAI_API_KEY=sk-...export ANTHROPIC_API_KEY=sk-ant-...export GOOGLE_API_KEY=...export GROQ_API_KEY=gsk-...Or use CI secrets (GitHub Actions → Settings → Secrets and variables → Actions).