@m0xoo/openboard 1.0.6 → 1.0.9
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/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@ This is a work on progress, contribuations are welcome.
|
|
|
3
3
|
|
|
4
4
|

|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
6
9
|
Openboard is not just another Kanban board—it is an orchestration platform specifically designed to **manage, monitor, and collaborate with autonomous AI coding agents**. While it features a real-time Kanban interface built with React and Node.js, our primary focus is on providing a seamless environment for agents to pick up tasks, execute them in isolation, and submit their work.
|
|
7
10
|
|
|
8
11
|
## Why Openboard? Managing Coding Agents
|
|
@@ -22,6 +25,16 @@ To allow multiple agents to work in parallel without tripping over each other, O
|
|
|
22
25
|
- **Git Worktrees**: When an agent picks up a ticket, it doesn't just check out a branch in your main project folder. Instead, it creates an isolated feature branch and a dedicated git worktree for it. This provides the agent with its own physical directory and working tree to modify files, run tests, and commit changes comfortably, all while ensuring your main workspace remains untouched.
|
|
23
26
|
- **PR Generation (`gh`)**: Once the agent finishes its implementation, it uses the GitHub CLI to automatically push its branch and open a Pull Request for human review, progressing the ticket to a "Needs Approval" state on the board.
|
|
24
27
|
|
|
28
|
+
## QuickStart
|
|
29
|
+
|
|
30
|
+
Make sure you have opencode, git and gh cli installed.
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
npm i -g @m0xoo/openboard
|
|
34
|
+
cd /path/to/ptoject
|
|
35
|
+
openboard
|
|
36
|
+
```
|
|
37
|
+
|
|
25
38
|
## Tech Stack
|
|
26
39
|
|
|
27
40
|
### Frontend (`packages/client`)
|