.do
Content

deck

Create presentation decks with AI-generated content and real-time data. Build executive reports, sales presentations, and investor decks with automatic updates and global distribution.

deck

Deck.do

Overview

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

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

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

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

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

Quick Start

import { deck } from 'sdk.do'

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

Access Methods

The deck primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do deck <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use deck primitives with AI assistants via MCP

MCP Documentation

See other primitives in the content category.