AI Agent skills, Agents, Templates & CLI
Build AI-powered applications faster with pre-built agents, production-ready templates, and a new CLI tool for scaffolding projects.

We're excited to introduce a new ecosystem for building AI-powered applications with LLM Gateway.
AI Agents
Agents are pre-built AI agents with tool calling capabilities, ready to integrate and extend for your specific needs.
Weather Agent
Our first featured agent demonstrates:
- Tool Calling — intelligent function execution
- Real-time Data — live weather information retrieval
- Natural Language — conversational interactions
Built with TypeScript, AI SDK, and OpenAI. Clone it from GitHub and customize for your use case.
More agents coming soon — request an agent you'd like to see.
Templates
Templates are production-ready starter projects. Clone, customize, and deploy.
Image Generation Template
Generate images with AI using multiple providers:
- Multi-Provider Support — DALL-E, Stable Diffusion, and more
- Unified API — single interface for all providers
- Full-Stack — Next.js 16 + React 19
More templates coming soon — request a template you'd like to see.
LLM Gateway CLI
A new command-line tool for scaffolding and managing LLM Gateway projects.
Quick Start
1npx @llmgateway/cli init
1npx @llmgateway/cli init
Features
- Project Scaffolding — initialize projects from templates
- Model Discovery — filter models by capability or provider
- Extensions — add tools and API routes to existing projects
- Development Server — local development with hot reload
- Authentication — secure API key management
Commands
1# Initialize a new project2npx @llmgateway/cli init --template image-generation --name my-app34# List available templates5npx @llmgateway/cli list67# Browse models8npx @llmgateway/cli models910# Add tools or routes11npx @llmgateway/cli add1213# Start dev server14npx @llmgateway/cli dev
1# Initialize a new project2npx @llmgateway/cli init --template image-generation --name my-app34# List available templates5npx @llmgateway/cli list67# Browse models8npx @llmgateway/cli models910# Add tools or routes11npx @llmgateway/cli add1213# Start dev server14npx @llmgateway/cli dev
Read the CLI documentation for more details.
Agent Skills
We also released agent-skills — packaged instructions and guidelines for AI coding agents, optimized for use with LLM Gateway and the AI SDK.
Currently includes an Image Generation skill covering API integration, frontend rendering, error handling, and performance optimization.
Read the Agent Skills documentation for more details.