clawskills
v2026.3.11
Published
ClawSkills — agent skill toolkit and runner plugin for CMDOP
Maintainers
Readme

ClawSkills — AI Agent Skill Toolkit & Runner for Node.js

ClawSkills delivers a robust agent skill runner for Node.js. Build agent task pipelines using AI skill chaining from the OpenClaw skill toolkit. Execute MCP tools with our runner. A streamlined alternative to OpenClaw, ClawHub, MCP, LangChain Tools, and AutoGPT Plugins, it simplifies agent development.
Features
- Orchestrate complex agent task pipelines with AI skill chaining.
- Execute OpenClaw skill toolkit components directly within Node.js.
- Integrate MCP tool runner functionality for enhanced agent capabilities.
- Manage agent skill execution with a dedicated agent skill runner.
- Construct advanced workflows using the agent task pipeline feature.
Use Cases
- Run agent skills on remote machines with a single API call
- Chain multiple skills into sequential pipelines with context passing
- Load and execute MCP-compatible tools inside agent workflows
Get Started
npm install clawskillsQuick Start
import { ClawSkills } from 'clawskills';
const client = ClawSkills.remote({ apiKey: 'cmdop_live_xxx' });
// Run a single skill
const output = await client.runSkill('code-review', {
input: 'Check src/ for security issues',
});
console.log(output);
// Chain skills into a pipeline
const results = await client.chain([
'lint-code',
'run-tests',
'generate-report',
]);
console.log(results.at(-1));
// Load a local skill
client.load('./skills/my-analyzer');CLI
No SDK needed? Connect via standalone binary:
curl -fsSL cmdop.com/install-cli.sh | bash
cmdok ssh
