.do Domains
Complete directory of .do domain primitives organized by category
.do Domains
This page provides a comprehensive directory of all available .do domain primitives, organized by functional category.
Overview
The .do platform provides over 900+ domain primitives across multiple categories. Each primitive is a complete, production-ready service accessible through SDK, CLI, API, and MCP interfaces.
Domain Categories
Browse all primitives by category:
- AI & Intelligence - AI/ML capabilities and experimentation
- Automation - Automated workflows and RPA
- Business - Business operations and organization
- Business Roles - Executive and functional role primitives
- Content - Content creation and management
- Core Concepts - Fundamental platform concepts
- Data Storage - Data persistence and state management
- Development - Developer tools and workflows
- Execution - Runtime execution models and orchestration
- Infrastructure - Infrastructure and deployment primitives
- Integration - External connections and data collection
- Media - Media processing and generation
- Monitoring - Observability and analytics
- Utilities - Helper functions and tools
Access Methods
Every primitive is accessible through four consistent interfaces:
SDK (TypeScript/JavaScript)
import { $ } from 'sdk.do'
await $.Business.create({ name: 'Acme Inc' })CLI (Command Line)
do business create --name "Acme Inc"API (REST/RPC)
curl -X POST https://api.do/v1/business \
-d '{"name": "Acme Inc"}'MCP (Model Context Protocol)
Create a new business named Acme IncKey Features
- Production Ready - All primitives are battle-tested and production-ready
- Fully Typed - Complete TypeScript types for all primitives
- Event-Driven - Built-in event system for reactive workflows
- Composable - Combine primitives to build complex applications
- Observable - Built-in monitoring and tracing
Getting Started
- Browse Categories - Find the primitive you need
- Read Documentation - Click any primitive to see full docs
- Try the SDK - Install with
pnpm add sdk.do - Build Your App - Compose primitives into workflows