.do
SdkServices

Services

Service integrations and automation tools for workflows, queues, and RPC

The SDK provides comprehensive service integrations for building workflows, managing queues, and implementing RPC communication.

Available Services

Core Services

  • Agents - AI agent orchestration
  • Analytics - Event tracking and analytics
  • APIs - API management and routing
  • Functions - Serverless function execution
  • Queue - Task queue management
  • RPC - Remote procedure calls
  • Webhooks - Webhook handling
  • Workflows - Workflow automation

Automation

Communication

Quick Start

import { $ } from 'sdk.do'

// Queue tasks
await $.Task.enqueue({
  name: 'process-order',
  data: { orderId: '123' }
})

// Call RPC endpoint
const result = await $.Service.call('processPayment', {
  amount: 99.99
})

// Trigger workflow
await $.Workflow.trigger('onboarding', {
  userId: 'user-123'
})