cortex-hub / agent-node /
@Antigravity AI Antigravity AI authored 2 days ago
..
scripts refactor: organize agent-node client code structure by moving core packages to src/ 2 days ago
src refactor: organize agent-node client code structure by moving core packages to src/ 2 days ago
Dockerfile refactor: organize agent-node client code structure by moving core packages to src/ 2 days ago
README.md refactor: organize agent-node client code structure by moving core packages to src/ 2 days ago
VERSION feat: add swarm control chat history clear & agent node auto-update system 2 days ago
bootstrap_installer.py fix(agent): robust daemon install and gRPC config 2 days ago
docker-compose.yml chore: set restart policy to always for all containers 2 days ago
install_service.py refactor: organize agent-node client code structure by moving core packages to src/ 2 days ago
requirements.txt feat: implement real-time node monitoring and workspace initialization strategies 10 days ago
spawn_local_agent.sh feat(terminal): overhaul with xterm.js, raw TTY streaming, and dynamic resizing 9 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.

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.