holaOS: The Open-Source Agent Computer That Wants to Reshape Your Desktop
Most AI agent tools live in the cloud. You prompt them, they do a thing, the context evaporates. holaOS takes a fundamentally different position: what if the agent lived on your computer, sharing your browser, files, and apps â not as a chatbot you visit, but as a persistent collaborator that accumulates knowledge over time?
What Is holaOS?
holaOS is an open-source Electron desktop app built in TypeScript and licensed under MIT. It calls itself an âopen agent computer for ANY digital workâ â a phrase that sounds like marketing until you look at the architecture. The project reimagines your desktop as a shared environment where you and AI agents operate side by side, with full access to the same browser, files, and applications.
Itâs macOS-first today, with Windows and Linux support in progress. Installation is a one-liner:
curl -fsSL https://raw.githubusercontent.com/holaboss-ai/holaOS/main/scripts/install.sh | bash -s -- --launch
The âAgent Computerâ Concept
The key idea is that agents shouldnât be stateless API calls â they should be persistent entities that live somewhere. In holaOS, that somewhere is a workspace: a self-contained environment with its own agent identity, memory, installed apps, and skills. You might have one workspace for LinkedIn content management, another for inbox triage, another for competitive research. They donât share state.
Each workspace agent carries memory across sessions. It remembers past decisions, accumulated context, and prior outputs. Its behavior is defined by an AGENTS.md file you can read and edit directly â the agent loads it at the start of every run. This is refreshingly transparent compared to systems where agent behavior is buried in opaque configurations.
Apps (LinkedIn, Gmail, GitHub, Sheets) give agents real actions on real platforms. Skills are markdown instruction packs that encode reusable patterns â how to write in your voice, how to structure a weekly report. Automations let workspaces run on schedules without manual prompting.
Environment Engineering: The Thesis That Makes This Interesting
The most intellectually honest part of holaOS is its documentation on environment engineering â a concept that distinguishes between making a single run work well (harness engineering) and making the operating context durable across runs (environment engineering).
The distinction matters. Most agent frameworks are harness-first: they optimize tool calls, retries, permissions, and context windows for a single execution. holaOS argues that once an agent takes on a role rather than a task, you need answers to harder questions: Where do standing instructions live? What memory is durable versus volatile? How is continuity restored after interruption?
Their memory model separates three layers explicitly:
- Standing workspace policy â authored files like
AGENTS.md - Runtime continuity â session state, turn results, and resumption artifacts
- Durable memory â facts, procedures, preferences, and identity stored in structured markdown
This hot/warm/cold context layering (whatâs in the prompt now vs. whatâs retrievable vs. whatâs durable) is more thoughtful than most agent systems Iâve seen. The âharness-swap testâ they propose â if you replaced the execution runtime tomorrow, what should still remain true? â is a genuinely useful design question.
How It Differs from Agent Frameworks
This is not LangChain, CrewAI, or AutoGen. Those are libraries and orchestration layers â you compose agents in code and deploy them as services. holaOS is a desktop application. You install it, open it, and interact with it like you would any other app on your Mac.
Itâs closer in spirit to Open Interpreter, which also runs locally and operates on your actual files. But Open Interpreter is primarily a CLI that executes code on your behalf. holaOS goes further â it provides a full workspace model, persistent memory across sessions, app integrations, and a template system for sharing pre-configured agent setups.
The comparison to computer-use agents (like Anthropicâs or OpenAIâs Operator) is also relevant, but those typically work through screenshots and mouse clicks. holaOS agents operate through structured APIs and app integrations â more reliable, less brittle.
Whatâs Actually Working vs. Whatâs Early
Letâs be honest about where this sits. The architecture and documentation are impressively thoughtful â the environment engineering thesis alone is worth reading even if you never install the app. The workspace model, memory separation, and inspectability story are well-designed.
Whatâs working: the macOS desktop app launches, workspaces function, the memory and continuity model is implemented, and app integrations exist for major platforms. The template marketplace lets you fork pre-built workspace configurations.
Whatâs early: Windows and Linux support arenât there yet. The project is young â community adoption is still building. The âagent computerâ vision is ambitious enough that execution gaps are inevitable. Whether the memory model scales gracefully over months of accumulated context is an open question. And like any Electron app, resource overhead is a consideration.
The MIT license and fully open codebase are genuine strengths. You can inspect everything â agent memory, decision traces, standing instructions. In a space full of closed systems, that transparency matters.
Bottom Line
holaOS is betting that the next evolution of AI isnât better chatbots â itâs agents that share your actual computing environment and get better over time. The environment engineering thesis is the strongest part: the idea that durable context, inspectable memory, and role-based continuity need to be first-class design concerns, not afterthoughts bolted onto a task runner.
Itâs early, itâs ambitious, and itâs worth watching. If youâre building on agent infrastructure or just tired of re-explaining context to ChatGPT every session, give it a look.