openclaw2
v2026.2.28
Published
OpenClaw — open-source agent orchestration plugin for CMDOP
Downloads
435
Maintainers
Readme
OpenClaw — Extensible Open-Source AI Agent Orchestration for Node.js

OpenClaw is an open-source agent orchestration framework for Node.js. Construct powerful AI workflows using our AI plugin system. OpenClaw provides an extensible automation framework, offering a robust alternative to LangChain, CrewAI, AutoGen, and Semantic Kernel. Integrate diverse AI models and tools rapidly.
Features
- Orchestrate complex AI workflows with our open-source agent orchestration.
- Extend agent capabilities using the flexible AI plugin system for Node.js.
- Automate tasks by creating custom agents and toolchains.
- Manage agent state and context across multiple interactions.
- Integrate with various LLMs and data sources through plugins.
Use Cases
- Build and register custom plugins for agent behavior
- Chain AI tasks in sequential pipelines with context passing
- Extend CMDOP with community-built orchestration logic
Get Started
npm install openclaw2Quick Start
import { OpenClaw } from 'openclaw2';
const client = OpenClaw.remote({ apiKey: 'cmdop_live_xxx' });
client.use({
name: 'logger',
install(c) { console.log('Plugin installed on', c); },
});
const [summary, plan, report] = await client.pipeline([
'Summarize the current state of the server',
'Create an optimization plan based on the summary',
'Write a brief report of the plan',
]);
console.log(report);