Automation
rpa
Automate web tasks with AI-powered RPA agents. Handle form filling, data extraction, and workflow automation with computer vision and natural language understanding at scale.
rpa
Rpa.do
Overview
The rpa 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 rpa operations follow the semantic $.Rpa.verb.Object pattern:
import { $, rpa } from 'sdk.do'
// Create resources
await $.Rpa.create.Resource({ /* config */ })
// Query data
await $.Rpa.get.Data({ /* params */ })
// Update state
await $.Rpa.update.Status({ /* changes */ })Quick Start
import { rpa } from 'sdk.do'
// Initialize and use the primitive
const result = await rpa.operation({
// configuration parameters
})Access Methods
The rpa primitive is accessible through multiple interfaces:
SDK
TypeScript/JavaScript library for programmatic access:
import { rpa } from 'sdk.do'
await rpa.method({ /* ... */ })CLI
Command-line interface for terminal operations:
do rpa <command> [options]API
REST/RPC endpoints for HTTP integration:
curl -X POST https://api.do/v1/rpa \
-H "Content-Type: application/json" \
-d '{"key":"value"}'MCP
Model Context Protocol for AI assistant integration:
Use rpa primitives with AI assistants via MCPRelated Primitives
See other primitives in the automation category.