anycode is a web platform where people and agents build together. Run it locally or remotely and work from any device you want: desktop, laptop, mobile, or even VR. Use any agent, including Codex, Claude Code, OpenCode, as well as local models.
- Ultra-fast custom editor: Exceptionally fast and highly optimized virtual rendering engine based on tree-sitter parser, delivering superior performance for large codebases.
- Multi-language support: Work with various programming languages in a single environment.
- Advanced code experience: Utilizes a custom code component based on web-tree-sitter for efficient parsing, syntax highlighting, and real-time code analysis.
- LSP integration: LSP support for intelligent code completion, go-to-definition, hover information and real-time diagnostics.
- File system integration: WebSocket-based backend for browsing and editing files from your local filesystem.
- Changes: Built-in git Changes panel, per-file revert, commit, push, and pull.
- Free layout: Flexible pane layout for arranging the workspace the way you want.
- Integrated terminal: Full-featured terminal emulator with WebSocket-based communication, supporting real-time command execution and output.
- Search functionality: Powerful search capabilities including local search within files and global search across project.
- ACP integration: Agent Client Protocol (ACP) support for seamless integration with AI agents, including tool-call streaming, history-backed undo, session resume, frontend-controlled permission mode, model and reasoning selectors, streamed markdown and code blocks, markdown file links, and improved tool-call diff display.
The project consists of several packages:
anycode/- Main React frontend applicationanycode-base/- Core editor library with tree-sitter supportanycode-react/- React wrapper for the editoranycode-backend/- Rust backend for file system accessanycode-example/- Example application demonstrating anycode usage
curl -fsSL https://raw.githubusercontent.com/anycode-ade/anycode/main/install.sh | shirm https://raw.githubusercontent.com/anycode-ade/anycode/main/install.ps1 | iexWindows installer details:
- Installs
anycode.exeinto%USERPROFILE%\AppData\Local\anycode\binby default - Adds that directory to the user
PATHif needed - Supports overrides via
ANYCODE_VERSION,ANYCODE_INSTALL_DIR, andANYCODE_REPO - Current release installer targets Windows x64; Windows ARM64 can still build from source
If you want a specific release:
$env:ANYCODE_VERSION="v0.0.26"
irm https://raw.githubusercontent.com/anycode-ade/anycode/main/install.ps1 | iexPrerequisites:
- Node.js 24+
pnpm- Rust 1.96.0+
-
Install workspace dependencies:
pnpm install
-
Start frontend:
cd anycode pnpm dev -
Build frontend assets for the backend:
cd anycode pnpm build -
Start Rust backend:
cd anycode-backend cargo run --release -
Open your browser and navigate to the frontend URL
- Run the commands in PowerShell, Windows Terminal, or another shell with
cargo,node, andpnpmonPATH. - The backend already uses
cmd.exeas the integrated terminal shell on Windows. - Release-based installation on Windows depends on the published
anycode-windows-x86_64.zipasset.
We welcome contributions! Please fork the repository and submit a pull request with your changes. Make sure to follow the existing code style and include relevant tests.
anycode is licensed under the Apache License, Version 2.0. See LICENSE for details.


