Waymaker Ambassadors

AI Agents for Your Business

Build Once.
Deploy Anywhere.

Create AI agents and apps in any language, any IDE. Deploy to Waymaker with automatic access to your CRM, docs, projects, and team data.

Your code. Your tools. Waymaker's intelligence layer.

The Problem

Your Code Doesn't Know Your Business

You can build an AI agent in Python, TypeScript, or any language. But connecting it to your actual business data? That's where the real work begins.

Developers spend 60% of their time on plumbing: authentication, API integrations, permission checks, data syncing. Your agent never actually learns your business.

Build API connectors to every data source
Manually sync CRM, projects, team structure
Handle auth and permissions yourself
Re-implement context for every new agent
Traditional Lambda
// 200+ lines to do what Ambassadors does in 20

export async function handler(event) {
  // Validate JWT token manually
  const token = event.headers.Authorization;
  const user = await validateToken(token);

  // Fetch CRM data from separate API
  const customer = await fetch(CRM_API, {
    headers: { 'X-API-Key': CRM_KEY }
  });

  // Check permissions manually
  if (!hasPermission(user, 'write:leads')) {
    return { statusCode: 403 };
  }

  // Determine sales territory manually
  const territory = mapCountryToTerritory(form.country);
  const salesRep = await fetchSalesRep(territory);

  // Call OpenAI separately
  const response = await openai.chat.completions.create({
    model: 'gpt-4',
    messages: [...]
  });

  // Insert into separate database
  await db.insert('leads', { ... });

  // Create task in separate PM tool
  await pmApi.createTask({ ... });

  // ...another 150 lines of error handling
}

Two Ways to Use Ambassadors

For Business Leaders & Developers

For Business Leaders

Deploy AI agents that know your business

  • Customer service agents trained on your SOPs and policies
  • Sales assistants that know your CRM and pricing
  • Operations coordinators that monitor your projects
  • No coding required - configure in Commander

"I want AI agents that actually understand my business, not generic chatbots."

For Developers

Build anything, deploy with full context

  • Any language: Python, TypeScript, Go, Rust
  • Any IDE: VS Code, Cursor, Windsurf, vim
  • Instant access to CRM, docs, projects via API
  • Auth, permissions, billing handled automatically

"I want to use my own tools but skip the integration nightmare."

Your Code + AmbassadorContext
// Your agent gets full business context automatically

export default async function myAgent(
  req: Request,
  ctx: AmbassadorContext
) {
  // ctx.tables - Query your CRM, inventory, any table
  const customer = await ctx.tables.findOne(
    'customers', { email: req.email }
  );

  // ctx.docs - Access your SOPs, policies, guides
  const policy = await ctx.docs.search(
    'refund policy', { limit: 3 }
  );

  // ctx.commander - Projects, tasks, team structure
  const assignee = await ctx.commander.getTeamMember({
    role: 'support', available: true
  });

  // ctx.ai - Credit-tracked, context-aware AI
  const response = await ctx.ai.generate({
    prompt: `Help ${customer.name} with: ${req.query}`,
    context: policy
  });

  return { response, assignedTo: assignee };
}

For Developers

The AmbassadorContext API

Every deployed function receives a context object with instant access to your entire Waymaker workspace.

ctx.tables

Query any table. RLS enforced automatically.

ctx.docs

Search and retrieve your documents and SOPs.

ctx.commander

Projects, tasks, teams, goals, calendar.

ctx.ai

GPT-4, Claude - credit-tracked, context-aware.

Intelligent Agents

Deploy Agents That Know Your Business

Every Ambassador has instant access to your docs, CRM, projects, and team structure. Build agents that actually understand your organization.

Customer Service Agent

AI Agent

Train an AI agent on your SOPs built in Waymaker Docs. It answers customer questions with your exact policies, escalates edge cases to the right team member, and logs every interaction.

Sales Intelligence Agent

AI Agent

An agent that knows your CRM, pricing, and sales playbook. It qualifies leads, drafts personalized follow-ups, and routes hot prospects to the right rep based on territory and expertise.

Operations Coordinator

AI Agent

Monitors your project boards and tables. Alerts team leads when tasks are blocked, generates weekly progress summaries, and proactively identifies resource conflicts.

Custom Integration Agent

Edge Function

Connect any external system to your Waymaker workspace. Stripe webhooks update your CRM. Calendar events create tasks. Your agent handles the translation layer.

Developer Experience

Deploy in 30 Seconds

Write your function. Deploy with one command. Done.

1. Initialize

$ waymaker ambassador init

Creates function templates and config file.

2. Develop

$ waymaker ambassador dev

Local server with hot reload. Test with real context.

3. Deploy

$ waymaker ambassador deploy

Global edge deployment in under 10 seconds.

Terminal
$ waymaker ambassador deploy

⏳ Building functions...
  ✓ contact-form.ts → compiled (23.4 KB)
  ✓ webhook-handler.ts → compiled (18.7 KB)
  ✓ daily-report.ts → compiled (31.2 KB)

⏳ Deploying to Waymaker Ambassadors...
  ✓ contact-form → ambassadors.waymakerone.com/acme-corp/contact-form
  ✓ webhook-handler → ambassadors.waymakerone.com/acme-corp/webhook-handler
  ✓ daily-report → ambassadors.waymakerone.com/acme-corp/daily-report (scheduled)

✓ Deployment complete (3.2s)

Comparison

No Competitor Has This

Contextual serverless compute doesn't exist anywhere else.

PlatformServerlessBusiness ContextMulti-tenantData IntegrationAI IntegrationCold Start
AWS Lambda1-3 seconds
Edge Functions< 50ms
Vercel Functions< 100ms
Waymaker AmbassadorsBest< 50ms

Waymaker Ambassadors = Global Edge Performance + Automatic Business Intelligence

Infrastructure

Enterprise-Grade.
Zero Configuration.

Ambassadors run on a global edge network with instant cold starts. Your functions execute close to your users, everywhere in the world.

Waymaker handles the complexity: automatic context injection, authentication, permission enforcement, usage tracking, and billing. You just write business logic.

Global
Edge network
<50ms
Cold start
10s
Deploy time
99.99%
Uptime SLA

What You Get

Global Edge Deployment
Your code runs close to your users
A
AmbassadorContext
Full business intelligence in every function
Your Business Logic
20 lines instead of 200

Pricing

Simple, Usage-Based Pricing

Pay only for what you use. No minimums. No commitments.

$0.50

per 1 million executions

Full AmbassadorContext API

Global edge deployment

Auth & permissions included

What's included in every execution:

  • Access to ctx.tables (your CRM, data)
  • Access to ctx.docs (your SOPs, policies)
  • Access to ctx.commander (projects, teams)
  • Authentication handled automatically
  • Permissions & RLS enforced
  • Usage tracking & analytics

AI credits (ctx.ai) billed separately based on your WaymakerOne plan.

Ready to Deploy Intelligent Agents?

Join the beta. Experience what serverless should have been all along.

Global edge performance • Full business context • Credit-tracked AI