
Self-Programming AI Assistant. Capture, automate, and refine all your workflows.
Getting Started · Install · Docs · API Reference · Philosophy · 中文
"The more constraints one imposes, the more one frees oneself." — Igor Stravinsky, Poetics of Music
We propose Agentic Programming. An LLM is flexible; code is deterministic. Let the model run everything and you get chaos — unpredictable execution, context explosion, no output guarantees; hard-code everything and you lose the intelligence. A harness balances the two, interleaved moment to moment — Python for the flow you want fixed, the LLM for the judgement you can't script. (the full rationale →)
Contents
- Install
- Quick start
- Integrated Projects
- News
- Why OpenProgram?
- Also in the product
- Citation
- License
- Acknowledgements
Install
curl -fsSL https://openprogram.io/install | sh
Windows x86_64 or arm64 CLI/server (requires a release with Windows runtime assets):
irm https://openprogram.io/install.ps1 | iex
If the selected release has no Windows runtime ZIP and checksum, use the Windows source-development installation.
Desktop: macOS releases use the signed and notarized DMG; Windows uses a signed win-x64.exe or win-arm64.exe when that artifact is attached to the GitHub Release. Linux and Windows without that EXE use the complete CLI/server runtime and Web UI.
Platform matrix, PATH, openprogram doctor, and source-checkout install: Installation.
Quick start
The first openprogram run opens a provider setup wizard, then the terminal chat. Re-run the wizard with openprogram setup.
openprogram
Open the Web UI at http://localhost:18100:
openprogram web
Confirm with one printed reply:
openprogram --print "Introduce yourself in one sentence"
Details: Getting Started.
Integrated Projects
Our open-source projects cover desktop automation, research workflows, and agent memory. Visit their repositories for source code, documentation, and contributions.
| Project | What it does |
|---|---|
| GUI Agent Harness | GUI Automation Operates desktop apps with screenshots and actions. |
| Research Agent Harness | Research Automation Automates literature reviews, experiments, and paper drafts. |
| Scriptorium | Agent Memory Stores and retrieves source-cited Markdown memories via MCP. |
Install more: openprogram programs install / (guide).
News
- 2026-08-17 — Built-in browser: multiple panes, bookmarks, History, and Agent control of visible pages.
- 2026-07-21 — Multi-agent:
spawnsub-agents, message across sessions, file-touching branches in git worktrees. - 2026-06-22 — 📄 Paper accepted at the KDD 2026 Workshop on Agentic Software Engineering (arXiv:2606.15874).
- 2026-06-07 — Installable harnesses and multi-account providers with automatic key rotation.
- 2026-05-28 — The Web UI design system.
- 2026-04-04 — Built-in Anthropic / OpenAI / Gemini providers.
- 2026-04-03 — 🌱 First release:
@agentic_functionand the execution DAG.
Why OpenProgram?
OpenProgram supports macOS and Linux installations, native Windows x86_64/arm64 CLI/server, multiple providers, and a Web interface (Desktop App or openprogram web → http://localhost:18100). The Windows Desktop distribution path produces a signed per-user installer and embeds the same complete runtime; Windows sandbox execution remains a separate level. The harness itself provides four mechanisms — one primitive and the three capabilities it enables.
1. Agentic Function — the primitive everything else is built on

An agent is a Python function. You write it like any other function. The docstring is the system prompt: it tells the model what this agent does. Each argument is input for this run. A str argument is the task. In this example the task is the ticket to classify. You do not store the prompt or the JSON as separate variables. They are written as code. choices=[...] asks again until the answer is one of those words.
Here is an example, compared with the common way:
| OpenProgram | The common way |
|---|---|
🤖 |
|
2. DAG Context — for native multi-agent systems
<source media="(prefers-color-scheme