A lightweight remote agent for Consulo IDE, providing process management, file operations, and system info over Apache Thrift.
Pre-built binaries are published to the consulo/binaries repository under each platform directory as remote-agent.tar.gz (or .zip on Windows).
| Platform | Architecture | Download |
|---|---|---|
| Linux | x86_64 | tar.gz |
| Linux | aarch64 | tar.gz |
| Linux | riscv64 | tar.gz |
| Linux | loongarch64 | tar.gz |
| macOS | x86_64 | tar.gz |
| macOS | aarch64 (Apple Silicon) | tar.gz |
| Windows | x86_64 | zip |
| Windows | aarch64 | zip |
cargo build --releaseremote-agent [OPTIONS]| Flag | Description | Default |
|---|---|---|
--host <HOST> |
Host address to bind to | 0.0.0.0 |
--port <PORT> |
Port to listen on | 57638 |
--workspace <PATH> |
Workspace root directory | ~/consulo-workspace |
--permissions <GROUPS> |
Comma-separated permission groups or * for all |
* |
--help |
Print help | |
--version |
Print version |
| Group | Methods |
|---|---|
fs |
readFile, writeFile, deleteFile, listDirectory, fileExists, createDirectory, listRoots, setPermissions, beginUpload, uploadChunk, finishUpload, cancelUpload, beginDownload, downloadChunk, finishDownload |
process |
startProcess, killProcess, isProcessAlive, listProcesses, readProcessOutput |
http |
executeHttpRequest |
websocket |
connectWebSocket, readWebSocketData, sendWebSocketData, closeWebSocket |
userinfo |
getUserInfo |
stat |
getStat |
Methods that are always accessible (no permission needed): getAgentInfo, getWorkspacePath, getSystemInfo, getEnvVariable, getEnvVariables, findFreePort.
# Start with all permissions (default)
remote-agent
# Restrict to file and HTTP operations only
remote-agent --permissions fs,http
# Custom port and workspace
remote-agent --port 9090 --workspace /opt/workspace --permissions fs,processBuild for a specific architecture:
# x86_64
docker build --platform linux/amd64 -t consulo/remote-agent:latest image/
# or
podman build --platform linux/amd64 -t consulo/remote-agent:latest image/
# aarch64
docker build --platform linux/arm64 -t consulo/remote-agent:latest image/
# or
podman build --platform linux/arm64 -t consulo/remote-agent:latest image/Run:
docker run -p 57638:57638 consulo/remote-agent:latest
# or
podman run -p 57638:57638 consulo/remote-agent:latestMount a local workspace:
docker run -p 57638:57638 -v /my/workspace:/workspace consulo/remote-agent:latest
# or
podman run -p 57638:57638 -v /my/workspace:/workspace consulo/remote-agent:latestGenerate Java sources without javax.annotation annotations:
thrift --gen java:generated_annotations=suppress -out java-test/src/main/java thrift/remote_agent.thriftApache License 2.0 - see LICENSE for details.
Copyright 2013-2026 consulo.io