Skip to main content

Vision-language agent that drives real macOS, Linux, and Windows apps. Powered by Holo3.

Project description

Holo Desktop

PyPI CI License: MIT

Tell your computer what to do. Holo gets it done. Open-source agent powered by Holo3, H Company's open-weight vision-language model. Use the hosted API, or run everything directly on your computer for full privacy.

Quickstart

pip install holo-desktop
holo run "Catch me up on Slack"

On first run:

  1. cua-driver auto-installs (macOS, Linux, Windows).
  2. Your browser opens to sign in at portal.hcompany.ai. Skip with --base-url for a local model.
  3. macOS only: grant your terminal Accessibility and Screen Recording in System Settings → Privacy & Security.

Run from the terminal

holo run "Open Safari and go to hcompany.ai"

Pin Holo to a specific window with --app:

holo run "Reply to the highlighted Slack thread" --app Slack

See holo run --help for all flags.

Use from Python

from holo_desktop import Holo

answer = Holo().run("Tell me how many unread emails I have")
print(answer)

The Holo class supports pause, resume, stop, and mid-run send for interactive embedding.

Models

Holo defaults to the H Company Models API. Your first holo run opens your browser, signs you in at portal.hcompany.ai, and saves a key to ~/.holo/.env. Run holo login to do this ahead of time. Holo3-35B is on the free tier; the 122B requires a paid plan.

To run everything on your own hardware instead, pass --base-url to any OpenAI-compatible server. No holo login needed, and no screenshots, keystrokes, or app content ever leave your machine.

holo run --base-url http://localhost:8000/v1 "Open Safari and go to hcompany.ai"

Holo3-35B-A3B fits comfortably on a recent MacBook Pro or Mac Mini at Q4. NVIDIA's DGX Spark runs both the 35B and 122B at higher precision and gives you the best agent quality on a single box. Multi-GPU rigs and rack servers serve the FP8 stack at full throughput.

vLLM and llama.cpp both work:

vLLM (Holo3-35B-A3B-FP8)

Per-request reasoning_effort is honored via chat_template_kwargs; think tokens are decoded with --reasoning-parser qwen3.

export VLLM_ATTENTION_BACKEND=FLASHINFER
export TORCH_CUDA_ARCH_LIST=12.1a

vllm serve Hcompany/Holo3-35B-A3B-FP8 \
  --host 0.0.0.0 --port 8000 \
  --tensor-parallel-size 1 --gpu-memory-utilization 0.85 \
  --max-model-len 65537 --max-num-batched-tokens 8192 --max-num-seqs 1 \
  --kv-cache-dtype fp8 --attention-backend flashinfer --enable-prefix-caching \
  --load-format fastsafetensors \
  --enable-auto-tool-choice --tool-call-parser qwen3_coder --reasoning-parser qwen3 \
  --chat-template-content-format openai \
  --limit-mm-per-prompt '{"image": 1}' \
  --mm-processor-cache-gb 4 --mm-processor-cache-type shm \
  --trust-remote-code
llama.cpp (Holo3-35B-A3B GGUF)

Quants by mradermacher/Holo3-35B-A3B-GGUF (community).

Reasoning behavior is fixed at server launch (--reasoning auto separates <think> from content). chat_template_kwargs is silently ignored, so per-request reasoning_effort falls back to logit-bias steering on the </think> token.

llama-server -hf mradermacher/Holo3-35B-A3B-GGUF:Q4_K_M \
  --host 0.0.0.0 --port 8000 \
  --jinja --reasoning auto \
  -c 65536 -ngl 99 \
  --chat-template-kwargs '{"enable_thinking": true}'

Use inside another agent

Holo runs as a sub-agent of Claude Code, Cursor, Codex, and other MCP / ACP hosts. When your main agent needs to read a screen or click through an app, it delegates to Holo and gets the answer back.

One command wires Holo into every supported host on your machine:

holo install               # everything detected
holo install cursor        # one host
holo install list          # see what's available

Each host gets the MCP server in its config, plus a Skill (where supported) that teaches the parent when to delegate to Holo.

id host skill auto-load
claude-code Claude Code ~/.claude/skills/
claude-desktop Claude Desktop
codex Codex ~/.agents/skills/
copilot GitHub Copilot CLI
cursor Cursor
gemini Gemini CLI
hermes Hermes
openclaw OpenClaw ~/.openclaw/skills/
opencode OpenCode ~/.config/opencode/skills/

ACP

holo acp runs Holo as an ACP sub-agent over stdio.

Hermes (NousResearch):

delegate_task(acp_command="holo acp", task="Open Authy and grab my AWS 2FA code")

OpenClaw~/.openclaw/openclaw.json:

{ "runtimes": { "holo": { "runtime": "acp-standard", "command": "holo", "args": ["acp"] } } }

Zed~/.config/zed/settings.json:

{ "agent_servers": { "Holo Desktop": { "command": "holo", "args": ["acp"] } } }

JetBrains, Neovim (avante.nvim, CodeCompanion.nvim): point any ACP client at holo acp.

Develop

git clone https://github.com/hcompai/holo-desktop && cd holo-desktop
make setup

See CONTRIBUTING.md and RELEASING.md.

Resources

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

holo_desktop-0.1.0.tar.gz (74.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

holo_desktop-0.1.0-py3-none-any.whl (87.7 kB view details)

Uploaded Python 3

File details

Details for the file holo_desktop-0.1.0.tar.gz.

File metadata

  • Download URL: holo_desktop-0.1.0.tar.gz
  • Upload date:
  • Size: 74.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for holo_desktop-0.1.0.tar.gz
Algorithm Hash digest
SHA256 cf3cef097d10fcd10aa433c5d7b8de0550880e223817b6d211aeb23a6b3622c3
MD5 372bcf2ab3c71c7a2636a55be4ebf6a4
BLAKE2b-256 80ea7ed8acf0a87cb21f054247f6a479a8991665b31c96a1b58bb70391d8ffc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for holo_desktop-0.1.0.tar.gz:

Publisher: publish.yml on hcompai/holo-desktop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file holo_desktop-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: holo_desktop-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 87.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for holo_desktop-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5f6a41f93d33833fd95dcce2bb9cd416e58e847de6933cd341b25ed6898a465a
MD5 a857c2f991040a10be9fb408e3ec2be3
BLAKE2b-256 e301f76f7440258eea465ceef099f7c3aea259463b6af1eb8f3674c80d08ac27

See more details on using hashes here.

Provenance

The following attestation bundles were made for holo_desktop-0.1.0-py3-none-any.whl:

Publisher: publish.yml on hcompai/holo-desktop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page