by OpenCowAI
One task, one agent, delivered. The open-source platform for task-driven autonomous AI agents.OpenCow assigns an autonomous AI agent to every task โ features, campaigns, reports, audits โ and delivers them in parallel. Full context. Full control. Every department. ๐
# Add to your Claude Code skills
git clone https://github.com/OpenCowAI/opencowThe open-source platform for task-driven autonomous AI. Every task becomes an autonomous agent โ campaigns, reports, features, audits ship in parallel. For every team.
How It Works ยท Features ยท Quick Start ยท Architecture ยท Contributing
| Step | What happens | |:----:|:-------------| | Create | Write a task, not a prompt. Describe the deliverable โ a campaign, a report, a feature, an audit. OpenCow links full context: project files, prior work, related tasks. | | Dispatch | One task, one agent. Each task gets a dedicated agent with full context โ project knowledge, team playbooks, organizational standards. 15 tasks, 15 agents, in parallel. | | Deliver | Agents research, draft, build, and publish โ autonomously. Real-time progress, instant notifications, approval gates at every step. Review. Ship. |
No comments yet. Be the first to share your thoughts!
Everything to turn your task list into a parallel AI workforce.
Built-in task tracker where every task becomes an agent. Break projects into sub-tasks, each with a dedicated agent. Your task list IS your delivery plan.
1 Task = 1 Agent ยท Sub-task hierarchy ยท Auto-linked context
Equip agents with your org's knowledge, standards, and tools. Skills, playbooks, integrations โ every agent follows your processes.
Custom skills ยท 6 capability types ยท Auto-sync standards
Real-time dashboard. Track every agent's progress and actions. Approve deliverables. One screen, full visibility.
Live monitoring ยท Task-linked status ยท Approval gates
Dispatch agents from Telegram, Discord, WeChat, or Lark. Schedule recurring workflows. Get notified via webhooks.
4 IM platforms ยท Natural language ยท 7 schedule types
No plugins. No integrations to configure. Every capability your AI workforce needs.
Task & Agent Core Task Tracker ยท Agent DashboardLive Monitor ยท Multi-Project
Intelligence Intelligence Hub ยท MarketplaceBuilt-in Browser ยท Artifacts
Automation Scheduling ยท WebhooksNotifications ยท Live Preview
Command & Control IM Command ยท TerminalCommand Palette ยท Themes
The design decisions that define OpenCow.
| | Principle | What it means | |:---:|:----------|:-------------| | 1:1 | Task โ Agent | One task, one agent. Full context. Full traceability. Zero ambiguity. | | โ | Local & Private | Everything runs on your machine. Zero telemetry. Zero cloud. Your data never leaves. | | 15+ | Parallel Agents | Deliver 15+ tasks simultaneously. Suspend and resume any agent without losing context. | | 4-Layer | Deep Context Engine | Every agent inherits organizational knowledge, project context, team standards, and task-specific instructions. |
# Clone the repository
git clone https://github.com/OpenCowAI/opencow.git
cd opencow
# Install dependencies
pnpm install
# Launch in development mode (HMR enabled)
pnpm dev
Grab the latest release from opencow.ai/download โ free, open source, ready in 60 seconds.
| Layer | Choice | Why |
|-------|--------|-----|
| Desktop | Electron 40 | Cross-platform, native-grade experience |
| UI | React 19 + Tailwind CSS 4 | Concurrent rendering, utility-first styling |
| Language | TypeScript (strict, zero any) | End-to-end type safety |
| State | Zustand | Lightweight reactive stores with row-level subscriptions |
| Build | electron-vite (Vite) | Sub-second HMR, triple-target build |
| Database | SQLite via Kysely | Local-first, type-safe schema with 35+ migrations |
| Terminal | xterm.js + WebGL | Hardware-accelerated terminal rendering |
| Editor | Monaco Editor | VS Code-grade editing experience |
| Testing | Vitest + React Testing Library | Fast, modern test runner |
| AI | Claude Agent SDK + Codex SDK + MCP | Multi-engine โ choose Claude or Codex as your AI engine, with Model Context Protocol |
OpenCow follows a hardened Electron architecture with strict process isolation:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Renderer Process โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โ
โ โ React 19 โ โ Zustand โ โ 271 Components โ โ
โ โ Components โ โ Stores โ โ 68 Hooks โ โ
โ โโโโโโโฌโโโโโโ โโโโโโฌโโโโโโ โโโโโโโโโโฌโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโ โ
โ โ IPC (contextBridge) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Main Process โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโ โ
โ โ DataBus โ โ Services โ โ Native Modules โ โ
โ โ Events โ โ (47+) โ โ SQLite ยท PTY โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโ โ
โ โ Claude โ โ Bot โ โ Capability โ โ
โ โ Agent SDKโ โ Gateway โ โ Center โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Security model:
contextIsolation: true โ renderer cannot access Node.jsnodeIntegration: false โ no direct module loadingcontextBridge.exposeInMainWorld~/.opencow-dev) and production (~/.opencow)opencow/
โโโ electron/ # Main process
โ โโโ main.ts # App entry point
โ โโโ preload.ts # Secure IPC bridge
โ โโโ services/ # 47+ backend service modules
โ โ โโโ capabilityCenter/ # AI capability management
โ โ โโโ schedule/ # Cron automation engine
โ โ โโโ messaging/ # Multi-channel messaging
โ โ โโโ git/ # Git integration layer
โ โ โโโ ...
โ โโโ database/ # SQLite schema & migrations
โ โโโ sources/ # Hook, task, and stats data sources
โ โโโ ipc/ # IPC channel handlers
โโโ src/
โ โโโ renderer/ # React application
โ โ โโโ components/ # 32 feature modules, 271 components
โ โ โโโ hooks/ # 68 custom React hooks
โ โ โโโ stores/ # 18 Zustand domain stores
โ โ โโโ lib/ # Utilities & helpers
โ โ โโโ locales/ # i18n (en-US, zh-CN)
โ โโโ shared/ # Cross-process types & utilities
โโโ tests/ # Vitest test suite
โโโ docs/ # 520+ design docs & proposals
โโโ resources/ # App icons & tray assets
| Command | What it does |
|---------|-------------|
| pnpm dev | Start with HMR |
| pnpm build | Compile all targets |
| pnpm preview | Build + launch in production mode |
| pnpm package | Build + package .app (fast, for testing) |
| pnpm package:dmg | Build + package .dmg installer |
| pnpm typecheck | TypeScript strict check |
| pnpm lint | ESLint |
| pnpm format | Prettier |
| pnpm test | Run all tests |
| pnpm test:watch | Watch mode |
electron-vite compiles three independent TypeScript targets:
| Target | Entry | Output |
|--------|-------|--------|
| Main | electron/main.ts | out/main/ |
| Preload | electron/preload.ts | out/preload/ |
| Renderer | src/renderer/index.html | out/renderer/ |
@ โ src/renderer (renderer only)@shared โ src/shared (all targets)any usagefeat:, fix:, perf:, refactor:, etc.# macOS .app (for local testing, fast)
pnpm package
# Output: dist/mac-arm64/OpenCow.app
# macOS .dmg (for distribution)
pnpm package:dmg
# Output: dist/OpenCow-{version}.dmg
Cross-platform builds for Windows and Linux are supported via electron-builder configuration in package.json.
We wel