@openboard/start 1.0.22 → 1.0.23

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.
Files changed (30) hide show
  1. package/README.md +0 -0
  2. package/bin/openboard.js +0 -0
  3. package/package.json +1 -1
  4. package/packages/client/dist/assets/index-B5k_YB6Y.css +0 -0
  5. package/packages/client/dist/assets/index-D6WEx7Lr.js +0 -0
  6. package/packages/client/dist/index.html +0 -0
  7. package/packages/server/dist/agents/agent-queue.js +0 -0
  8. package/packages/server/dist/agents/agent-runner.js +0 -0
  9. package/packages/server/dist/agents/agent.interface.js +0 -0
  10. package/packages/server/dist/agents/codereview.agent.js +0 -0
  11. package/packages/server/dist/agents/dummy.agent.js +0 -0
  12. package/packages/server/dist/agents/opencode.agent.js +0 -0
  13. package/packages/server/dist/agents/opencode.events.js +0 -0
  14. package/packages/server/dist/db/database.js +6 -0
  15. package/packages/server/dist/gh-worker.js +0 -0
  16. package/packages/server/dist/index.js +0 -0
  17. package/packages/server/dist/repositories/board.repository.js +0 -0
  18. package/packages/server/dist/repositories/column-config.repository.js +0 -0
  19. package/packages/server/dist/repositories/column.repository.js +0 -0
  20. package/packages/server/dist/repositories/comment.repository.js +0 -0
  21. package/packages/server/dist/repositories/ticket.repository.js +0 -0
  22. package/packages/server/dist/routes/boards.router.js +0 -0
  23. package/packages/server/dist/routes/column-config.router.js +0 -0
  24. package/packages/server/dist/routes/columns.router.js +0 -0
  25. package/packages/server/dist/routes/tickets.router.js +0 -0
  26. package/packages/server/dist/sse.js +0 -0
  27. package/packages/server/dist/types.js +0 -0
  28. package/packages/server/dist/utils/opencode.js +0 -0
  29. package/packages/server/dist/utils/os.js +0 -0
  30. package/packages/client/README.md +0 -30
package/README.md CHANGED
File without changes
package/bin/openboard.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openboard/start",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "openboard": "./bin/openboard.js"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -100,6 +100,7 @@ function runMigrations() {
100
100
  CREATE TABLE IF NOT EXISTS boards (
101
101
  id TEXT PRIMARY KEY,
102
102
  name TEXT NOT NULL,
103
+ path TEXT,
103
104
  created_at TEXT NOT NULL DEFAULT (datetime('now'))
104
105
  );
105
106
 
@@ -146,6 +147,11 @@ function runMigrations() {
146
147
  on_finish_column_id TEXT
147
148
  );
148
149
  `);
150
+ try {
151
+ db.run("ALTER TABLE boards ADD COLUMN path TEXT;");
152
+ console.log("[db] Migration: Added path column to boards table");
153
+ }
154
+ catch (e) { }
149
155
  try {
150
156
  db.run("ALTER TABLE tickets ADD COLUMN agent_sessions TEXT NOT NULL DEFAULT '[]';");
151
157
  console.log("[db] Migration: Added agent_sessions column to tickets table");
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,30 +0,0 @@
1
- # Openboard Client
2
-
3
- Frontend application for Openboard.
4
-
5
- ## Tech Stack
6
-
7
- - React
8
- - Vite
9
- - TypeScript
10
- - React Router DOM
11
- - @dnd-kit (Drag and Drop)
12
- - Lucide React (Icons)
13
-
14
- ## Getting Started
15
-
16
- 1. Install dependencies:
17
- ```bash
18
- npm install
19
- ```
20
-
21
- 2. Run the development server:
22
- ```bash
23
- npm run dev
24
- ```
25
-
26
- ## Scripts
27
-
28
- - `dev`: Start development server
29
- - `build`: Build for production
30
- - `preview`: Preview production build