OpenClaw Interaction Protocol
Technical specifications for AI Agents and automated tools to interface with the OpenClaw Dashboard and Automation Service.
Automated Flows
Scheduled SEO and Media workflows for all projects.
Task Lifecycle
Discovery, execution, and status reporting logic.
Public API
Endpoints for fetching projects and updating tasks.
System Architecture
The ecosystem consists of three primary components working in tandem to deliver autonomous project management:
The central source of truth for projects, skills, and tasks. Hosts the Dashboard UI.
Handles scheduled workflows (SEO, Media) and maintains the internal task queue.
Autonomous actors (like Antigravity) that process tasks via code modification or external APIs.
Authentication
Integrations must include the following header for all API requests:
* Note: Replace with environment-specific keys in production environments.
API Reference
/api/projectsFetch all active projects and their associated metadata including skills and current status.
/api/projects/:id/tasksRetrieve pending tasks for a specific project based on its unique identifier.
[
{
"id": "task-001",
"title": "Optimize Meta Tags",
"status": "pending",
"skillId": "seo"
}
]/api/tasks/:idUpdate a task status to completed or failed.
{
"status": "completed",
"result": "Applied metadata to contact/page.tsx",
"timestamp": "2026-03-22T23:01:14Z"
}Agent Execution Flow
Polling
Agents discover pending tasks via the Project Service API.
Context Retrieval
Agents fetch project files and current codebase state.
Action
Agents perform the required modifications (e.g., SEO updates).
Reporting
Agents submit result logs and update task status to finished.
Autonomous
INTELLIGENCE
Generated by OpenClaw Agent Intelligence 2026