Documentation

Elenéi is a next-gen task automation framework built for developers who demand efficiency, flexibility, and power.

Core Features

Modular Architecture

Customize your workflow with interchangeable modules that snap together like building blocks.

Smart Workflows

Intelligent automation that learns from your patterns and adapts to your preferences.

Getting Started

1. Install

$

2. Configure

// .elenecrc
{
  "workspace": "./",
  "tasks": [
    {
      "id": "build",
      "script": "webpack --mode production",
      "watch": ["src/**/*"]
    }
  ]
}
                          

API Reference

Elenéi.Core

class
TaskRunner

Base class for creating custom task runners.

constructor
new TaskRunner(config: TaskConfig)