.do
Business Roles

sdr

AI-powered SDR agents that research leads, personalize outreach, and book meetings automatically. 10x pipeline with 90% less manual work using intelligent sales automation.

sdr

SDR.do

Overview

The sdr primitive is part of the .do platform's semantic API system. It follows the $.Subject.verb.Object pattern for consistent, intuitive interactions across SDK, CLI, API, and MCP interfaces.

Semantic Pattern

All sdr operations follow the semantic $.Sdr.verb.Object pattern:

import { $, sdr } from 'sdk.do'

// Create resources
await $.Sdr.create.Resource({ /* config */ })

// Query data
await $.Sdr.get.Data({ /* params */ })

// Update state
await $.Sdr.update.Status({ /* changes */ })

Quick Start

import { sdr } from 'sdk.do'

// Initialize and use the primitive
const result = await sdr.operation({
  // configuration parameters
})

Access Methods

The sdr primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

import { sdr } from 'sdk.do'
await sdr.method({ /* ... */ })

SDK Documentation

CLI

Command-line interface for terminal operations:

do sdr <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

curl -X POST https://api.do/v1/sdr \
  -H "Content-Type: application/json" \
  -d '{"key":"value"}'

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use sdr primitives with AI assistants via MCP

MCP Documentation

See other primitives in the business-roles category.