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({ /* ... */ })CLI
Command-line interface for terminal operations:
do deck <command> [options]API
REST/RPC endpoints for HTTP integration:
curl -X POST https://api.do/v1/deck \
-H "Content-Type: application/json" \
-d '{"key":"value"}'MCP
Model Context Protocol for AI assistant integration:
Use deck primitives with AI assistants via MCPRelated Primitives
See other primitives in the content category.
blogs
Manage Blogs at the edge with edge delivery. real-time updates, AI-native workflows, and automatic optimization. Global content delivery in <50ms.
mdx
Build interactive docs with MDX at the edge. Embed React components, live code examples, and semantic metadata. Compile and serve in <50ms globally.