cortex-hub / agent-node /
@Antigravity AI Antigravity AI authored 1 day ago
..
scripts feat: scaffold standalone all-in-one pyinstaller binary build pipeline and bash provisioner 1 day ago
src Fix gigabyte file sync race conditions and malicious path errors 3 days ago
Dockerfile feat: complete removal of playwright from agent-node and re-align UI to prioritize standalone binary distro 1 day ago
Dockerfile.binary feat: scaffold standalone all-in-one pyinstaller binary build pipeline and bash provisioner 1 day ago
README.md Refactor browser service for parallel worker pool and deep research capabilities. Clean up redundant directories and fix potential path issues for .browser_data. 10 days ago
VERSION fix: ToolService binary artifact serialization and sync logic updates 5 days ago
bootstrap_installer.py feat: complete removal of playwright from agent-node and re-align UI to prioritize standalone binary distro 1 day ago
docker-compose.yml refactor: remove hardcoded ai.jerxie.com references 12 days ago
install_service.py Refactor browser service for parallel worker pool and deep research capabilities. Clean up redundant directories and fix potential path issues for .browser_data. 10 days ago
requirements.txt feat: complete removal of playwright from agent-node and re-align UI to prioritize standalone binary distro 1 day ago
spawn_local_agent.sh refactor: remove hardcoded ai.jerxie.com references 12 days ago
README.md

Cortex Agent Node

This bundle contains the Cortex Agent Node, lightweight, modular software that securely connects physical computing resources to the Cortex Hub.

[!TIP] Performance Focused: As of v1.0.66, browser automation has been moved to a dedicated server-side service. This node is now even lighter and focuses exclusively on high-speed system operations and file synchronization.

Directory Structure

.
├── bootstrap_installer.py  # Zero-dependency daemon/upgrade installer
├── install_service.py      # Background service utilities (macOS/Linux)
├── requirements.txt        # Core dependencies
├── src/                    # Primary source code
│   ├── agent_node/         # Hub communication & task execution logic
│   ├── protos/             # gRPC protocol stubs
│   └── shared_core/        # Cross-module shared utilities

Running the Node

Automated Background Service (Recommended)

To run the node seamlessly in the background (surviving system reboots):

python3 bootstrap_installer.py --daemon

Foreground Usage

Run python3 src/agent_node/main.py directly if you want to watch the logs in your terminal.