DeepSeek-Reasonix: Your AI Coding Agent for the Terminal
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
DeepSeek-Reasonix is an AI coding agent designed for your terminal, offering a stable and persistent environment for development tasks. Engineered with prefix-cache stability, it allows you to leave it running for continuous autonomous operation. This tool integrates seamlessly into various workflows, from CLI to VS Code, enhancing productivity with AI assistance.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
DeepSeek-Reasonix is a powerful DeepSeek-native AI coding agent designed to run directly in your terminal. Engineered for prefix-cache stability, it allows developers to keep it running for extended periods, providing a consistent and reliable AI assistant for coding tasks. This versatile agent supports multiple interaction methods, including a command-line interface (CLI), a dedicated desktop application, browser access, and editor integration via the Agent Communication Protocol (ACP).
Key features include:
- Config-driven: Providers, agents, tools, and plugins are all declared in
reasonix.toml, supporting various models without hardcoding. - Multi-model & composable: DeepSeek is a preset, but any OpenAI-compatible endpoint can be configured. It can optionally run two models together (executor + planner) in separate, cache-stable sessions.
- Plugin-driven: MCP servers contribute tools, prompts, and resources, while Extension Protocol v1 sidecars can intercept runtime events and provide structured UI.
- Cache-aware context maintenance: Optimizes context by injecting stable environment summaries and pruning stale tool output.
- Zero-friction distribution: Distributed as a single Go binary, cross-compilable to multiple targets, making installation straightforward.
Installation
Reasonix offers several installation paths depending on your preferred usage. The CLI/TUI, desktop app, and VS Code extension all utilize the same local Reasonix engine.
Path A: CLI / TUI
Install the native binary globally via npm or Homebrew on macOS:
npm i -g reasonix # any OS; pulls the prebuilt native binary
brew install esengine/reasonix/reasonix # macOS
Prebuilt archives for various platforms are also available on every GitHub release.
Path B: Desktop App
For the desktop application, visit the official download page to get the latest build for your platform (macOS, Windows, Linux).
Path C: VS Code Extension
First, complete Path A to install the CLI. The VS Code extension enhances your development experience by starting your local reasonix acp backend, adding native chat, editor context, tool-call approvals, model selection, and workspace sessions.
- VS Code: Install from Visual Studio Marketplace
- VSCodium / Eclipse Theia: Install from Open VSX Registry
Path D: Build from Source
To build from source, clone the repository and follow the instructions:
git clone https://github.com/esengine/DeepSeek-Reasonix.git
cd DeepSeek-Reasonix
The CLI build requires Go 1.25+. Use make build for the CLI or make cross for cross-compilation. Desktop builds require Node 24+, pnpm 10, and the Wails CLI.
Examples
Once installed, you can quickly get started with Reasonix using these commands for the CLI/TUI:
reasonix setup # configure a provider and model
reasonix # start an interactive session
reasonix run "implement the TODOs in main.go"
In an interactive session, use /init to have Reasonix create project instructions. For the desktop app, simply launch it after installation and configure your provider and model within the application.
Why Use It
DeepSeek-Reasonix stands out as a robust AI coding agent for several reasons:
- Persistent Autonomy: Its prefix-cache stability allows you to leave it running, providing continuous AI assistance without constant restarts.
- Flexible Workflows: Whether you prefer the terminal, a dedicated desktop app, or integration directly into your VS Code editor, Reasonix adapts to your development environment.
- Advanced Control: Features like plan mode, permissions, a workspace sandbox, and per-turn checkpoints give you fine-grained control over autonomous runs, allowing for review and undo capabilities.
- Extensible and Customizable: With its config-driven and plugin-driven architecture, you can easily integrate various models and extend its functionality to suit specific needs.
- Simplified Deployment: Distributed as a single, self-contained Go binary, it offers zero-friction distribution across different operating systems.
- Community Support: A vibrant bilingual Discord community is available for setup help, workflow showcases, and feature ideas.
Links
- GitHub Repository: https://github.com/esengine/DeepSeek-Reasonix
- Official Website: https://esengine.github.io/DeepSeek-Reasonix/
- Discord Community: https://discord.gg/XF78rEME2D
- VS Code Extension: https://marketplace.visualstudio.com/items?itemName=SivanLiu.reasonix-agent
- Desktop App Download: https://reasonix.io/?download=desktop#start
Related repositories
Similar repositories that may be relevant next.
OpenSandbox: A Secure and Extensible Sandbox Runtime for AI Agents
August 12, 2026
OpenSandbox is a powerful, general-purpose sandbox platform designed for AI applications. It provides secure, fast, and extensible runtime environments, supporting multi-language SDKs and Docker/Kubernetes deployments. This project is ideal for developing and evaluating AI agents in isolated, controlled settings.

Mercury Agent: A Soul-Driven AI with Hardened Permissions and Multi-Channel Access
August 12, 2026
Mercury Agent is a sophisticated, soul-driven AI agent designed for continuous 24/7 operation, offering robust permission-hardened tools, intelligent token budgeting, and versatile multi-channel access. It remembers what matters, asks for permission before acting, and runs seamlessly from the CLI, Telegram, or a web dashboard. With 31 built-in tools, Kanban boards, and a SQLite-backed Second Brain memory, Mercury provides a comprehensive and secure AI assistant experience.

nanobot: An Ultra-Lightweight, Self-Hosted Personal AI Agent Framework
August 9, 2026
nanobot is an ultra-lightweight, open-source, self-hosted personal AI agent framework built in Python. It offers a WebUI, tools, memory, multi-agent workflows, and automation capabilities, making it a versatile solution for personal AI tasks. Users can deploy it across various platforms, including chat apps, for seamless integration.

QwenPaw: Your Personal AI Assistant for Local and Cloud Deployment
August 7, 2026
QwenPaw is a powerful personal AI assistant designed for easy installation and deployment, either on your local machine or in the cloud. It supports multiple chat applications and offers highly extensible capabilities, making it a versatile tool for various AI-driven tasks. With its robust memory system and security features, QwenPaw aims to be an intuitive and private partner in your digital life.
Source repository
Open the original repository on GitHub.