[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-83295":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":18,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":21,"hasPages":21,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":34,"readmeContent":35,"aiSummary":10,"trendingCount":15,"starSnapshotCount":15,"syncStatus":36,"lastSyncTime":37,"discoverSource":38},83295,"ordinus","muratgur\u002Fordinus","muratgur","Your local-first command center for working with AI agents like a real team.","",null,"TypeScript",79,4,1,0,24,25,72,2.1,"MIT License",false,"master",[24,25,26,27,28,29,30,31,32,33],"agent-orchestration","ai-agents","claude","codex","desktop","electron","gemini","local-first","typescript","workflow-engine","2026-06-12 02:04:33","![Ordinus](docs\u002Fscreenshots\u002Fhero-banner.gif)\n\n# Ordinus\n\n> A local-first desktop app that lets you compose AI agents from your own Codex \u002F Claude \u002F Gemini CLIs into scheduled workflows — all your data stays on your machine.\n\n\u003C!-- TODO: replace placeholder pitch above with final wording -->\n\n[![Download](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdownload-latest-blue)](https:\u002F\u002Fgithub.com\u002Fmuratgur\u002Fordinus\u002Freleases\u002Flatest)\n[![License: MIT](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-MIT-green)](LICENSE)\n![Electron](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FElectron-39-47848F?logo=electron&logoColor=white)\n![Built with Claude](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fbuilt%20with-Claude%20Code-d97757)\n\n---\n\n## Download\n\nPick your platform from the [latest release](https:\u002F\u002Fgithub.com\u002Fmuratgur\u002Fordinus\u002Freleases\u002Flatest):\n\n| Platform | File |\n|---|---|\n| **macOS** (Apple Silicon) | `Ordinus-\u003Cversion>.dmg` |\n| **Windows** (x64) | `ordinus-\u003Cversion>-setup.exe` |\n\n> Builds are unsigned for now, so your OS will warn you before launching. The app is fully local-first — nothing is uploaded anywhere.\n\n### First launch — macOS\n\nThe DMG is unsigned, so macOS Gatekeeper will refuse to open it with a misleading **\"Ordinus is damaged and can't be opened\"** message. The app is not damaged — Gatekeeper just blocks unsigned apps that carry the quarantine attribute set by your browser.\n\n1. Open the `.dmg` and **drag `Ordinus.app` onto the `Applications` shortcut** (don't double-click the icon inside the DMG window — that runs it from a read-only volume).\n2. In Terminal, strip the quarantine attribute, then launch:\n\n   ```bash\n   xattr -dr com.apple.quarantine \u002FApplications\u002FOrdinus.app\n   open \u002FApplications\u002FOrdinus.app\n   ```\n\nYou only do this once. After the first launch, the app opens normally.\n\n### First launch — Windows\n\nSmartScreen will show **\"Windows protected your PC\"**. Click **More info** → **Run anyway**.\n\nThe installer puts Ordinus under `Program Files` and creates a Start Menu \u002F Desktop shortcut. Subsequent launches open without prompts.\n\n## What it does\n\n![Agents](docs\u002Fscreenshots\u002Fagents.png)\n\n**Agents.** Compose roles (article writer, code reviewer, security engineer, …) backed by your local AI CLIs. Each agent has a profile, capabilities, and its own conversation space.\n\n![Workflow Designer](docs\u002Fscreenshots\u002Fworkflow-designer.png)\n\n**Workflow Designer.** Visually wire agents and tasks into a DAG. Compiles down to a runnable plan; reuse the same engine across manual runs and schedules.\n\n![Workboard](docs\u002Fscreenshots\u002Fworkboard.png)\n\n**Workboard.** Watch tasks execute, inspect provider output, and steer runs in flight.\n\n## Why local-first\n\n- Your prompts, conversations, and workflow definitions live in a local SQLite database — no cloud account, no per-seat pricing.\n- Providers run as local CLI processes (Codex, Claude, Gemini). Ordinus orchestrates them; it does not proxy your tokens through a third-party service.\n- No telemetry. No phone-home.\n\n## Build from source\n\nRequires Node.js `22.13.0+` and the platform toolchains electron-builder needs.\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002Fmuratgur\u002Fordinus.git\ncd ordinus\u002Fapp\nnpm ci\nnpm run dev          # run in dev mode\nnpm run build:mac    # produce a .dmg under app\u002Fdist\nnpm run build:win    # produce a .exe installer under app\u002Fdist\n```\n\nFor Windows builds on a non-signing machine, use `npm run build:win:local`.\n\n## Use cases\n\nReal projects built end-to-end with Ordinus — original prompt, agent crew, workflows, and what came out.\n\n[**Shape Survivor**](use-cases\u002Fshape-survivor\u002F) — a complete Godot Brotato-like with 6 characters, 7 weapons, 8 waves, and a boss, built in ~12 hours by a 6-agent crew across 142 tasks. Zero human-written code.\n\n[Browse all use cases →](use-cases\u002F)\n\n## Status\n\nOrdinus is pre-1.0. APIs, schemas, and the UI may change between releases. The 0.x line is a public showcase — feedback welcome, but breaking changes will happen without ceremony.\n\n## Built with Claude Code\n\nThis project is developed AI-assisted using [Claude Code](https:\u002F\u002Fclaude.ai\u002Fcode). The `.claude\u002Fskills\u002F` directory contains the project-specific skills (architecture guides, IPC contracts, secure-boundary rules, etc.) that shape how the AI collaborates on the codebase. If you're curious about agent-assisted development workflows, those files are worth a read.\n\n## Documentation\n\n- [Architecture](docs\u002Farchitecture.md)\n- [Provider runtime contract](docs\u002Fprovider-runtime-contract.md)\n- [Packaging & release](docs\u002Fpackaging-release.md)\n- [Product brief](docs\u002Fproduct-brief.md)\n- [Agent guide](AGENTS.md)\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md). Small, well-scoped changes are easiest to land.\n\n## Security\n\nSee [SECURITY.md](SECURITY.md) for private vulnerability reporting.\n\n## License\n\n[MIT](LICENSE) © 2026 Murat Gür\n",2,"2026-06-11 04:10:49","CREATED_QUERY"]