.do
Development

engineers

Deploy autonomous engineering agents that execute infrastructure tasks, manage deployments, and optimize systems 24/7. Handle DevOps workflows with 90% less manual intervention and full audit trails.

engineers

Engineers.do

Overview

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

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

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

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

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

Quick Start

import { engineers } from 'sdk.do'

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

Access Methods

The engineers primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

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

SDK Documentation

CLI

Command-line interface for terminal operations:

do engineers <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

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

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use engineers primitives with AI assistants via MCP

MCP Documentation

See other primitives in the development category.