.do
Development

programmers

Deploy autonomous AI programmer agents that write, review, and deploy code. Automate repetitive development tasks with 90% less manual work and full TypeScript type safety.

programmers

Programmers.do

Overview

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

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

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

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

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

Quick Start

import { programmers } from 'sdk.do'

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

Access Methods

The programmers primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do programmers <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use programmers primitives with AI assistants via MCP

MCP Documentation

See other primitives in the development category.