ECLI โ fast terminal code editor
Project description
ECLI
The Next-Generation Terminal IDE
Modern, AI-powered, extensible code editor for the terminal
๐ About ECLI
ECLI (Editor CLI) is a next-generation terminal IDE that brings the power of modern development tools into your terminal environment. It's built for developers who value speed, flexibility, and the ability to work without leaving the terminal.
โจ Key Features
- ๐ง AI-Powered Assistant - Integrated AI panel for code generation, documentation, and refactoring
- ๐ Modern File Manager - Seamlessly navigate and manage projects with intuitive UI
- ๐ฑ Git Integration - Stage, commit, push/pull directly in terminal
- ๐ Syntax Highlighting - Powered by Tree-sitter, supports 70+ programming languages
- ๐ LSP Integration - Full Language Server Protocol support with autocomplete, diagnostics, go-to-definition
- ๐ Built-in Linters - Ruff (Python) by default + support for external linters across 70+ languages
- โก Extensible Architecture - Plugin and theme system for unlimited customization
- ๐จ Professional Themes - Dark and light themes included
- ๐ Cross-Platform - Native support for Linux, macOS, FreeBSD, and Windows
๐ฅ Quick Start
Fastest Installation (Pre-built Packages)
Download and install a pre-compiled package for your platform:
# Debian/Ubuntu
sudo apt install ./ecli_0.1.3_linux_x86_64.deb
# Fedora/RHEL/Rocky
sudo dnf install ./ecli_0.1.3_linux_x86_64.rpm
# Windows (PowerShell)
.\ecli_0.1.3_win_x86_64_setup.exe
# Portable alternative: .\ecli_0.1.3_win_x86_64.exe
# See docs/install/windows.md for checksum verification and SmartScreen notes.
# macOS
open ecli_0.1.3_macos_universal2.dmg
# First launch is blocked by Gatekeeper; see docs/install/macos.md
# for the one-time "Open Anyway" or xattr workaround.
All packages available at GitHub Releases
Run from Source
# Clone the repository
git clone https://github.com/SSobol77/ecli.git
cd ecli
# Install dependencies and run
make install
make run
Install via Python Package Manager
pip install ecli-editor
The Python distribution name is ecli-editor; the import package remains
ecli, and the installed CLI command remains ecli.
๐ฆ Installation Guide
Complete Installation Instructions
For detailed platform-specific installation instructions, system dependencies, and troubleshooting, see the Installation Guide.
1. System Dependencies
These dependencies are required for terminal UI, clipboard integration, YAML acceleration, and UTF-8 support.
Debian/Ubuntu:
sudo apt update && sudo apt install \
libncurses6 libncursesw6 libtinfo6 \
libncurses-dev libncursesw5-dev \
ncurses-bin ncurses-term \
libyaml-dev xclip xsel
Fedora/CentOS/RHEL:
sudo dnf install ncurses ncurses-devel libyaml-devel xclip xsel
Arch Linux:
sudo pacman -S ncurses libyaml xclip xsel
FreeBSD:
sudo pkg install ncurses libyaml xclip xsel
macOS:
brew install ncurses libyaml
2. Install ECLI
Option A: Pre-built Packages (Recommended)
Download from GitHub Releases:
- Linux:
.deb(Debian/Ubuntu),.rpm(Fedora/RHEL),.AppImage(any Linux),.tar.gz - FreeBSD:
.pkg - macOS:
.dmg(install notes) - Windows:
.exeinstaller or portable executable (install notes)
Option B: PyPI (Python Package Index)
pip install ecli-editor
Import and launch names are unchanged:
import ecli
ecli
Requires Python 3.11+ and system dependencies listed above.
๐จ Building from Source
Prerequisites
- Python 3.11+
- Git
- System dependencies (see above)
uvpackage manager (optional, for faster builds)
Build Steps
# Clone the repository
git clone https://github.com/SSobol77/ecli.git
cd ecli
# Install dependencies
make install
# Run from source
make run
# Build packages for distribution
make help # See all available build targets
Build System
ECLI features a comprehensive multi-platform build system. For detailed information:
- Build from Source: Read docs/contributor/build-from-source.md
- Packaging Flows: See docs/release/packaging-flows.md
Common Build Commands
# Display all available build targets
make help
# Check system capabilities and available tools
make sysinfo
# Build for your platform
make package-linux # All Linux packages (deb, rpm, AppImage)
make package-pypi # Python wheel + source distribution
make package-macos # macOS DMG
make package-windows # Windows portable EXE + installer
make package-freebsd # FreeBSD package
# Release to GitHub (requires GitHub CLI)
make publish-all
๐ Usage
Launch ECLI
ecli [options] [file]
Basic Commands
| Shortcut | Action |
|---|---|
Ctrl+N |
New file |
Ctrl+O |
Open file |
Ctrl+S |
Save file |
Ctrl+Q |
Quit |
Ctrl+A |
AI assistant panel |
Ctrl+G |
Git panel |
Ctrl+F |
Search in file |
F1 |
Help |
For comprehensive keybindings and usage guide, see Getting Started.
๐ Documentation
Complete documentation is organized by audience:
For Users
- Installation Guide - Detailed setup instructions
- Build from Source - Build system quick start
- Getting Started - First steps with ECLI
For Developers
- Development Setup - Development environment
- Architecture Overview - System design
- Packaging Flows - Release packaging overview
- Build from Source - Local build commands
- Contributor Guide - Contributing to ECLI
For System Administrators
- Supported Platforms - Platform matrix
- Configuration Guide - Configuration options
- Deployment Guide - Production deployment
Reference
- API Documentation - Plugin development
- Architecture Details - System internals
- Release Process - Release management
- Quality Standards - Testing and quality gates
๐๏ธ Architecture
ECLI is built on a modern, extensible architecture:
- Core Editor: Python with async/await for responsive UI
- Terminal UI: curses-based for full terminal control
- AI Integration: Pluggable AI provider system (OpenAI, Anthropic, HuggingFace, Ollama)
- LSP Client: Language Server Protocol for IDE-like features
- Git Integration: Direct git repository management
- Plugin System: Extensible architecture for custom features
For detailed architecture information, see Architecture Overview.
๐ค Contributing
We welcome contributions! Here's how to get started:
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/ecli.git - Create a feature branch:
git checkout -b feature/your-feature - Make your changes
- Test your changes:
make clean && make install && make run - Commit with clear messages
- Push to your fork
- Open a Pull Request
For detailed contribution guidelines, see CONTRIBUTING.
โ๏ธ Development
Setting Up Development Environment
# Clone and setup
git clone https://github.com/SSobol77/ecli.git
cd ecli
# Install dev dependencies
make install
# Run tests
python -m pytest
# Run linter
ruff check src/
# Format code
black src/
Project Structure
ecli/
โโโ src/ecli/ # Main source code
โ โโโ core/ # Core editor functionality
โ โโโ ui/ # Terminal UI components
โ โโโ integrations/ # AI, Git, LSP integrations
โ โโโ utils/ # Utilities and helpers
โโโ docs/ # Documentation
โโโ tests/ # Test suite
โโโ scripts/ # Build and utility scripts
โโโ Makefile # Multi-platform build system
๐ Issues & Bug Reports
Found a bug? Please help us by opening an issue on GitHub:
- Issue Tracker
- Include: OS, Python version, ECLI version, and reproduction steps
- Check Known Issues first
๐ Requirements
Minimum Requirements
- OS: Linux, macOS, FreeBSD, or Windows
- Python: 3.11 or higher
- Terminal: Supports 256 colors and UTF-8
Supported Platforms
- Ubuntu 20.04 LTS and newer
- Debian 11 and newer
- Fedora 36 and newer
- RHEL/CentOS/Rocky 8.0 and newer
- Arch Linux (current)
- FreeBSD 14.0 and newer
- macOS 12 and newer
- Windows 10/11
See Supported Platforms for detailed compatibility matrix.
๐ License
ECLI is licensed under the Apache License 2.0. See the LICENSE file for details.
๐ Links
- Website: https://www.ecli.io
- GitHub: https://github.com/SSobol77/ecli
- Issues: https://github.com/SSobol77/ecli/issues
- Discussions: https://github.com/SSobol77/ecli/discussions
- PyPI: https://pypi.org/project/ecli-editor/
- Releases: https://github.com/SSobol77/ecli/releases
๐ฌ Support
- Documentation: Read Build from Source and Packaging Flows
- Community: GitHub Discussions
- Bugs: GitHub Issues
- Development: See Contributing
๐ฏ Roadmap
For planned features and current development status, see Roadmap.
Made with โค๏ธ by the ECLI community
โญ Star us on GitHub!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ecli_editor-0.1.3.tar.gz.
File metadata
- Download URL: ecli_editor-0.1.3.tar.gz
- Upload date:
- Size: 179.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
533416ca67b29c550d467a01de47b5f29bb5e0caaf0a6a61a8508d3d05987b2e
|
|
| MD5 |
261c2f4c15120be164044481bad3dd1b
|
|
| BLAKE2b-256 |
46d1dd77b05bfb44c2fb536e4bd84940275a1fa1e4f19f305bea4075fe69633a
|
File details
Details for the file ecli_editor-0.1.3-py3-none-any.whl.
File metadata
- Download URL: ecli_editor-0.1.3-py3-none-any.whl
- Upload date:
- Size: 190.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5af22ad11daddc76fcaae57ce8da4c963bd93f58d93b31d8542cae32aed87dbe
|
|
| MD5 |
26e6b57dae007db549ea151f642f4626
|
|
| BLAKE2b-256 |
260ade0f4905edc92a3b27787e48e1b115d82d9751c5be9d7e61af931dcb96d3
|