.do
Business Roles

cmo

Deploy AI CMO agents that manage campaigns, optimize ad spend, and drive growth autonomously. 10x marketing ROI with 90% less manual work and data-driven decisions.

cmo

CMO.do

Overview

The cmo 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 cmo operations follow the semantic $.Cmo.verb.Object pattern:

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

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

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

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

Quick Start

import { cmo } from 'sdk.do'

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

Access Methods

The cmo primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do cmo <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use cmo primitives with AI assistants via MCP

MCP Documentation

See other primitives in the business-roles category.