Monitoring
okr
Monitor OKR progress in real-time with AI-powered insights and automated tracking. Custom dashboards, predictive analytics, and automatic updates from your data sources.
okr
Okr.do
Overview
The okr 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 okr operations follow the semantic $.Okr.verb.Object pattern:
import { $, okr } from 'sdk.do'
// Create resources
await $.Okr.create.Resource({ /* config */ })
// Query data
await $.Okr.get.Data({ /* params */ })
// Update state
await $.Okr.update.Status({ /* changes */ })Quick Start
import { okr } from 'sdk.do'
// Initialize and use the primitive
const result = await okr.operation({
// configuration parameters
})Access Methods
The okr primitive is accessible through multiple interfaces:
SDK
TypeScript/JavaScript library for programmatic access:
import { okr } from 'sdk.do'
await okr.method({ /* ... */ })CLI
Command-line interface for terminal operations:
do okr <command> [options]API
REST/RPC endpoints for HTTP integration:
curl -X POST https://api.do/v1/okr \
-H "Content-Type: application/json" \
-d '{"key":"value"}'MCP
Model Context Protocol for AI assistant integration:
Use okr primitives with AI assistants via MCPRelated Primitives
See other primitives in the monitoring category.