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.

LLM Gateway agents and templates showcase

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 soonrequest 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 soonrequest 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

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 project
2npx @llmgateway/cli init --template image-generation --name my-app
3
4# List available templates
5npx @llmgateway/cli list
6
7# Browse models
8npx @llmgateway/cli models
9
10# Add tools or routes
11npx @llmgateway/cli add
12
13# Start dev server
14npx @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.