A local-first AI workspace — multi-provider chat, an autonomous coding agent, and multi-agent swarms in one native desktop app.
No backend. No telemetry. No account. MIT-licensed.
Ten workspaces — chat, an autonomous coding agent, multi-agent swarms, nine specialist agents, a real Python sandbox, financial document analysis, a security scanner, 3D planning and a virtual project desktop — behind one window.
Every AI request goes straight from your machine to the provider whose key you entered. Nothing passes through HashCortx infrastructure, because there is no HashCortx infrastructure. Point it at Ollama and it runs with the network off — everything except the Python sandbox, which fetches its runtime on first use.
| Type | Native desktop app (Tauri v2) |
| Runs on | macOS Apple Silicon — built and used daily. Linux and Windows compile and pass their tests in CI, but nobody has run the app there yet |
| License | MIT |
| Latest release | v2.0.0 (May 2026), 8 MB |
Current main |
41.2 MB — 7 MB app, 34 MB bundled embedding model. Not yet released |
| AI providers | 11 cloud (Groq, Gemini, OpenAI, Anthropic, Moonshot, DeepSeek, Mistral, Cerebras, SambaNova, OpenRouter, NVIDIA NIM) + Ollama |
| Stack | Rust · vanilla JavaScript · no bundler · no framework · ~30,600 lines JS, ~1,820 Rust |
| Tests | 34 Rust, 72 frontend checks, CI on Linux, macOS and Windows |
| Telemetry · backend · accounts | None · None · None |
mainis ahead of the release. v2.0.0 predates the offline knowledge base, the security fixes and the cross-platform work described below. Build from source if you want what is written here.
Nothing phones home. No analytics, no crash reporting, no update pings. The only outbound connections are to providers you configured yourself.
Your keys, your models. Eleven cloud providers and Ollama, configured at once, switched freely, mixed inside a single swarm run.
The agent asks before it acts. File and shell calls hit a Rust permission gate and a compiled denylist that no prompt can talk its way past.
Search that understands meaning. Ask about "stopping a runaway command" and your notes about killing a process on timeout come back — from a model that ships inside the app and never sends anything anywhere.
You can audit it. MIT, no build step, no minified application code. Read it, fork it, ship your own.
| Workspace | What it does | |
|---|---|---|
| 01 | Chats | Multi-provider chat with projects, attachments, slash commands, full history |
| 02 | Agents | Nine built-in specialists, plus a no-code builder for your own |
| 03 | Coder | The coding agent: file tree, real file edits, shell access, browser panel |
| 04 | Split | One prompt, two models, streamed side by side |
| 05 | 3D Forge | Structured node and mesh plans for game levels and spatial design |
| 06 | Finance | Statements, CSV, PDF and XLSX into KPIs and charts. Never invents a number |
| 07 | Sandbox | Agents scanning untrusted code for malware, prompt injection, suspicious logic |
| 08 | ERP | Describe a workflow, get a working interactive prototype |
| 09 | Agent Swarm | Chain mode, vote mode, automatic provider failover mid-run |
| 10 | Virtual OS | A simulated project desktop an agent works inside |
The nine agents, the Python sandbox and every workspace in detail: MODES_GUIDE.txt · Wiki → Features
The agent reads your real files, edits them, runs commands, and shows every change as a diff you can expand. It does not get to do any of that quietly.
Every filesystem and shell call passes through HC.guard.request() and lands in Rust, where a compiled denylist refuses anything touching ~/.ssh, ~/.aws, ~/.gnupg, the system directories, or HashCortx's own stored keys — whether the path arrives as a file operation or inside a shell command. Inside the folder you opened, the agent works without interrupting you. Outside it, everything asks first, including reads, because an agent that reads a file is an agent that can send it to a provider.
Every command is bounded: a five-minute timeout, closed stdin, a 512 KB output cap. Full detail, and the honest limits: SECURITY.md.
Chain mode hands each agent's output to the next. Vote mode runs one prompt across several models and has a judge score the answers. If a provider rate-limits or dies mid-run, the swarm swaps to another one you configured and carries on with the same context.
Anything you ingest becomes searchable by meaning, not just by matching words — bge-small-en-v1.5 (MIT) ships inside the app and runs natively in Rust. It is inference-only: a sentence encoder, not a language model.
- Nothing is fetched. No first-run download, no cache to warm. It works offline on first launch.
- Nothing is sent. What you index never crosses a network boundary.
- 34 MB of the download. That is the price of the two lines above, paid once.
Results are ranked by meaning and by keyword at once, then fused — so a rare error code still finds its exact match while a paraphrased question still finds the right passage.
Download the DMG from the latest release, open it, drag HashCortx to /Applications. That release is v2.0.0 and predates the work described above — build from source for that.
The build is unsigned and not notarised, so on first launch right-click the app and choose Open, then Open again. If macOS still refuses:
xattr -dr com.apple.quarantine /Applications/HashCortx.appThen open Settings → Providers, add a key, press Test. Or skip keys entirely and point it at Ollama.
git clone https://github.com/Hash-7777/HashCortX.git
cd HashCortX
npm install
npm run tauri dev # live-reload development
npm run tauri build # DMG in src-tauri/target/release/bundle/dmg/Node 18+ and a Rust toolchain via rustup, plus macOS: Xcode Command Line Tools · Linux: Ubuntu 24.04+ and the Tauri v2 system libraries (glibc 2.38+ is required to link the bundled ONNX Runtime) · Windows: MSVC build tools and WebView2.
Before pushing, run what CI runs:
npm run check # scripts parse, guard, retrieval, agent context
cargo test --manifest-path src-tauri/Cargo.toml # 34 tests| Layer | Technology |
|---|---|
| Shell | Tauri v2 — Rust core, the system webview, no Chromium |
| Backend | Rust: filesystem, shell, audit log, usage log, embeddings, Keychain migration |
| Security | Compiled denylist in security/denylist.rs, permission prompt via HC.guard.request() |
| Frontend | Vanilla JavaScript. No React, no TypeScript, no bundler, no build step |
| Embeddings | bge-small-en-v1.5 (MIT) compiled into the binary, run via ONNX Runtime |
| Python | Pyodide (CPython on WebAssembly) with pandas, numpy, matplotlib, python-docx, openpyxl, reportlab |
| Vendored libs | marked, highlight.js, DOMPurify, mermaid, pdf.js, jsPDF, three.js — all local, no CDN |
No bundler is a deliberate constraint. It keeps the application itself around 7 MB and lets any reader follow a feature from the button that triggers it to the Rust function that performs it, without a source map.
ARCHITECTURE.md · SECURITY.md · CONTRIBUTING.md · CHANGELOG.md
No backend, no telemetry, no accounts, no auto-updater. The binary makes no network call except to the provider endpoints you set up.
A permission gate in Rust. Sensitive paths are denied unconditionally, whether they arrive as a file operation or inside a shell command. Every guarded action is logged to ~/.hashcortx/audit.log.
Keys are not encrypted. They sit in an app-scoped local directory protected by your user account, not by Keychain encryption — because a Keychain item's access list is bound to the code signature, and an unsigned build would re-prompt for every key on every update. Code signing is on the roadmap; the reasoning is written out in full in SECURITY.md.
Measured usage, not guessed. One JSON line per response to ~/.hashcortx/usage.jsonl — timestamp, model id, token counts. No prompt, no answer, no file names. Counts come from the provider's own metadata; if a provider reports none, HashCortx writes nothing rather than estimating. HashMeterAi reads that file if you install it.
jq -s 'map(.input_tokens + .output_tokens) | add' ~/.hashcortx/usage.jsonlSource-grounded modes. Published Papers Researcher, Medical Lexi-Check and Finance are constrained never to fabricate data.
Best effort as of August 2026. If something is out of date, open an issue.
| HashCortx | Cursor | Claude Code | Continue | Aider | Cline | Zed | |
|---|---|---|---|---|---|---|---|
| Type | Native app | VS Code fork | CLI | Extension | Terminal CLI | Extension | Native editor |
| License | MIT | Proprietary | Proprietary | Apache 2.0 | Apache 2.0 | Apache 2.0 | GPL/AGPL |
| Free | Bring your own key | Subscription | Subscription or API | Yes | Yes | Yes | Yes |
| Cloud providers | 11 | Limited | Anthropic only | Many | Many | Many | Several |
| Local models (Ollama) | Yes | Limited | No | Yes | Yes | Yes | Yes |
| Multi-agent swarms | Yes | No | No | No | No | No | No |
| Workspaces beyond coding | 10 | No | No | No | No | No | No |
| Built-in specialist agents | 9 | None | None | None | None | None | None |
| Telemetry | None | Yes | Opt-out | Opt-in | None | None | Opt-in |
Is it free? Yes. MIT, no paid tier, no usage caps. You pay the AI providers directly, or nothing at all with Ollama.
Does it work offline? Yes, with Ollama. The knowledge base works offline regardless. Cloud providers need the internet.
Which systems? macOS Apple Silicon is built and used daily. The code compiles and passes its tests on Linux and Windows, and CI runs all three on every push — but nobody has launched the app there, so treat those as buildable rather than supported. If you try it, an issue saying what happened would genuinely help.
Does it send my code anywhere? Only to the provider you configured, when you send a message. There is no HashCortx server.
Are my API keys encrypted? No — see above.
Was it built with AI? Yes, heavily. Roughly 30 million tokens across Claude, GPT and other frontier models during the v2.0.0 build, under human architecture, review and correction. Disclosed because HashCortx is itself an AI tool, and hiding that would be incoherent. Every product decision — the ten-workspace structure, the local-first rule, the Permission Guard, the swarm failover pattern, the source-grounding constraints — is the author's.
More at Wiki → FAQ.
- A release cut from
main, so the download matches this README - Code signing and notarisation, which also unlocks Keychain key storage
- Someone actually running the app on Linux and Windows — compiling and passing tests is not the same thing
- Continued extraction of
app.jsinto focused modules - Permission Guard coverage for Virtual OS and 3D Forge
- Reaching the knowledge base from Coder mode, which still cannot see it
Suggest something in Issues or Discussions.
Four local-first apps, same principles — no cloud, no telemetry, your data stays where it is.
| App | What it is | Licence |
|---|---|---|
| HashCortx (you are here) | The local-first AI workspace | MIT |
| HashCerebrum | Medical research workbench with a 3D brain interface | AGPL-3.0 |
| HashMeterAi | An honest local meter for how much AI you actually use | Apache-2.0 |
| Hash D Island | Turns the MacBook notch into a live activity island | GPL-3.0 |
They interlock, through files on your disk rather than a service:
- HashCortx appends real token counts to
~/.hashcortx/usage.jsonl, and HashMeterAi reads it — so your spend across every tool is measured in one place, by software that never phones home. - When a run finishes, HashCortx posts a short notice to
~/.hashdisland/activities.json, and Hash D Island lights up the notch — a title and a model name at most, never a prompt or an answer. If it is not installed, the file simply sits there unread.
Cmd/Ctrl + Shift + C toggle Coder · Cmd/Ctrl + Shift + N new chat · Cmd/Ctrl + K model picker
Author — Seif Hashish, independent open-source developer with a pharma and clinical background, which is where the refusal-to-fabricate constraints in the medical and finance modes come from. · hashcortx.com
License — MIT. See LICENSE.
HashCortx · One window · Twelve providers · Zero data leak · Local-first · MIT
Download · Wiki · Discussions

