Skip to content

Repository files navigation

Heliox OS β€” AI System Control Agent

GSSoC 2026 Release Downloads Build Status CI Good First Issues License Platform

Heliox OS Command Center in dark mode

Control your entire computer with natural language, voice, and hand gestures.
An open-source, privacy-first AI agent that plans, executes, and verifies complex multi-step tasks.

🌐 Visit the Official Website (helioxos.dev) 🌐

Installation β€’ JARVIS Mode β€’ Actions β€’ Architecture β€’ Security β€’ Troubleshooting β€’ Contributing


🌱 New Contributor Onboarding

New to open source? New to Heliox OS? Start here.

This guide helps first-time contributors understand the project structure, set up the development environment, and make their first contribution.

What is Heliox OS?

Heliox OS is an AI-powered operating system agent that combines planning, execution, verification, memory, and security into a unified multi-agent system.

Before Contributing

We recommend:

  1. Reading this README completely
  2. Reading CONTRIBUTING.md
  3. Understanding the project structure
  4. Running the project locally
  5. Exploring beginner-friendly issues

Project Structure Overview

heliox-os/
β”œβ”€β”€ daemon/          Python agent runtime and tests
β”œβ”€β”€ tauri-app/       Tauri desktop shell and Svelte UI
β”œβ”€β”€ plugins/         Reviewed marketplace packages and catalog
β”œβ”€β”€ schemas/         Shared validation schemas
β”œβ”€β”€ scripts/         Validation and release utilities
└── docs/            Operational and contributor guides

Why Heliox OS?

Unlike simple command runners, Heliox OS is a true agentic system inspired by robust autonomous architectures like OpenClaw, running a continuous ReAct loop with a modular multi-agent orchestrator:

  1. Gateway Hub & Memory β€” LLM evaluates persistent memory context before reasoning.
  2. Planner β€” Converts natural language into a structured multi-step action plan.
  3. Agent Orchestrator β€” Routes each action to one of 21 registered specialists across 20 source-scoped roles.
  4. Specialist Agents β€” Domain experts execute through reviewed OS, browser, integration, and remote-system adapters; all 156 declared action types have at least one concrete provider.
  5. Verifier β€” Post-execution verification confirms the action succeeded and feeds results back into the loop.
  6. Reflector β€” Self-improvement engine learns from successes and failures.
  7. Security β€” Five-tier permission system with confirmation gates and rollback support.

πŸ€– JARVIS Autonomy (v0.10.1)

Heliox OS combines reactive commands with opt-in proactive and background capabilities that run through the same permission and verification pipeline:

  • 🧠 Adaptive Proactive Suggestions: Pattern-matches local screen context and surfaces visible, optional help before you ask. Accept/dismiss feedback persists on-device, tunes each pattern's timing and priority, and temporarily suppresses repeatedly rejected suggestions. Acceptance still enters the guarded autonomous permission and verification pipeline.
  • 🀝 Interactive Execution Companion: Independently reviews proposed plans, can warn, revise, or stop work that drifts from the request, accepts typed or spoken corrections while a task is running, and offers grounded next ideas after verified results.
  • ⚑ Fire-and-Forget Autonomous Jobs: Spawn complex multi-step background tasks that decompose, execute, and verify completely independent of the UI or main event loop.
  • πŸ‘οΈ Always-On Screen Awareness: Automatically bootstrapped computer vision that tracks your contextual state cross-platform, natively bridging exactly what you see into the LLM planner.
  • 🎀 Continuous Voice Listener: Real-time push-free 'Hey Heliox' ambient wake-word dispatch for frictionless task execution. Endpoints on natural speech start/silence (VAD) instead of a fixed recording window, and supports barge-in β€” start talking and Heliox stops mid-sentence to listen, instead of talking over you.
  • 🀚 30+ Hand Gestures & Air Drawing: Control your PC via webcam with static poses (Palm, Pinch) and motion gestures (Two-Finger Swipe). A lightweight kinematic prediction layer smooths tracking and reduces misfires. An opt-in 3D world-model backend (vision.mediapipe_backend: "tasks") adds real-metric-scale depth via MediaPipe's HandLandmarker β€” see GESTURES.md. An opt-in coarse gaze-tracking modality (vision.gaze_tracking_enabled) fuses screen-region gaze with voice + gesture on-device β€” see GESTURES.md.
  • πŸ–±οΈ Gesture Cursor Control (off by default): Point to move the real OS cursor, pinch to click β€” opt in via Settings. Open palm always exits instantly.
  • 🎯 Adaptive Voice & Gesture Calibration (on by default): A lightweight on-device continual-learning loop personalizes pinch/thumb thresholds and wake-word matching from implicit usage signals β€” no retraining, no new prompts, bounded and resettable in Settings.
  • πŸŒ€ Arc Reactor UI & Ambient HUD: Animated, immersive Tauri overlays responding contextually to system actions.

🧠 Cognitive Engine Integrations

Heliox OS integrates a lightweight, dependency-free Cognitive Engine (pilot.cognitive.cognitive_engine) directly into the operating logic. Attention/stress/load are explicitly labelled behavioural estimates derived from measured local keyboard, click, pointer, interaction-history, and opt-in gaze signals. The HUD reports confidence and never presents these estimates as medical or physiological measurements. No raw keystrokes, click targets, camera frames, or gaze images are stored or sent to a model:

  1. Cognitive HUD: Shows smoothed attention/stress/load estimates together with signal count and confidence, avoiding false β€œ100% certain” states when evidence is sparse.
  2. Dynamic TTS Stress-Pacing: JARVIS automatically slows down voice generation if you are engaged in high cognitive-load tasks.
  3. Stress-Aware Destructive Gate: High-risk actions (e.g., recursive deletes) evaluate cognitive stress first. If you are distracted, a strict 10-second auditory confirmation gate holds the process.
  4. Subconscious Persona Fingerprint: The Subconscious background loop learns your cognitive engagement patterns and encodes them to persona.md to align UIs to your habits.
  5. Attention-Optimized Notifications: The notification pipeline dynamically buffers trivial background alerts until the system detects a low-load resting state.
  6. ReAct Cognitive Cost Estimator: Tasks predict aggregate cognitive demand proactively. If executing a plan risks exceeding mental bandwidth, JARVIS pauses.
  7. JARVIS Intent Classifier: Fully integrated native intent fusion classifying spoken commands against current workload intensity.

Experimental Cognitive Library APIs

The repository also contains seven experimental cognitive modules exposed through CognitiveHub. The daemon initializes this hub, but these examples are currently developer-facing APIs rather than independently validated, user-visible product features. The production execution path uses the lightweight Cognitive Engine integrations listed above.

1. Adaptive Biometric Learning Loop

Track opt-in behavioural patterns over weeks (time-of-day productivity and interaction cadence). Create personalized behavioural fingerprints that estimate useful interaction times. This is an experimental developer API, not a physiological or medical classifier.

from pilot.cognitive.biometric_loop import BiometricLearningLoop

loop = BiometricLearningLoop(user_id="user")
loop.record_cognitive_sample(attention=0.7, stress=0.3, load=0.5)
recommendation = loop.get_interaction_recommendation()
print(recommendation.recommended, recommendation.interaction_type)

2. Ambient Intelligence Mode

Instead of reactive commands, Heliox proactively suggests actions based on predicted cognitive state. Example: "You've been on this task for 2 hours with increasing stress β€” want me to schedule a break?"

from pilot.cognitive.ambient_intelligence import AmbientIntelligenceEngine

ambient = AmbientIntelligenceEngine(biometric_loop)
await ambient.update_cognitive_state(attention=0.8, stress=0.6, load=0.7)
# Automatically generates proactive suggestions based on trends

3. Multi-Modal Neural Bridge

Extend beyond screen vision β€” integrate webcam eye-tracking, audio tone analysis, keyboard/mouse dynamics. Build a unified "neural workspace" that predicts what the user will need before they ask.

from pilot.cognitive.neural_bridge import NeuralBridge

bridge = NeuralBridge()
bridge.record_keystroke()
bridge.record_mouse_move(x, y)
workspace = bridge.compute_workspace()
print(workspace.cognitive_state, workspace.predicted_need)

4. Cognitive Offloading

When load > 80%, automatically surface "memory anchors" β€” key info from recent actions. Let Heliox absorb cognitive burden by remembering complex multi-step workflows.

from pilot.cognitive.cognitive_offload import CognitiveOffloader

offloader = CognitiveOffloader()
offloader.update_load(0.85)  # Triggers offload surface
surface = offloader.get_offload_surface()
print(surface["anchors"], surface["workflows"])

5. Evolving Persona Architecture

Move from static persona.md to a living "neural avatar" that changes daily based on cognitive patterns. The AI's communication style adapts: concise when stressed, detailed when relaxed.

from pilot.cognitive.evolving_persona import EvolvingPersonaEngine

persona = EvolvingPersonaEngine(user_id="user")
persona.record_interaction(attention=0.7, stress=0.3, load=0.5)
greeting = persona.get_greeting()  # "Good afternoon! Ready to tackle anything?"
print(persona.get_ui_config())  # Adapts UI based on state

6. Local Cognitive Handoff Prototype

The handoff engine can capture cognitive context, register device sessions, and suggest moving a task to another device. Its current CloudStore implementation is a local JSON-backed prototype under ~/.cache/heliox/cloud; it does not upload data to a hosted synchronization service.

from pilot.cognitive.cognitive_handoff import CognitiveHandoffEngine

handoff = CognitiveHandoffEngine(device_name="desktop")
handoff.capture_snapshot(attention=0.8, stress=0.6, load=0.7)
suggestion = handoff.get_handoff_suggestion(load=0.85, stress=0.3)

7. Model-Adapter Architecture

The cognitive pipeline exposes a model-agnostic adapter interface. It ships with a heuristic fallback; additional adapters must be registered by the host application before they can be selected.

from pilot.cognitive.quantum_cognitive import create_pipeline, QuantumCognitivePipeline

pipeline = create_pipeline()
output = await pipeline.predict("user working on complex task")
print(output.attention_score, output.stress_level, output.cognitive_load)

# A host can register and select another adapter at runtime.

Unified Cognitive Hub

All features are wrapped in a single interface:

from pilot.cognitive.hub import CognitiveHub

hub = CognitiveHub()
state = await hub.analyze("user is coding")

# All features accessible
print(f"Attention: {state.attention}, Stress: {state.stress}")
print(f"Optimal: {state.optimal_interaction}")
print(f"Overloaded: {state.is_overloaded}")
print(hub.get_greeting())  # Adaptive greeting
print(hub.get_offload_surface())  # Memory anchors

Model-Agnostic by Design

The QuantumCognitivePipeline ships with a heuristic adapter by default and supports registering additional model adapters at runtime:

Available Models:
  - Heuristic Fallback (fallback)
    Available: True
    Capabilities: LOAD_ESTIMATION
    Avg Latency: ~1ms

Additional adapters can be registered via pipeline.register_adapter(...) and switched with pipeline.set_active_model(...) without changing any call site.


🧠 Multi-Agent Orchestrator

Heliox OS currently registers 21 concrete specialist agents across 20 source-scoped roles. Communication and email intentionally share the comm_agent security identity while remaining separate runtime specialists.

Group Specialists
Core OS System, File Operations, Package Management, Service Management, Desktop Automation
Development Code, Git, Workflow Automation
Web and integrations Web, Network, Integration, Plugin Runtime
Communication Communication, Email, Calendar, RSS
Perception and retrieval Vision, Monitor, Forensics, Semantic Search
Remote systems SSH

The planner produces a validated action plan, the orchestrator selects a capable provider, the Agent Gateway applies the provider's source profile, and execution remains ordered unless actions are explicitly proven independent. Results pass through verification, the task ledger, reflection, and user-visible completion.

Dynamic spawning: agent_spawn accepts a discovered specialist class name such as VisionAgent. The legacy role parameter remains available for compatibility with the original agents. See Agent Development Guide.

Release Verification

The release gate is reproducible; it does not rely on an informal task-pass percentage. The v0.10.1 release candidate is validated through:

Surface Verification
Python daemon Ruff lint and format; 1,456 tests passed, 6 skipped
Svelte UI Prettier and svelte-check with zero warnings; 166 unit tests; production build
Dependencies npm audit --audit-level=high with zero vulnerabilities
Native Tauri bridge Cargo format, Clippy with warnings denied, and 8 Rust tests
Visual UI 33 Playwright visual scenarios passed on Windows

GitHub Actions repeats Python tests on Windows, Ubuntu, and macOS with Python 3.11 and 3.12, runs the frontend gate, compares per-OS visual baselines, and checks the Rust bridge on Linux. Camera, microphone, desktop permissions, model downloads, and OS-specific integrations still require real-device validation; CI cannot prove hardware behavior.

Public releases use a draft-first workflow. PyPI publication and stable promotion happen only after package and clean-machine acceptance.

πŸ–₯️ Cross-Platform Support

Platform Status
Windows 10/11 Primary development and hardware-validation platform
Ubuntu / Debian Python/UI CI coverage; desktop packages and integrations vary
macOS Python/UI CI coverage; permissions and hardware must be validated locally
Fedora / Arch Source installation; package-manager actions use dnf/pacman

Action Catalog

The planner schema currently declares 156 action types, and the live specialist mesh reports 156/156 provider coverage. Availability still depends on the operating system, installed optional dependencies, configured credentials, and active security policy. The groups below are representative, not exhaustive; daemon/pilot/actions.py is the source of truth.

File Operations

file_read Β· file_write Β· file_delete Β· file_move Β· file_copy Β· file_list Β· file_search Β· directory_summary Β· directory_size Β· file_hash Β· file_compare Β· file_permissions

Process Management

process_list Β· process_kill Β· process_info

Shell Execution

shell_command Β· shell_script (multi-line bash/powershell/python)

Code Execution

code_execute β€” Run Python, PowerShell, Bash, or JavaScript with auto-fix on failure

Browser & Web

browser_navigate Β· browser_click Β· browser_type Β· browser_extract Β· browser_extract_table Β· browser_extract_links

Screen & Vision

screenshot Β· screen_ocr Β· screen_analyze Β· screen_detect_elements

Git

git_status Β· git_diff Β· git_log Β· git_branch Β· git_stage Β· git_commit Β· git_push Β· git_resolve

Plugins, WASM, and Skills

plugin_call Β· wasm_call Β· skill_run

Package Management

package_install Β· package_remove Β· package_update Β· package_search Auto-detects: winget, choco, brew, apt, dnf, pacman

System Information

system_info Β· cpu_usage Β· memory_usage Β· disk_usage Β· network_info Β· battery_info

Window Management

window_list Β· window_focus Β· window_close Β· window_minimize Β· window_maximize

Audio / Volume

volume_get Β· volume_set Β· volume_mute

Display / Screen

brightness_get Β· brightness_set Β· screenshot

Power Management

power_shutdown Β· power_restart Β· power_sleep Β· power_lock Β· power_logout

Network / WiFi

wifi_list Β· wifi_connect Β· wifi_disconnect

Clipboard

clipboard_read Β· clipboard_write

Scheduled Tasks & Triggers

schedule_create Β· schedule_list Β· schedule_delete Β· trigger_create

Environment Variables

env_get Β· env_set Β· env_list

Downloads

download_file

Service Management (Linux)

service_start Β· service_stop Β· service_restart Β· service_enable Β· service_disable Β· service_status

GNOME / Desktop (Linux)

gnome_setting_read Β· gnome_setting_write Β· dbus_call

Windows Registry

registry_read Β· registry_write

Open / Launch / Notify

open_url Β· open_application Β· notify

Architecture

The current architecture was implemented in 11 connected phases. They share one event, safety, and verification backbone rather than operating as independent features:

Layer Implemented responsibility
Experience ledger Typed, append-only causal events with provenance, privacy labels, and idempotency
Replay evaluation Deterministic trace replay graded by real environment outcome, safety, latency, efficiency, and interaction quality
Durable loop Restart-safe task journal, delayed approvals, cancellation, execution claims, and authenticated resume
Temporal context Working, episodic, semantic, and time-bounded memory under a strict context budget
Companion coordinator One priority-controlled voice/interruption channel with barge-in and duplicate suppression
Hybrid world model Structured transition prediction, calibrated learned risk, verified failure history, and optional shadow UI-JEPA
Continuous learning Verified River adaptation with repeated-evidence promotion, replay, drift detection, and reset
Strategy evolution Inert GEPA-style candidates promoted only after replay, shadow, consented canary, and exact-ID review
Plugin security Fail-closed capability manifests plus constrained native and WASM brokers
Evolution harness Detached worktrees evaluated in a network-disabled, credential-free Docker runner; no automatic code promotion
Specialist mesh 21 specialists, bounded delegation, outcome-based routing, and 156/156 action coverage

Read Architecture for process boundaries, authority, persistence, all 11 layers, and the extension invariants.

graph TD
    User(["User Input: Voice, Text, Gestures, Gaze"]) --> Gateway

    subgraph "Frontend Gateway - Tauri + Svelte"
        Gateway["WebSocket Hub"]
        GUI["Desktop Window"]
        HUD["Ambient System HUD"]
        VC["Voice Controller"]
        GC["Hand Gesture Controller"]
        GT["On-device Gaze Tracker"]
        RPV["ReAct Pipeline Visualizer"]
        TVS["Thought Visualization 🧠"]
        Gateway --- GUI
        GUI --- HUD
        GUI --- VC
        GUI --- GC
        GUI --- GT
        GUI --- RPV
        RPV --- TVS
    end

    Gateway --> Fusion

    subgraph "Multimodal Fusion"
        Fusion["Intent Fusion Engine"]
        Fusion --> |"voice + gesture + coarse gaze"| FusedIntent["Fused Intent"]
    end

    FusedIntent --> Daemon

    subgraph "Agent Runtime - Python"
        Daemon["Agent Server / Durable ReAct Loop"] --> Ledger[("Append-only Experience Ledger")]
        Daemon --> Journal[("Durable Task Journal")]
        Daemon --> Memory[("Temporal Memory")]
        Memory --> Context["Budgeted Context Assembler"]
        Ledger --> Learning["Verified Online Learning"]
        Ledger --> Replay["Trace Replay + Evaluation"]
        Replay --> Strategy["Shadow Strategy Evolution"]
        Daemon --> Decomposer["Task Decomposer"]
        Decomposer --> Planner["LLM Planner"]
        Context --> Planner
        Strategy -.->|"promoted assignment only"| Planner
        Planner --> PromptImprover["Prompt Improver"]
        PromptImprover --> |"reuse strategies"| Planner
        Planner --> Router{"Model Router"}
        Router --> Ext_LLM("Gemini / OpenAI / Claude / Meta")
        Router --> Int_LLM("Ollama")
        Planner --> Sandbox["Simulation Sandbox"]
        Sandbox --> LearnedRisk["Hybrid World Model"]
        LearnedRisk --> |"can only add caution"| Security["Security Gate + Approval"]
        Security --> Orchestrator["Capability Agent Mesh"]
    end

    subgraph "Multi-Agent System"
        Orchestrator --> OS["OS + Desktop specialists"]
        Orchestrator --> DEV["Code + Git + Automation specialists"]
        Orchestrator --> WEB["Web + Network + Integration specialists"]
        Orchestrator --> COMMS["Communication + Email + Calendar + RSS"]
        Orchestrator --> PER["Vision + Monitor + Forensics + Search"]
        Orchestrator --> REMOTE["SSH specialist"]
    end

    subgraph "Plugin Ecosystem"
        PluginReg["Reviewed GitHub Marketplace + Signed Local Plugins"]
        PluginReg -->|"guarded external providers"| Orchestrator
        PluginReg --> Broker["Native / WASM capability broker"]
        P1["weather"]
        P2["spotify-control"]
        P3["home-assistant"]
        P1 --- PluginReg
        P2 --- PluginReg
        P3 --- PluginReg
    end

    OS --> Executor["Shared Executor + domain adapters"]
    DEV --> Executor
    WEB --> Executor
    COMMS --> Executor
    PER --> Executor
    REMOTE --> Executor
    Broker --> Executor

    Executor --> Verifier["Verifier"]
    Verifier --> Reflector["Reflector"]
    Reflector --> PromptImprover
    Reflector --> Memory
    Reflector --> SkillReg["Skill Registry"]

    subgraph "Subconscious Layer"
        SubAgent["Subconscious Agent"]
        SubAgent -->|"persona rules"| Planner
        Reflector --> SubAgent
        SubAgent --> PersonaFile["~/.local/share/heliox-os/persona.md"]
    end

    subgraph "Screen Awareness"
        ScreenVision["Screen Vision Agent"]
        ScreenVision -->|"context"| Planner
        ScreenVision --> AppDetect["Active App Detector"]
        ScreenVision --> DiffEngine["Screenshot Diff"]
    end


    subgraph "Reasoning Telemetry"
        Daemon -.-> |"events"| ReasoningEmitter["Reasoning Emitter"]
        ReasoningEmitter -.-> |"WebSocket"| TVS
    end
Loading

Runtime Subsystems

These are implemented runtime paths, not a future roadmap:

Subsystem Runtime surface
Persistent memory and reflection memory/store.py, agents/reflector.py, prompt/skill registries
Planning and orchestration Dependency-aware decomposition, 21 specialists across 20 gateway roles, and 156/156 action coverage
Experience and durability Append-only causal ledger, persistent task journal, idempotent action claims, and authenticated resume
Context and adaptation Temporal memory, bounded context assembly, verified online learning, and drift-aware replay
Evaluation and evolution Outcome trace replay, shadow strategy optimization, and isolated Docker/worktree engineering candidates
Reasoning telemetry Live ReAct events rendered in the desktop UI
Screen, hand, and gaze perception Screen context plus on-device MediaPipe hand and coarse gaze pipelines
Hybrid world model Structured transition prediction, calibrated learned risk, verified failures, and optional validated UI-JEPA; learned evidence can only increase caution
Durable voice/gesture workflows SQLite-backed multi-step jobs with pause, resume, cancel, and restart recovery
Opt-in autonomous controls Healing, execution narration, preview-before-action, manual supervision, and gesture cursor
Voice output Coordinated Kokoro default, selectable Pocket TTS, and automatic OS/browser fallback
Extension ecosystem Signed local plugins, a reviewed hash-verified marketplace, constrained native/WASM brokers, and explicit capability grants

πŸ”§ Task Decomposition Engine

Complex goals are automatically broken into dependency-aware subtask trees:

User: "Build a Flask API for todo list"
 β†’ 1. [system] Create project folder
 β†’ 2. [system] Install Flask            (depends: 1)
 β†’ 3. [code]   Generate API code         (depends: 1)
 β†’ 4. [code]   Create requirements.txt   (depends: 2)
 β†’ 5. [code]   Run tests                 (depends: 3, 4)

πŸ›‘οΈ Simulation Sandbox

Before executing dangerous commands, the sandbox produces an impact report:

⚠️ Simulation Report:
  Risk: HIGH
  Impact: 154 files affected (wildcard)
  Warnings:
    - ⚠️ Plan contains destructive actions
    - πŸ” Plan requires elevated privileges
    - ♻️ 2 action(s) are NOT reversible
  Recommendation: ⚠️ HIGH RISK β€” Confirm impact

🧬 Self-Improving Prompt System

Prompt templates and verified strategy evolution are deliberately separate:

  • Existing prompt strategies retain success/failure evidence for matching.
  • GEPA-style reflection may propose planner, tool, recovery, context, suggestion, or decomposition candidates from sanitized traces.
  • Candidates remain inert through isolated replay, safety/regression checks, 10 non-regressing shadow samples, five consented canary samples, and exact-ID administrator promotion.
  • Automatic promotion is disabled, and rollback restores the previous assignment or shipped baseline.

πŸ”Œ Plugin Ecosystem

Heliox has two deliberately separate extension paths:

Path Current packages Trust model
Built-in daemon integrations Developer tools, media control, Home Assistant Shipped and reviewed with the application
Public marketplace weather, spotify-control, home-assistant Approved GitHub catalog, capability manifest, per-file SHA-256 verification, and constrained native/WASM execution

Local development plugins live in ~/.config/heliox-os/plugins/. They are auto-discovered at startup only after Ed25519 signature verification. Local packages can include plugin.ed25519.pub with plugin.ed25519.sig; unsigned, untrusted, or tampered packages are rejected before their manifest or code is loaded.

Every marketplace manifest declares exact filesystem roots, network domains, processes, credentials, clipboard directions, camera/microphone access, retention, and destructive authority. Native Python tools run in a one-shot child broker with a scrubbed environment and only declared credentials. WASM tools receive path-scoped WASI preopens, bounded memory/runtime, and no network by default. Destructive tools cannot use the direct Marketplace test path; they must enter the guarded planner and approval flow.

To publish for everyone, create and test the plugin in the app, add plugins/<plugin-name>/manifest.json and plugin.py, update plugins/registry.json, run python scripts/validate_marketplace.py --write, and submit a pull request. Once marketplace CI, maintainer review, and CODEOWNER review pass and the pull request is merged to main, users can see it by pressing Refresh. A desktop release is not required. See the Plugin Marketplace guide for the complete package contract and moderation flow.

{
  "name": "my-plugin",
  "version": "1.0.0",
  "tools": [{"name": "my_tool", "inputs": ["arg1"], "action_type": "api_call"}]
}

🧠 Subconscious Agent (Persona Learning)

A background agent that runs every 30 minutes to review the day's actions and learn user preferences:

  • Clusters behavioral patterns ("always writes Python", "prefers dark mode")
  • Extracts actionable rules with confidence scores
  • Writes ~/.local/share/heliox-os/persona.md and injects high-confidence rules into both typed and voice planning
  • Supports manual preference setting via persona_add_preference API
  • Categories: preference, habit, constraint, style
  • Learned rules are advisory preferences only; they cannot grant permission, remove a safety warning, or override the current request

πŸ‘οΈ Screen Vision Agent

Continuous computer-vision loop that gives the agent awareness of what the user sees:

  • Takes screenshots every 3 seconds by default and hashes them for change detection
  • Detects the active application and window title cross-platform
  • Maintains a rolling context buffer of recent screen states
  • When user says "summarize this" or "close that", the planner already knows the target
  • Optional LLM-powered screen description for advanced awareness

πŸš€ Installation

Option 1: Download Compiled Desktop App (Recommended)

The easiest way to get started is to download the pre-compiled installer for your operating system.

  1. Go to the GitHub Releases page.
  2. Download the installer for your OS:
    • Windows: the latest Heliox-OS_<version>_x64-setup.exe or .msi
    • macOS (Apple Silicon): the latest Heliox-OS_<version>_aarch64.dmg
    • macOS (Intel): the latest Heliox-OS_<version>_x64.dmg
    • Linux: .AppImage, .deb, or .rpm
  3. Install the app.
  4. Open Heliox OS and enter your API Key (e.g., Gemini, OpenAI, Claude, Meta) in the Settings tab.

The desktop app requires Python 3.11+ and starts the local daemon automatically. On first launch it may need time to create its environment and load local models; the UI keeps reconnecting during that initialization. Browser-only UI development still requires a manually started daemon.

Windows Optional-Model Troubleshooting

Kokoro TTS, Pocket TTS, and the default voice path are CPU-only; CUDA is not required. If an optional neural dependency fails with missing runtime DLLs, install the Microsoft Visual C++ Redistributable and reinstall the daemon extras from a 64-bit Python 3.11 or 3.12 environment:

cd daemon
python -m pip install --upgrade pip setuptools wheel
python -m pip install -e ".[full,voice]"

Only install a CUDA-specific PyTorch build when you have deliberately enabled an optional GPU-backed model. The core agent, learned risk model, gesture/gaze pipeline, Kokoro TTS, and Pocket TTS do not require an NVIDIA GPU.

Option 2: Build from Source (For Developers)

Note: Windows contributors can use the automated setup.ps1 script for environment setup.
If PowerShell blocks the script, check the Windows setup instructions in CONTRIBUTING.md.

If you want to contribute or modify Heliox OS, build it from the source code:

1. Install the Python daemon:

git clone https://github.com/VyomKulshrestha/Heliox-OS.git
cd Heliox-OS/daemon
pip install -e ".[all,dev]"

2. Choose your LLM:

  • Local (Ollama): ollama pull llama3.1:8b -> ollama serve
  • Cloud (Gemini/OpenAI/Claude/Meta): Add your API key in the app GUI.

3. Run the daemon:

cd daemon
python -m pilot.server

4. Run the frontend:

cd tauri-app/ui
npm ci
npm run dev

For the native desktop shell, install the Tauri wrapper dependencies and run:

cd tauri-app
npm install
npm run tauri dev

Example Commands

"Show me my system info"
"Take a screenshot and read the text on screen"
"Go to Wikipedia's page on AI and summarize the first 3 paragraphs"
"Create a Python project with tests and run them"
"Kill the process using the most CPU"
"Monitor my CPU and alert me when it goes above 80%"
"Download a file and show me a tree of the folder"
"List all .py files on my Desktop"
"Set my volume to 50%"
"Create a CSV with sales data and analyze it"
"What's my IP address?"
"Install Firefox"

πŸ›‘οΈ Security

Warning

PLEASE READ BEFORE USE: SYSTEM COMPROMISE RISK Heliox OS is an autonomous agent with the ability to execute code, delete files, and run terminal commands directly on your host operating system. While we have provided sandbox measures, the AI has real system access. Do NOT run Heliox OS with root/Administrator privileges unless absolutely necessary. We are not responsible for accidental data loss caused by LLM hallucinations.

  • All AI outputs pass through structured schema validation before execution
  • Five-tier permission system (read-only through root-level)
  • Confirmation required for system-modifying and destructive actions, with per-action granular approve/deny β€” reject individual actions in a multi-step plan instead of all-or-nothing
  • Irreversibility is tracked independently of tier β€” actions that can't be undone by a snapshot rollback (external emails/webhooks, SSH commands, power actions, package removal) always require confirmation, even at a lower tier, and are flagged distinctly in the approval dialog
  • A secondary LLM safety critic independently reviews Tier 3 (destructive) and Tier 4 (root-critical) plans before the confirmation gate fires β€” it can block a plan outright or surface warnings alongside the approval dialog. Low-risk Tier 3 plans skip the LLM round-trip via a cheap heuristic pre-check, but the audit trail records when that happened
  • Dangerous shell argument patterns (recursive+force deletes, wildcard/root path targets) are flagged even on already-whitelisted commands
  • Snapshot-based rollback β€” Btrfs/Timeshift on Linux and Windows Restore Points on Windows. Required snapshots fail closed: if the selected backend is unavailable or the Windows daemon is not elevated, the destructive action does not run. Windows controls restore-point retention; Heliox retention settings apply where the backend supports them.
  • Tamper-evident, HMAC-chained audit log for every elevated permission decision, viewable and independently verifiable (integrity check) from the Settings panel
  • Agent Gateway: 25 source-scoped permission floors cover interactive/autonomous/modality/background paths and all 20 specialist roles. Each can be tightened but never widened by a per-task override; a separate tamper-evident chain records every gateway decision.
  • Hybrid risk world model: deterministic policy, structured OS/UI transition prediction, the calibrated 36,000-sample impact model, verified failure history, and optional validated UI-JEPA use the riskier result. Learned evidence can interrupt or add confirmation but cannot remove a rule-based warning or grant permission.
  • Durable execution: approvals, cancellation, task state, and action claims survive reconnects/restarts. Completed claims replay their stored result; uncertain claims require reconciliation and are never silently executed twice.
  • Bounded adaptation: temporal memory and verified online learning require provenance/repeated evidence, exclude raw media, detect drift, and remain advisory. Strategy and engineering candidates stay inert until explicit evidence and human promotion.
  • Autonomous Healing Engine (opt-in): passively watches CPU/memory/disk and plans a remediation goal through the normal Planner/Executor pipeline when one crosses its threshold β€” low-tier/reversible plans auto-execute, anything else is proposed and held for explicit confirmation β€” see SECURITY.md
  • Pre-execution target assessment: dry-run plans that click/type/select on the current page get checked against the live DOM before you confirm β€” a missing, hidden, or ambiguous target raises that action's risk and shows why, instead of the same generic description every browser action used to get β€” see SECURITY.md
  • Interactive Execution Companion: reviews every proposed plan independently, can warn/revise/stop work that drifts from the request, accepts typed or spoken live corrections during planning/execution/verification, and supplies grounded next ideas only after a verified result. Optional step narration remains user-controlled.
  • Simulate before executing (opt-in, autonomous tasks only): before an unattended background task commits to an action, pause and show a real screenshot with the target UI element highlighted β€” plus, for browser actions, a real measured before/after DOM diff from an isolated dry-run tab β€” and wait for you to confirm or stop; never a generated image β€” see SECURITY.md
  • Natural local speech: Kokoro is the default daemon-side voice, with selectable presets, coordinated single-channel playback, and speech-start barge-in. Pocket TTS remains selectable, and both neural engines fall back to the platform voice when unavailable.
  • Mid-flight cancellation: a Stop button in the chat panel really kills the currently in-flight command β€” a mid-flight shell subprocess is genuinely killed (proc.kill()), and PTY sessions are interrupted on demand β€” instead of only stopping the next action in the plan β€” see SECURITY.md
  • User Manual Supervision (opt-in): watches your own independent screen/keyboard/mouse activity β€” not anything Heliox executes β€” to offer cognitive coaching and warn about risky-looking content; the keyboard/mouse hook is a separate, starker opt-in gated behind a one-time "I understand" confirmation, and nothing typed or clicked is ever saved or sent anywhere, only the fact that a risk pattern matched β€” see SECURITY.md
  • Gesture cursor control is off by default β€” the continuous gesture-to-cursor bridge drives the real OS mouse cursor and is the one feature in this app that acts without a per-action confirmation gate, so it requires an explicit opt-in in Settings and always exits instantly on an open palm, the panel's stop button, or disabling the toggle
  • Reviewed plugin marketplace β€” the app installs only catalog-approved packages, verifies every declared SHA-256 digest, signs the local installation, and routes planner-triggered plugin actions through the normal permission system
  • Command whitelist with optional unrestricted mode
  • Encrypted API key storage via platform keyring (GNOME Keyring / Windows Credential Manager)
  • API keys are NEVER logged, included in plans, or sent to local LLMs

Permission Tiers

Tier Level Auto-Execute Examples
0 - Read Only 🟒 Yes file_read, system_info, clipboard_read
1 - User Write 🟑 Yes file_write, clipboard_write, env_set
2 - System Modify 🟠 Needs Confirm package_install, service_restart, wifi_connect
3 - Destructive πŸ”΄ Needs Confirm file_delete, process_kill, power_shutdown
4 - Root Critical β›” Needs Confirm root operations, disk operations

Tier isn't the whole story: some Tier 2 actions (e.g. api_send_email, ssh_command) are flagged irreversible even though they're not "destructive" in the traditional sense β€” there's no local snapshot to roll them back with once they fire.

Configuration

Config file: ~/.config/heliox-os/config.toml

[model]
provider = "ollama"           # "ollama" | "cloud"
ollama_model = "llama3.1:8b"
cloud_provider = "gemini"     # "gemini" | "openai" | "claude" | "meta"

[security]
root_enabled = false
confirm_tier2 = true
unrestricted_shell = false
snapshot_on_destructive = true
snapshot_backend = "auto"

[server]
host = "127.0.0.1"
port = 8785

[proxy]
http = "http://proxy.example.com:8080"
https = "http://proxy.example.com:8080"
no_proxy = "localhost,127.0.0.1"

[vision]
camera_index = 0
mediapipe_backend = "tasks" # default; "legacy" is the 2D compatibility backend
gaze_tracking_enabled = false

[gesture_cursor]
enabled = false

[gateway]
enabled = true
risk_gate_enabled = true

[voice]
tts_engine = "kokoro_tts"    # natural local voice; falls back to the OS voice if unavailable

[screen_vision]
capture_interval_seconds = 3.0

πŸ› οΈ Troubleshooting

Frequently Asked Questions (FAQ)

Q1: The daemon fails to start β€” what should I check?

A: First, verify you are using Python 3.11+. Check your version with python --version. The desktop app starts the daemon and keeps reconnecting while first-run models initialize. If it remains offline, check ~/.local/state/heliox-os/pilot.log and ensure port 8785 is free.

Q2: I get an API key error even though I entered one.

A: Heliox OS stores API keys only in your operating-system credential store: Secret Service-compatible keyring on Linux, Credential Manager on Windows, or Keychain on macOS. It fails closed instead of falling back to a machine-derived encrypted file. A legacy vault.enc is ignored and left untouched; re-enter those keys through Settings. Heliox does not use .env files. On Linux, ensure a Secret Service provider such as GNOME Keyring is installed and unlocked.

Q3: How do I switch from Ollama to a cloud LLM?

A: You can change your model provider in the ~/.config/heliox-os/config.toml file. Under the [model] section, set provider = "cloud" and specify your cloud_provider (e.g., "gemini", "openai", "claude", or "meta"). "meta" talks to Meta's Muse Spark 1.1 via the Meta Model API (public preview as of July 2026) β€” it's OpenAI-chat-completions-compatible, so it shares the same request path as "openai".

[model]
provider = "cloud"
cloud_provider = "gemini"

Q4: Voice detection isn't working on Linux.

A: Install the voice extra, ensure PortAudio is available for sounddevice, select the correct input in Settings, and grant microphone permission to the terminal or Heliox app. The UI keeps push-to-talk retryable after a denied permission instead of requiring a reload.

Q5: Hand gesture control requires a webcam β€” which ones are supported?

A: Any standard USB or integrated webcam exposed by the browser/WebView media API should work. Hand tracking uses MediaPipe Hands or MediaPipe Tasks; gaze uses MediaPipe FaceLandmarker and remains on-device. If the camera is unavailable, close other camera users, grant camera permission, and set camera_index under [vision] if the daemon-side vision path needs a non-default device. Gesture and gaze inference share the same camera stream, so enabling gaze must not suppress hand tracking.

Q6: Port already in use (8785 or 8786).

A: Heliox OS uses port 8785 for the API and 8786 for mesh networking. If these ports are occupied, you can identify and stop the conflicting process:

Linux/macOS:

lsof -i :8785
kill -9 <PID>

Windows:

netstat -ano | findstr :8785
taskkill /PID <PID> /F

Q7: Frontend Not Starting.

A: If the UI fails to launch, try clearing the npm cache and reinstalling dependencies:

cd tauri-app/ui
npm ci
npm run dev

Ensure all frontend dependencies are installed successfully before starting the app.

Q8: Do Pocket TTS or the learned world model require CUDA?

A: No. Both supported paths are CPU-capable and no NVIDIA GPU is required. If an optional neural package reports missing Windows runtime DLLs, install the Microsoft Visual C++ Redistributable and reinstall the relevant daemon extra from 64-bit Python. Only use a CUDA-specific build for an optional model you intentionally configured.

πŸ“– Developer Guides & Documentation

To help newcomers and contributors navigate the Heliox-OS codebase, please refer to the following comprehensive documentation guides:

  • πŸ” Forensics Agent Runbook β€” Learn about the autonomous threat containment pipeline, the JSON schema for forensics logs, and the Tier 3/4 Security Gate.
  • 🧭 Architecture β€” Process boundaries and the complete 11-layer ledger, durable-loop, context, companion, world-model, learning, security, harness, and specialist-mesh design.
  • βš™οΈ Agent Development Guide β€” Step-by-step instructions on designing and registering custom specialist agents.
  • πŸ’¬ IPC Message Formats β€” Detailed specification of frontend-to-daemon WebSocket payloads and schemas.
  • πŸŽ›οΈ Gesture Control Guide β€” Setup, privacy behavior, MediaPipe backends, gaze fusion, cursor control, and gesture mappings.
  • πŸ”’ Security Policy β€” Permission tiers, OS credential stores, capability boundaries, audit chains, and rollback.
  • πŸ”Œ Plugin Marketplace β€” Reviewed package format, capability grants, moderation, installation, and constrained execution.
  • ⚑ Model Cache β€” Internal mechanics of model-response caching.

🀝 Contributing

We love contributions! Whether it's adding a new gesture, fixing a bug, or building a new plugin, check out our guides to get started.

  1. Read our Contributing Guide to set up your dev environment.
  2. Check the Good First Issues tab to find beginner-friendly tasks.
  3. Review our Code of Conduct.
  4. Join the community discussions in GitHub Discussions.

License

MIT

About

An open-source, privacy-first AI System Control Agent (JARVIS-like) using voice and hand gestures

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages