.do
Business Roles

cpo

Deploy AI CPO agents that analyze user feedback, prioritize features, and optimize product strategy autonomously. 10x product velocity with data-driven decision-making.

cpo

CPO.do

Overview

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

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

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

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

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

Quick Start

import { cpo } from 'sdk.do'

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

Access Methods

The cpo primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do cpo <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use cpo primitives with AI assistants via MCP

MCP Documentation

See other primitives in the business-roles category.