Metadata-Version: 2.4
Name: arahi
Version: 2026.3.20
Summary: Arahi — personal assistant and business automation plugin for CMDOP
Project-URL: Homepage, https://cmdop.com
Project-URL: Documentation, https://cmdop.com/docs/sdk/python/
Project-URL: Repository, https://github.com/commandoperator/cmdop-sdk
Project-URL: Bug Tracker, https://github.com/commandoperator/cmdop-sdk/issues
License: MIT
Keywords: agent,ai-agent,arahi,automation,cmdop,orchestration,terminal
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: cmdop
Requires-Dist: pydantic>=2.0
Description-Content-Type: text/markdown

# Arahi — AI Personal Assistant & Business Automation for Python

[![PyPI](https://img.shields.io/pypi/v/arahi.svg)](https://pypi.org/project/arahi/) [![Python](https://img.shields.io/pypi/pyversions/arahi.svg)](https://pypi.org/project/arahi/) [![license](https://img.shields.io/pypi/l/arahi.svg)](https://github.com/commandoperator/cmdop-sdk/blob/main/LICENSE)

![arahi](https://raw.githubusercontent.com/markolofsen/assets/main/libs/promo/arahi.webp)

Arahi delivers Python-based personal assistant automation, providing an AI task scheduler and business workflow automation. Unlike LangChain, AutoGPT, and n8n, Arahi focuses on streamlined Python integration. Build sophisticated automated systems. Define and execute tasks using natural language. Maximize your productivity with intelligent automation.

## Features

- Automate Python tasks with a natural language interface.
- Schedule AI tasks for recurring execution.
- Orchestrate complex business workflow automation in Python.
- Manage and monitor agent tasks from a single point.
- Extend functionality via custom Python modules.

## 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

## Installation

```bash
pip install arahi
```

## Quick Start

```python
from arahi import Arahi

client = Arahi.remote(api_key="cmdop_live_xxx")

result = client.do("List all running services and their memory usage")
print(result)

client.schedule("health", interval_seconds=3600, fn=lambda: client.shell("systemctl status nginx"))
```

## CLI

No SDK needed? Connect via standalone binary:

```bash
curl -fsSL cmdop.com/install-cli.sh | bash
cmdok ssh
```

![cmdok ssh](https://raw.githubusercontent.com/commandoperator/cmdop-sdk-js/main/assets/cmdok_ssh.gif)

## Links

- [CMDOP Homepage](https://cmdop.com)
- [Documentation](https://cmdop.com/docs/sdk/python/)
- [arahi on PyPI](https://pypi.org/project/arahi/)
- [GitHub](https://github.com/commandoperator/cmdop-sdk)
