.do
Development

devs

Join 10,000+ developers building on .do platform. Access open source SDKs, collaborative tools, generous free tier, and connect with the AI-native developer community.

devs

Devs.do

Overview

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

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

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

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

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

Quick Start

import { devs } from 'sdk.do'

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

Access Methods

The devs primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do devs <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use devs primitives with AI assistants via MCP

MCP Documentation

See other primitives in the development category.