conductor-oss-native-linux-x64 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +318 -0
- package/bin/conductor +0 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Conductor Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# Conductor OSS
|
|
4
|
+
|
|
5
|
+
**Local-first coding agent orchestration with a board, chat UI, worktree isolation, and resumable multi-session runs.**
|
|
6
|
+
|
|
7
|
+
<br>
|
|
8
|
+
|
|
9
|
+
[](https://www.npmjs.com/package/conductor-oss)
|
|
10
|
+
[](https://github.com/charannyk06/conductor-oss/actions/workflows/ci.yml)
|
|
11
|
+
[](LICENSE)
|
|
12
|
+
[](https://bun.sh)
|
|
13
|
+
[](https://www.rust-lang.org)
|
|
14
|
+
[](https://github.com/charannyk06/conductor-oss/stargazers)
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
## What is Conductor?
|
|
19
|
+
|
|
20
|
+
Conductor OSS is a local-first dashboard for controlling coding-agent CLIs from a structured browser UI.
|
|
21
|
+
|
|
22
|
+
It combines:
|
|
23
|
+
|
|
24
|
+
- a markdown-native board for tasks and issues
|
|
25
|
+
- a chat-oriented execution surface for agent runs
|
|
26
|
+
- local branch mode or isolated worktree mode
|
|
27
|
+
- multiple concurrent sessions against the same repo
|
|
28
|
+
- a Rust backend with a Bun/Next frontend
|
|
29
|
+
|
|
30
|
+
Conductor is not a hosted managed agent platform. It runs on your machine, uses your locally installed agent CLIs, and keeps state in your local workspace.
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Why Conductor?
|
|
35
|
+
|
|
36
|
+
| | Manual workflow | Terminal-only agent use | **Conductor OSS** |
|
|
37
|
+
|---|---|---|---|
|
|
38
|
+
| Task tracking | Separate tickets / notes | Separate from execution | **Board-linked tasks and runs** |
|
|
39
|
+
| Session management | Manual tabs and branches | One terminal at a time | **Multiple parallel sessions** |
|
|
40
|
+
| Workspace isolation | Manual branches/worktrees | Manual | **Built-in local/worktree session modes** |
|
|
41
|
+
| Agent UX | Raw CLI only | Raw CLI only | **Structured chat + tool-call UI** |
|
|
42
|
+
| Resume after completion | Manual | Manual | **Session stays resumable until archived** |
|
|
43
|
+
| Storage | Mixed tools | Local shell history | **Local SQLite + board files** |
|
|
44
|
+
| Deployment model | Varies | Local | **Local-first** |
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Repository Links
|
|
49
|
+
|
|
50
|
+
- GitHub Repository: https://github.com/charannyk06/conductor-oss
|
|
51
|
+
- Issues: https://github.com/charannyk06/conductor-oss/issues
|
|
52
|
+
- Pull Requests: https://github.com/charannyk06/conductor-oss/pulls
|
|
53
|
+
- CI: https://github.com/charannyk06/conductor-oss/actions/workflows/ci.yml
|
|
54
|
+
- NPM Package: https://www.npmjs.com/package/conductor-oss
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Current product shape
|
|
59
|
+
|
|
60
|
+
The app is currently organized around three core objects:
|
|
61
|
+
|
|
62
|
+
1. `Task`
|
|
63
|
+
- a board card or issue tracked in `CONDUCTOR.md`
|
|
64
|
+
2. `Session`
|
|
65
|
+
- one run or attempt against that task with a specific agent, model, workspace, and branch
|
|
66
|
+
3. `Workspace`
|
|
67
|
+
- the local repo or worktree used by that run
|
|
68
|
+
|
|
69
|
+
Current capabilities include:
|
|
70
|
+
|
|
71
|
+
- board-linked tasks with human-readable task refs
|
|
72
|
+
- multiple runs attached to a single board task
|
|
73
|
+
- local branch mode or worktree isolation mode
|
|
74
|
+
- resumable sessions that remain in `needs_input` after a successful run
|
|
75
|
+
- archive as the explicit cleanup action for a run
|
|
76
|
+
- grouped tool-call rendering in chat
|
|
77
|
+
- per-agent model selection
|
|
78
|
+
- local-first execution with installed coding-agent CLIs
|
|
79
|
+
- workspace and remote access configuration in the dashboard
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Architecture
|
|
84
|
+
|
|
85
|
+
Conductor currently ships as a Rust backend with a Bun/Next.js frontend.
|
|
86
|
+
|
|
87
|
+
### Backend
|
|
88
|
+
|
|
89
|
+
Rust crates under `crates/`:
|
|
90
|
+
|
|
91
|
+
- `conductor-cli`: local launcher and app entrypoint
|
|
92
|
+
- `conductor-server`: Axum API server, session manager, board/session routes
|
|
93
|
+
- `conductor-executors`: agent adapters and PTY-backed process handling
|
|
94
|
+
- `conductor-db`: local SQLite persistence
|
|
95
|
+
- `conductor-git`: git/worktree operations
|
|
96
|
+
- `conductor-watcher`: watcher logic
|
|
97
|
+
- `conductor-core`: shared core types
|
|
98
|
+
|
|
99
|
+
### Frontend
|
|
100
|
+
|
|
101
|
+
Web app under `packages/web/`:
|
|
102
|
+
|
|
103
|
+
- Next.js 16
|
|
104
|
+
- React 19
|
|
105
|
+
- Bun workspace scripts
|
|
106
|
+
- browser UI for board, settings, chat, sessions, and linked runs
|
|
107
|
+
|
|
108
|
+
### Persistence
|
|
109
|
+
|
|
110
|
+
Conductor is local-first, but not database-free.
|
|
111
|
+
|
|
112
|
+
Current state is stored in:
|
|
113
|
+
|
|
114
|
+
- `.conductor/conductor.db`: local SQLite state
|
|
115
|
+
- `CONDUCTOR.md`: board/task planning surface
|
|
116
|
+
- workspace and worktree files in the selected project path
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Session lifecycle
|
|
121
|
+
|
|
122
|
+
A session is the unit of execution.
|
|
123
|
+
|
|
124
|
+
Each session has:
|
|
125
|
+
|
|
126
|
+
- an agent
|
|
127
|
+
- a model
|
|
128
|
+
- a workspace path
|
|
129
|
+
- a branch or worktree
|
|
130
|
+
- chat history
|
|
131
|
+
- tool-call history
|
|
132
|
+
- local runtime output
|
|
133
|
+
|
|
134
|
+
Current lifecycle behavior:
|
|
135
|
+
|
|
136
|
+
- active runs stream into the chat view
|
|
137
|
+
- tool calls are rendered as grouped structured rows
|
|
138
|
+
- after a successful run, the session moves to `needs_input`
|
|
139
|
+
- replying continues the same session instead of spawning a duplicate session entry
|
|
140
|
+
- archiving is the explicit teardown and cleanup path
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Supported agents
|
|
145
|
+
|
|
146
|
+
Conductor currently detects and uses agent CLIs that are installed locally.
|
|
147
|
+
|
|
148
|
+
Common supported agents in the app today:
|
|
149
|
+
|
|
150
|
+
- Claude Code
|
|
151
|
+
- Codex
|
|
152
|
+
- Gemini
|
|
153
|
+
- Qwen Code
|
|
154
|
+
- OpenCode
|
|
155
|
+
- GitHub Copilot
|
|
156
|
+
|
|
157
|
+
Actual availability depends on what is installed and authenticated on your machine.
|
|
158
|
+
|
|
159
|
+
Notes:
|
|
160
|
+
|
|
161
|
+
- upstream auth and billing constraints still apply
|
|
162
|
+
- some CLIs may be present but unusable until their normal terminal auth flow is completed
|
|
163
|
+
- Conductor does not bypass provider-side limits, auth, or subscription checks
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Board model
|
|
168
|
+
|
|
169
|
+
The board is the planning surface. Sessions are the execution surface.
|
|
170
|
+
|
|
171
|
+
Current behavior:
|
|
172
|
+
|
|
173
|
+
- tasks live in the board file and can be moved or edited from the web UI
|
|
174
|
+
- a task can link to multiple session runs
|
|
175
|
+
- one run can be marked as the primary linked run
|
|
176
|
+
- board cards surface linked runs and jump directly into the session chat
|
|
177
|
+
- task refs are human-readable instead of raw UUID-only identifiers
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Quick Start
|
|
182
|
+
|
|
183
|
+
### Install dependencies
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
bun install
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### Run the full app
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
bun run dev:full
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Defaults:
|
|
196
|
+
|
|
197
|
+
- web UI: `http://localhost:3000`
|
|
198
|
+
- Rust backend: `http://127.0.0.1:4749`
|
|
199
|
+
|
|
200
|
+
### Run the prod-like local stack
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
bun run prod:prepare
|
|
204
|
+
bun run prod:full
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Defaults:
|
|
208
|
+
|
|
209
|
+
- dashboard: `http://localhost:4747`
|
|
210
|
+
- Rust backend: `http://127.0.0.1:4748`
|
|
211
|
+
|
|
212
|
+
This uses the standalone web build so it can run alongside `bun run dev:full` from the same checkout.
|
|
213
|
+
|
|
214
|
+
### Run frontend only
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
bun run dev
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
### Run backend only
|
|
221
|
+
|
|
222
|
+
```bash
|
|
223
|
+
bun run dev:backend
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
### Build
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
bun run build
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## Workspace scripts
|
|
235
|
+
|
|
236
|
+
Useful root scripts:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
bun run dev
|
|
240
|
+
bun run dev:backend
|
|
241
|
+
bun run dev:full
|
|
242
|
+
bun run prod:prepare
|
|
243
|
+
bun run prod:full
|
|
244
|
+
bun run build
|
|
245
|
+
bun run build:frontend
|
|
246
|
+
bun run clean
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
## Repository layout
|
|
252
|
+
|
|
253
|
+
```text
|
|
254
|
+
crates/
|
|
255
|
+
conductor-cli/
|
|
256
|
+
conductor-core/
|
|
257
|
+
conductor-db/
|
|
258
|
+
conductor-executors/
|
|
259
|
+
conductor-git/
|
|
260
|
+
conductor-server/
|
|
261
|
+
conductor-watcher/
|
|
262
|
+
packages/
|
|
263
|
+
web/
|
|
264
|
+
plugins/
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
---
|
|
268
|
+
|
|
269
|
+
## Development prerequisites
|
|
270
|
+
|
|
271
|
+
Install locally:
|
|
272
|
+
|
|
273
|
+
- Bun `>= 1.2`
|
|
274
|
+
- Rust toolchain
|
|
275
|
+
- Git
|
|
276
|
+
- one or more supported coding-agent CLIs
|
|
277
|
+
|
|
278
|
+
Common optional tools:
|
|
279
|
+
|
|
280
|
+
- GitHub CLI
|
|
281
|
+
- tmux
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## What the app is optimized for
|
|
286
|
+
|
|
287
|
+
Conductor OSS is currently best suited for:
|
|
288
|
+
|
|
289
|
+
- local-first development workflows
|
|
290
|
+
- multiple coding-agent sessions against the same repo
|
|
291
|
+
- linking execution back to markdown board tasks
|
|
292
|
+
- isolating risky work in worktrees while keeping review in one dashboard
|
|
293
|
+
- preserving resumable session history instead of treating every run as disposable
|
|
294
|
+
|
|
295
|
+
---
|
|
296
|
+
|
|
297
|
+
## Current limitations
|
|
298
|
+
|
|
299
|
+
This repo is still evolving quickly.
|
|
300
|
+
|
|
301
|
+
Important current realities:
|
|
302
|
+
|
|
303
|
+
- reliability depends partly on the installed upstream CLI behavior
|
|
304
|
+
- some providers require normal terminal auth or billing setup before their agent works here
|
|
305
|
+
- the chat view is a structured projection over terminal-backed execution
|
|
306
|
+
- UX and output rendering are still being tightened actively
|
|
307
|
+
- documentation can drift quickly unless it is updated alongside implementation changes
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
## Star History
|
|
311
|
+
|
|
312
|
+
[](https://star-history.com/#charannyk06/conductor-oss&Date)
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## License
|
|
317
|
+
|
|
318
|
+
MIT. See [LICENSE](LICENSE).
|
package/bin/conductor
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "conductor-oss-native-linux-x64",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"private": false,
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"bin/",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"description": "Native Rust backend binary for conductor-oss on Linux x64",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/charannyk06/conductor-oss",
|
|
21
|
+
"directory": "packages/cli"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/charannyk06/conductor-oss",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/charannyk06/conductor-oss/issues"
|
|
26
|
+
}
|
|
27
|
+
}
|