arahi
v2026.2.28
Published
Arahi — personal assistant and business automation plugin for CMDOP
Downloads
359
Maintainers
Readme
Arahi — AI Personal Assistant & Business Automation for Node.js

Arahi provides personal assistant automation, an AI task scheduler, and business workflow automation for Node.js applications. Unlike LangChain, AutoGPT, and n8n, Arahi offers a streamlined solution for managing and automating tasks. Execute commands, schedule workflows, and integrate AI-driven automation directly into your Node.js projects.
Features
- Automate complex business workflows using natural language commands.
- Schedule recurring AI tasks and manage their execution.
- Orchestrate shell commands and agent tasks from a unified client.
- Integrate personal assistant automation into existing Node.js applications.
- Build sophisticated AI task schedulers with a simple API.
Use Cases
- Schedule recurring AI tasks on remote machines
- Automate business workflows with natural language
- Run shell commands and agent tasks from a single client
Get Started
npm install arahiQuick Start
import { Arahi } from 'arahi';
const assistant = Arahi.remote({ apiKey: 'cmdop_live_xxx' });
const result = await assistant.do('List all running services and memory usage');
console.log(result.text);
assistant.schedule('health', 60 * 60 * 1000, async () => {
await assistant.shell('systemctl status nginx');
});