knolli
v2026.2.28
Published
Knolli — no-code AI copilot plugin for CMDOP with structured workflows
Maintainers
Readme
Knolli — No-Code AI Workflow Builder & Copilot for Node.js

Knolli delivers no-code workflow automation for Node.js, rivaling n8n, Zapier, LangChain, and Temporal. Construct structured AI pipelines using our AI copilot workflow builder. Define, execute, and monitor complex workflows visually. Integrate AI tasks with your existing code. Build automations faster. Deploy smarter.
Features
- Visually design no-code workflow automation in Node.js
- Orchestrate structured AI pipelines with an AI copilot workflow builder
- Integrate AI models and services into existing workflows
- Automate complex tasks without writing code
- Build custom Node.js applications using visual workflows
Use Cases
- Chain shell commands and AI tasks in a fluent workflow
- Run preset deployment and health-check workflows
- Build repeatable automation without boilerplate
Get Started
npm install knolliQuick Start
import { Knolli } from 'knolli';
const client = Knolli.remote({ apiKey: 'cmdop_live_xxx' });
const results = await client.workflow()
.shell('git pull')
.shell('npm install')
.agent('Summarize the changes in the last 5 commits')
.run();
console.log(results[2].text);
await client.runPreset('health-check');