You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -20,23 +20,20 @@ Drag tasks on a kanban board. Click execute. Get a pull request.
20
20
21
21
## What is OpenLinear?
22
22
23
-
OpenLinear is a **desktop app** (built with Tauri) that combines a Linear-style kanban board with AI coding agents. You manage tasks visually, and when you're ready, the AI clones your repo, creates a branch, writes the code, and opens a pull request — all in one click.
23
+
OpenLinear is a project management tool that turns your backlog into pull requests. You manage tasks on a Linear-style kanban board. When you're ready, an AI agent — running locally with your own credentials — clones your repo, creates a branch, writes the code, and opens a PR. No copy-pasting prompts, no context switching.
24
24
25
-
Each user gets an **isolated Docker container** running their own AI agent with their own API keys. No credential sharing, no interference between users.
26
-
27
-
**Architecture:** The dashboard is **desktop-only**. The web version only contains the marketing landing page.
25
+
The dashboard is **desktop-only**. The web version only contains the marketing landing page.
28
26
29
27
## Features
30
28
31
29
-**Kanban Board** — drag-and-drop task management with priorities, labels, and status tracking
32
30
-**One-Click Execution** — select a task, hit execute, get a PR with real code changes
33
31
-**Batch Execution** — run multiple tasks in parallel or queue mode, merged into a single PR
34
-
-**Container Isolation** — every user gets a dedicated Docker container with isolated credentials
32
+
-**Local Execution** — agent runs on your machine with your own API keys and credentials
35
33
-**Real-Time Streaming** — watch the AI work live via SSE (tool calls, file edits, progress)
@@ -20,9 +20,7 @@ Drag tasks on a kanban board. Click execute. Get a pull request.
20
20
21
21
## What is OpenLinear?
22
22
23
-
OpenLinear is a **desktop app** (built with Tauri) that combines a Linear-style kanban board with AI coding agents. You manage tasks visually, and when you're ready, the AI clones your repo, creates a branch, writes the code, and opens a pull request — all in one click.
24
-
25
-
Each user gets an **isolated Docker container** running their own AI agent with their own API keys. No credential sharing, no interference between users.
23
+
OpenLinear is a project management tool that turns your backlog into pull requests. You manage tasks on a Linear-style kanban board. When you're ready, an AI agent — running locally with your own credentials — clones your repo, creates a branch, writes the code, and opens a PR. No copy-pasting prompts, no context switching.
26
24
27
25
**This package** is the official launcher and utility library. It does two things:
28
26
@@ -349,8 +347,8 @@ Any payload passing through `sanitizePayload` or `safeValidateExecutionMetadataS
349
347
## How OpenLinear Works
350
348
351
349
1.**You create tasks** on the kanban board with descriptions of what you want built.
352
-
2.**You click execute** — the API clones your repo, creates a branch, and spins up a dedicated AI agent container.
353
-
3.**The agent writes code**in an isolated Docker container with its own git worktree and credentials.
350
+
2.**You click execute** — the desktop app picks it up, clones your repo, and creates a branch.
351
+
3.**The agent writes code**locally using your API keys, in its own git worktree.
354
352
4.**You watch it work** — real-time SSE streams every tool call, file edit, and decision live.
355
353
5.**You get a PR** — changes are committed, pushed, and a pull request is opened automatically.
0 commit comments