vibora 1.5.0 → 1.7.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/dist/index.html CHANGED
@@ -6,8 +6,8 @@
6
6
  <link rel="icon" type="image/png" sizes="512x512" href="/vibora-icon.png" />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
8
  <title>Vibora</title>
9
- <script type="module" crossorigin src="/assets/index-IdRTHnwv.js"></script>
10
- <link rel="stylesheet" crossorigin href="/assets/index-Djf_9c_I.css">
9
+ <script type="module" crossorigin src="/assets/index-DS5B_viR.js"></script>
10
+ <link rel="stylesheet" crossorigin href="/assets/index-DDBvX7Ij.css">
11
11
  </head>
12
12
  <body>
13
13
  <div id="root"></div>
@@ -0,0 +1,9 @@
1
+ CREATE TABLE `system_metrics` (
2
+ `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
3
+ `timestamp` integer NOT NULL,
4
+ `cpu_percent` real NOT NULL,
5
+ `memory_used_bytes` integer NOT NULL,
6
+ `memory_total_bytes` integer NOT NULL,
7
+ `disk_used_bytes` integer NOT NULL,
8
+ `disk_total_bytes` integer NOT NULL
9
+ );
@@ -0,0 +1,464 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "761a9851-583b-4d5f-928b-5a11341dc848",
5
+ "prevId": "cf62d731-ee31-494d-9cc1-fa056371e93c",
6
+ "tables": {
7
+ "repositories": {
8
+ "name": "repositories",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "path": {
18
+ "name": "path",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "display_name": {
25
+ "name": "display_name",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "startup_script": {
32
+ "name": "startup_script",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": false,
36
+ "autoincrement": false
37
+ },
38
+ "copy_files": {
39
+ "name": "copy_files",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ },
45
+ "remote_url": {
46
+ "name": "remote_url",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": false,
50
+ "autoincrement": false
51
+ },
52
+ "created_at": {
53
+ "name": "created_at",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": true,
57
+ "autoincrement": false
58
+ },
59
+ "updated_at": {
60
+ "name": "updated_at",
61
+ "type": "text",
62
+ "primaryKey": false,
63
+ "notNull": true,
64
+ "autoincrement": false
65
+ }
66
+ },
67
+ "indexes": {
68
+ "repositories_path_unique": {
69
+ "name": "repositories_path_unique",
70
+ "columns": [
71
+ "path"
72
+ ],
73
+ "isUnique": true
74
+ }
75
+ },
76
+ "foreignKeys": {},
77
+ "compositePrimaryKeys": {},
78
+ "uniqueConstraints": {},
79
+ "checkConstraints": {}
80
+ },
81
+ "system_metrics": {
82
+ "name": "system_metrics",
83
+ "columns": {
84
+ "id": {
85
+ "name": "id",
86
+ "type": "integer",
87
+ "primaryKey": true,
88
+ "notNull": true,
89
+ "autoincrement": true
90
+ },
91
+ "timestamp": {
92
+ "name": "timestamp",
93
+ "type": "integer",
94
+ "primaryKey": false,
95
+ "notNull": true,
96
+ "autoincrement": false
97
+ },
98
+ "cpu_percent": {
99
+ "name": "cpu_percent",
100
+ "type": "real",
101
+ "primaryKey": false,
102
+ "notNull": true,
103
+ "autoincrement": false
104
+ },
105
+ "memory_used_bytes": {
106
+ "name": "memory_used_bytes",
107
+ "type": "integer",
108
+ "primaryKey": false,
109
+ "notNull": true,
110
+ "autoincrement": false
111
+ },
112
+ "memory_total_bytes": {
113
+ "name": "memory_total_bytes",
114
+ "type": "integer",
115
+ "primaryKey": false,
116
+ "notNull": true,
117
+ "autoincrement": false
118
+ },
119
+ "disk_used_bytes": {
120
+ "name": "disk_used_bytes",
121
+ "type": "integer",
122
+ "primaryKey": false,
123
+ "notNull": true,
124
+ "autoincrement": false
125
+ },
126
+ "disk_total_bytes": {
127
+ "name": "disk_total_bytes",
128
+ "type": "integer",
129
+ "primaryKey": false,
130
+ "notNull": true,
131
+ "autoincrement": false
132
+ }
133
+ },
134
+ "indexes": {},
135
+ "foreignKeys": {},
136
+ "compositePrimaryKeys": {},
137
+ "uniqueConstraints": {},
138
+ "checkConstraints": {}
139
+ },
140
+ "tasks": {
141
+ "name": "tasks",
142
+ "columns": {
143
+ "id": {
144
+ "name": "id",
145
+ "type": "text",
146
+ "primaryKey": true,
147
+ "notNull": true,
148
+ "autoincrement": false
149
+ },
150
+ "title": {
151
+ "name": "title",
152
+ "type": "text",
153
+ "primaryKey": false,
154
+ "notNull": true,
155
+ "autoincrement": false
156
+ },
157
+ "description": {
158
+ "name": "description",
159
+ "type": "text",
160
+ "primaryKey": false,
161
+ "notNull": false,
162
+ "autoincrement": false
163
+ },
164
+ "status": {
165
+ "name": "status",
166
+ "type": "text",
167
+ "primaryKey": false,
168
+ "notNull": true,
169
+ "autoincrement": false,
170
+ "default": "'IN_PROGRESS'"
171
+ },
172
+ "position": {
173
+ "name": "position",
174
+ "type": "integer",
175
+ "primaryKey": false,
176
+ "notNull": true,
177
+ "autoincrement": false
178
+ },
179
+ "repo_path": {
180
+ "name": "repo_path",
181
+ "type": "text",
182
+ "primaryKey": false,
183
+ "notNull": true,
184
+ "autoincrement": false
185
+ },
186
+ "repo_name": {
187
+ "name": "repo_name",
188
+ "type": "text",
189
+ "primaryKey": false,
190
+ "notNull": true,
191
+ "autoincrement": false
192
+ },
193
+ "base_branch": {
194
+ "name": "base_branch",
195
+ "type": "text",
196
+ "primaryKey": false,
197
+ "notNull": true,
198
+ "autoincrement": false
199
+ },
200
+ "branch": {
201
+ "name": "branch",
202
+ "type": "text",
203
+ "primaryKey": false,
204
+ "notNull": false,
205
+ "autoincrement": false
206
+ },
207
+ "worktree_path": {
208
+ "name": "worktree_path",
209
+ "type": "text",
210
+ "primaryKey": false,
211
+ "notNull": false,
212
+ "autoincrement": false
213
+ },
214
+ "view_state": {
215
+ "name": "view_state",
216
+ "type": "text",
217
+ "primaryKey": false,
218
+ "notNull": false,
219
+ "autoincrement": false
220
+ },
221
+ "pr_url": {
222
+ "name": "pr_url",
223
+ "type": "text",
224
+ "primaryKey": false,
225
+ "notNull": false,
226
+ "autoincrement": false
227
+ },
228
+ "linear_ticket_id": {
229
+ "name": "linear_ticket_id",
230
+ "type": "text",
231
+ "primaryKey": false,
232
+ "notNull": false,
233
+ "autoincrement": false
234
+ },
235
+ "linear_ticket_url": {
236
+ "name": "linear_ticket_url",
237
+ "type": "text",
238
+ "primaryKey": false,
239
+ "notNull": false,
240
+ "autoincrement": false
241
+ },
242
+ "startup_script": {
243
+ "name": "startup_script",
244
+ "type": "text",
245
+ "primaryKey": false,
246
+ "notNull": false,
247
+ "autoincrement": false
248
+ },
249
+ "created_at": {
250
+ "name": "created_at",
251
+ "type": "text",
252
+ "primaryKey": false,
253
+ "notNull": true,
254
+ "autoincrement": false
255
+ },
256
+ "updated_at": {
257
+ "name": "updated_at",
258
+ "type": "text",
259
+ "primaryKey": false,
260
+ "notNull": true,
261
+ "autoincrement": false
262
+ }
263
+ },
264
+ "indexes": {},
265
+ "foreignKeys": {},
266
+ "compositePrimaryKeys": {},
267
+ "uniqueConstraints": {},
268
+ "checkConstraints": {}
269
+ },
270
+ "terminal_tabs": {
271
+ "name": "terminal_tabs",
272
+ "columns": {
273
+ "id": {
274
+ "name": "id",
275
+ "type": "text",
276
+ "primaryKey": true,
277
+ "notNull": true,
278
+ "autoincrement": false
279
+ },
280
+ "name": {
281
+ "name": "name",
282
+ "type": "text",
283
+ "primaryKey": false,
284
+ "notNull": true,
285
+ "autoincrement": false
286
+ },
287
+ "position": {
288
+ "name": "position",
289
+ "type": "integer",
290
+ "primaryKey": false,
291
+ "notNull": true,
292
+ "autoincrement": false,
293
+ "default": 0
294
+ },
295
+ "created_at": {
296
+ "name": "created_at",
297
+ "type": "text",
298
+ "primaryKey": false,
299
+ "notNull": true,
300
+ "autoincrement": false
301
+ },
302
+ "updated_at": {
303
+ "name": "updated_at",
304
+ "type": "text",
305
+ "primaryKey": false,
306
+ "notNull": true,
307
+ "autoincrement": false
308
+ }
309
+ },
310
+ "indexes": {},
311
+ "foreignKeys": {},
312
+ "compositePrimaryKeys": {},
313
+ "uniqueConstraints": {},
314
+ "checkConstraints": {}
315
+ },
316
+ "terminal_view_state": {
317
+ "name": "terminal_view_state",
318
+ "columns": {
319
+ "id": {
320
+ "name": "id",
321
+ "type": "text",
322
+ "primaryKey": true,
323
+ "notNull": true,
324
+ "autoincrement": false,
325
+ "default": "'singleton'"
326
+ },
327
+ "active_tab_id": {
328
+ "name": "active_tab_id",
329
+ "type": "text",
330
+ "primaryKey": false,
331
+ "notNull": false,
332
+ "autoincrement": false
333
+ },
334
+ "focused_terminals": {
335
+ "name": "focused_terminals",
336
+ "type": "text",
337
+ "primaryKey": false,
338
+ "notNull": false,
339
+ "autoincrement": false
340
+ },
341
+ "updated_at": {
342
+ "name": "updated_at",
343
+ "type": "text",
344
+ "primaryKey": false,
345
+ "notNull": true,
346
+ "autoincrement": false
347
+ }
348
+ },
349
+ "indexes": {},
350
+ "foreignKeys": {},
351
+ "compositePrimaryKeys": {},
352
+ "uniqueConstraints": {},
353
+ "checkConstraints": {}
354
+ },
355
+ "terminals": {
356
+ "name": "terminals",
357
+ "columns": {
358
+ "id": {
359
+ "name": "id",
360
+ "type": "text",
361
+ "primaryKey": true,
362
+ "notNull": true,
363
+ "autoincrement": false
364
+ },
365
+ "name": {
366
+ "name": "name",
367
+ "type": "text",
368
+ "primaryKey": false,
369
+ "notNull": true,
370
+ "autoincrement": false
371
+ },
372
+ "cwd": {
373
+ "name": "cwd",
374
+ "type": "text",
375
+ "primaryKey": false,
376
+ "notNull": true,
377
+ "autoincrement": false
378
+ },
379
+ "cols": {
380
+ "name": "cols",
381
+ "type": "integer",
382
+ "primaryKey": false,
383
+ "notNull": true,
384
+ "autoincrement": false,
385
+ "default": 80
386
+ },
387
+ "rows": {
388
+ "name": "rows",
389
+ "type": "integer",
390
+ "primaryKey": false,
391
+ "notNull": true,
392
+ "autoincrement": false,
393
+ "default": 24
394
+ },
395
+ "tmux_session": {
396
+ "name": "tmux_session",
397
+ "type": "text",
398
+ "primaryKey": false,
399
+ "notNull": true,
400
+ "autoincrement": false
401
+ },
402
+ "status": {
403
+ "name": "status",
404
+ "type": "text",
405
+ "primaryKey": false,
406
+ "notNull": true,
407
+ "autoincrement": false,
408
+ "default": "'running'"
409
+ },
410
+ "exit_code": {
411
+ "name": "exit_code",
412
+ "type": "integer",
413
+ "primaryKey": false,
414
+ "notNull": false,
415
+ "autoincrement": false
416
+ },
417
+ "tab_id": {
418
+ "name": "tab_id",
419
+ "type": "text",
420
+ "primaryKey": false,
421
+ "notNull": false,
422
+ "autoincrement": false
423
+ },
424
+ "position_in_tab": {
425
+ "name": "position_in_tab",
426
+ "type": "integer",
427
+ "primaryKey": false,
428
+ "notNull": false,
429
+ "autoincrement": false,
430
+ "default": 0
431
+ },
432
+ "created_at": {
433
+ "name": "created_at",
434
+ "type": "text",
435
+ "primaryKey": false,
436
+ "notNull": true,
437
+ "autoincrement": false
438
+ },
439
+ "updated_at": {
440
+ "name": "updated_at",
441
+ "type": "text",
442
+ "primaryKey": false,
443
+ "notNull": true,
444
+ "autoincrement": false
445
+ }
446
+ },
447
+ "indexes": {},
448
+ "foreignKeys": {},
449
+ "compositePrimaryKeys": {},
450
+ "uniqueConstraints": {},
451
+ "checkConstraints": {}
452
+ }
453
+ },
454
+ "views": {},
455
+ "enums": {},
456
+ "_meta": {
457
+ "schemas": {},
458
+ "tables": {},
459
+ "columns": {}
460
+ },
461
+ "internal": {
462
+ "indexes": {}
463
+ }
464
+ }
@@ -29,6 +29,13 @@
29
29
  "when": 1766374272433,
30
30
  "tag": "0003_conscious_shard",
31
31
  "breakpoints": true
32
+ },
33
+ {
34
+ "idx": 4,
35
+ "version": "6",
36
+ "when": 1766447755938,
37
+ "tag": "0004_dear_beyonder",
38
+ "breakpoints": true
32
39
  }
33
40
  ]
34
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "1.5.0",
3
+ "version": "1.7.0",
4
4
  "description": "The Vibe Engineer's Cockpit",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {