Business
orgs
Join developers building on .do. Open source SDK, generous free tier, startup credits. Build the future of AI-native software with collaborative tools and community support.
orgs
Orgs.do
Overview
The orgs 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 orgs operations follow the semantic $.Orgs.verb.Object pattern:
import { $, orgs } from 'sdk.do'
// Create resources
await $.Orgs.create.Resource({ /* config */ })
// Query data
await $.Orgs.get.Data({ /* params */ })
// Update state
await $.Orgs.update.Status({ /* changes */ })Quick Start
import { orgs } from 'sdk.do'
// Initialize and use the primitive
const result = await orgs.operation({
// configuration parameters
})Access Methods
The orgs primitive is accessible through multiple interfaces:
SDK
TypeScript/JavaScript library for programmatic access:
import { orgs } from 'sdk.do'
await orgs.method({ /* ... */ })CLI
Command-line interface for terminal operations:
do orgs <command> [options]API
REST/RPC endpoints for HTTP integration:
curl -X POST https://api.do/v1/orgs \
-H "Content-Type: application/json" \
-d '{"key":"value"}'MCP
Model Context Protocol for AI assistant integration:
Use orgs primitives with AI assistants via MCPRelated Primitives
See other primitives in the business category.