RADZOR
ComponentsRecipesDocsContributeGitHub
Get Started
RADZOR

The universal component registry for LLM-driven development. Empowering developers to build better apps, faster.

Product
  • Components
  • Standard
Resources
  • Documentation
  • API Reference
  • AI Agent Integration
  • Pipeline Guide
  • MCP Server
Community
  • GitHub
  • X / Twitter
  • Discord

© 2026 Radzor Registry. All rights reserved.

Cookbook

AI Agent Workflows
& Pipelines

One component is useful. An assembly is powerful. These recipes show how to wire multiple manifests together to build complete features — ones your LLM can assemble from a single instruction.

Voice Bot

Intermediate

A real-time voice assistant: captures the microphone, transcribes speech, generates a response with an LLM, and synthesizes it back to audio. Four manifests, zero glue code.

AudioCapture→SpeechToText→LLMCompletion→TextToSpeech
aiaudiorealtime

Payment Flow

Beginner

Full Stripe checkout with email confirmation: creates the payment session, listens to the webhook, and automatically sends a receipt.

StripeCheckout→WebhookReceiver→EmailSend
paymentemailautomation

RAG Pipeline

Intermediate

Plug-and-play Retrieval-Augmented Generation: embed text chunks in-memory, search by semantic similarity, and generate a context-aware response with an LLM.

EmbeddingsStore→LLMCompletion
aidatasearch

Auth + Rate Limit

Beginner

OAuth authentication with persistent sessions and abuse protection. The essential trio for any public-facing API.

AuthOAuth→SessionManager→RateLimiter
authsecuritynetworking

Multi-Channel Alerts

Intermediate

Broadcast notifications across Slack, email, and mobile push from a single event bus. Add or remove channels without touching business logic.

EventBus→SlackBot→EmailSend→PushNotification
messagingautomationnotifications

Scrape → CSV

Intermediate

Scrape a website, extract structured data with an LLM, and export the results as a clean CSV. A three-step data pipeline with no manual parsing.

WebScraper→StructuredOutput→CsvExport
dataaiautomation

AI Agent with Tools

Advanced

An autonomous AI agent that can search the web, query a database, and send Slack messages — all through LLM function calling. Define tools once, let the model decide when to use them.

FunctionCalling→WebScraper→EmbeddingsStore→SlackBot
aiautomationmessaging

SaaS Billing Pipeline

Intermediate

End-to-end subscription billing: manage recurring payments, generate PDF invoices, render branded email templates, and send them automatically. Event-driven — invoice is generated and emailed on every successful payment.

SubscriptionBilling→InvoiceGenerator→EmailTemplate→EmailSend
paymentemailautomation

Monitoring & Alerts

Advanced

Production monitoring stack: health checks on dependencies, uptime monitoring on public endpoints, centralized error tracking — all funneled through a notification hub that fans out to Slack, email, and push.

HealthChecker→UptimeMonitor→ErrorTracker→NotificationHub
monitoringmessagingdevops

AI Content Pipeline

Advanced

Ingest RSS feeds, classify articles by topic with AI, render prompts from templates, generate summaries with an LLM, and validate outputs with guardrails. A full content processing chain.

RssFeed→AiClassifier→PromptTemplate→LLMCompletion→Guardrails
aidataautomation

Signup & Access Control

Intermediate

Complete authentication pipeline: SAML SSO login, JWT token issuance, persistent sessions, and role-based access control. One flow from login to permission check.

SamlAuth→JwtAuth→SessionManager→Rbac
authsecurity

Media Processing

Intermediate

Transcode uploaded videos to web-friendly formats, upload to S3, and notify the team via a hub. Event-driven — each step triggers the next automatically.

VideoTranscode→S3Upload→NotificationHub
mediastorageautomation

Analytics Pipeline

Intermediate

Track user events, segment users by behavior, run A/B tests with variant assignment, analyze conversion funnels, and export reports to CSV. A complete product analytics stack.

EventTracker→UserSegmentation→ABTest→FunnelReporter→CsvExport
analyticsdataproduct

Chatbot with Escalation

Advanced

A conversational chatbot that follows scripted flows, escalates to an LLM when stuck, validates all AI responses with guardrails, and notifies support on Slack when it can't resolve the issue.

ChatbotFlow→LLMCompletion→Guardrails→SlackBot
chataimessaging

Have a recipe to share?

Share your component assembly on Discord and we'll add it to the cookbook.

Submit a recipe