Skip to main content
Twelve production patterns show which integration model fits each recipe scenario.
The user finds a scenario below and copies the recommended model plus implementation steps.

Quick Start

1

Simple Usage

Ask the mapper which pattern fits your scenario.
2

With Configuration

Run the matched recipe from the CLI once you pick a pattern.

How It Works


1. SaaS AI Support Reply Drafts

What It Is

Automatically generate draft replies for customer support tickets using AI, allowing agents to review and send. Model 3 (HTTP Sidecar) or Model 4 (Remote Runner)
  • HTTP API integrates with existing ticketing systems
  • Supports multiple concurrent requests
  • Easy to add auth for multi-tenant SaaS

Implementation

1

Create Recipe

2

Start Server

3

Integrate with Ticketing System

Security Considerations

  • PII: Customer messages may contain PII; ensure data handling compliance
  • Output review: Always have human review before sending
  • Rate limiting: Prevent abuse with request limits

Example Payload


2. Meeting Notes → Action Items

What It Is

Extract action items, decisions, and follow-ups from meeting transcripts or notes. Model 2 (CLI) or Model 5 (Event-Driven)
  • CLI for ad-hoc processing
  • Event-driven for automated pipeline from recording service

Implementation

1

Process via CLI

2

Automated Pipeline

Security Considerations

  • Confidentiality: Meeting content may be sensitive
  • Access control: Restrict who can process which meetings
  • Retention: Define data retention policies

3. SQL Analyst Assistant

What It Is

Natural language to SQL query generation with schema awareness and result explanation. Model 1 (Embedded SDK)
  • Direct integration with data tools
  • Low latency for interactive queries
  • Access to database connections

Implementation

1

Define Recipe with Schema

Security Considerations

  • SQL injection: Validate generated queries before execution
  • Data access: Ensure recipe only sees allowed schemas
  • Audit logging: Log all generated queries

4. Code Review Assistant

What It Is

Automated code review providing feedback on style, bugs, security, and best practices. Model 6 (Plugin Mode) or Model 2 (CLI)
  • IDE plugin for real-time feedback
  • CLI for CI/CD integration

Implementation

1

CI/CD Integration

2

IDE Plugin


5. Marketing Content Generator

What It Is

Generate marketing copy, social posts, email campaigns, and ad variations. Model 3 (HTTP Sidecar)
  • Integrates with marketing platforms
  • Supports batch generation
  • Easy A/B testing

Implementation

1

Generate Content

Security Considerations

  • Brand safety: Review generated content for brand alignment
  • Compliance: Ensure claims are accurate and compliant

6. Customer Onboarding Concierge

What It Is

Interactive AI assistant guiding new customers through setup, configuration, and first steps. Model 4 (Remote Runner) with streaming
  • Real-time conversational interface
  • Multi-tenant support
  • Session state management

Implementation

1

Stream Responses


7. Fraud Signal Summarizer

What It Is

Analyze transaction patterns and summarize potential fraud indicators for human review. Model 5 (Event-Driven)
  • Process transactions asynchronously
  • Handle high volume
  • Integrate with alerting systems

Implementation

1

Event Handler

Security Considerations

  • Data sensitivity: Transaction data is highly sensitive
  • False positives: Balance detection vs. customer friction
  • Audit trail: Log all decisions for compliance

8. Document Ingestion + Q&A

What It Is

Ingest documents, build knowledge base, and answer questions with citations. Model 1 (Embedded SDK) or Model 3 (HTTP Sidecar)
  • SDK for direct integration with document pipelines
  • HTTP for multi-service architecture

Implementation

1

Ingest Documents

2

Query Knowledge Base


9. Sales Call Coaching

What It Is

Analyze sales call recordings/transcripts and provide coaching feedback. Model 5 (Event-Driven)
  • Process calls asynchronously after completion
  • Integrate with call recording systems
  • Batch processing for historical analysis

Implementation

1

Process Call


10. Data Migration Assistant

What It Is

Assist with data transformation, mapping, and validation during migrations. Model 2 (CLI)
  • Scriptable for migration pipelines
  • Batch processing support
  • Easy to integrate with ETL tools

Implementation

1

Generate Mapping


11. Multi-Agent Router

What It Is

Intelligent routing of requests to specialized agents based on intent and context. Model 1 (Embedded SDK) or Model 3 (HTTP Sidecar)
  • Low latency routing decisions
  • Access to multiple downstream agents

Implementation

1

Router Recipe


12. Localization Pipeline

What It Is

Translate and localize content while preserving context, tone, and formatting. Model 5 (Event-Driven) or Model 2 (CLI)
  • Batch processing for content updates
  • Event-driven for real-time localization

Implementation

1

Localize Content

Security Considerations

  • Cultural sensitivity: Review translations for cultural appropriateness
  • Legal compliance: Ensure translations meet local regulations

Testing with Real API Keys

For all use cases, test with real API keys:

Best Practices

Each use case names a recommended model and a schema. Copy the nearest match and adapt inputs rather than designing from scratch.
Support drafts, sales coaching, and onboarding replies should be reviewed before sending. Recipes generate; people approve.
Fraud summaries and localization pipelines fit event-driven processing better than synchronous HTTP calls.
A SQL assistant needs database read access; a code reviewer does not. Set tools.allow/tools.deny per recipe to match the scenario.

Integration Models

Detailed setup for each pattern

Decision Guide

Choose the model per scenario