vibora 1.7.0 → 1.8.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-DS5B_viR.js"></script>
10
- <link rel="stylesheet" crossorigin href="/assets/index-DDBvX7Ij.css">
9
+ <script type="module" crossorigin src="/assets/index-DP-OAlLv.js"></script>
10
+ <link rel="stylesheet" crossorigin href="/assets/index-BxOt05pH.css">
11
11
  </head>
12
12
  <body>
13
13
  <div id="root"></div>
@@ -0,0 +1 @@
1
+ ALTER TABLE `system_metrics` ADD `memory_cache_bytes` integer DEFAULT 0 NOT NULL;
@@ -0,0 +1,472 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "0ce77b64-f508-470b-83ce-6588ad2a54ed",
5
+ "prevId": "761a9851-583b-4d5f-928b-5a11341dc848",
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
+ "memory_cache_bytes": {
120
+ "name": "memory_cache_bytes",
121
+ "type": "integer",
122
+ "primaryKey": false,
123
+ "notNull": true,
124
+ "autoincrement": false,
125
+ "default": 0
126
+ },
127
+ "disk_used_bytes": {
128
+ "name": "disk_used_bytes",
129
+ "type": "integer",
130
+ "primaryKey": false,
131
+ "notNull": true,
132
+ "autoincrement": false
133
+ },
134
+ "disk_total_bytes": {
135
+ "name": "disk_total_bytes",
136
+ "type": "integer",
137
+ "primaryKey": false,
138
+ "notNull": true,
139
+ "autoincrement": false
140
+ }
141
+ },
142
+ "indexes": {},
143
+ "foreignKeys": {},
144
+ "compositePrimaryKeys": {},
145
+ "uniqueConstraints": {},
146
+ "checkConstraints": {}
147
+ },
148
+ "tasks": {
149
+ "name": "tasks",
150
+ "columns": {
151
+ "id": {
152
+ "name": "id",
153
+ "type": "text",
154
+ "primaryKey": true,
155
+ "notNull": true,
156
+ "autoincrement": false
157
+ },
158
+ "title": {
159
+ "name": "title",
160
+ "type": "text",
161
+ "primaryKey": false,
162
+ "notNull": true,
163
+ "autoincrement": false
164
+ },
165
+ "description": {
166
+ "name": "description",
167
+ "type": "text",
168
+ "primaryKey": false,
169
+ "notNull": false,
170
+ "autoincrement": false
171
+ },
172
+ "status": {
173
+ "name": "status",
174
+ "type": "text",
175
+ "primaryKey": false,
176
+ "notNull": true,
177
+ "autoincrement": false,
178
+ "default": "'IN_PROGRESS'"
179
+ },
180
+ "position": {
181
+ "name": "position",
182
+ "type": "integer",
183
+ "primaryKey": false,
184
+ "notNull": true,
185
+ "autoincrement": false
186
+ },
187
+ "repo_path": {
188
+ "name": "repo_path",
189
+ "type": "text",
190
+ "primaryKey": false,
191
+ "notNull": true,
192
+ "autoincrement": false
193
+ },
194
+ "repo_name": {
195
+ "name": "repo_name",
196
+ "type": "text",
197
+ "primaryKey": false,
198
+ "notNull": true,
199
+ "autoincrement": false
200
+ },
201
+ "base_branch": {
202
+ "name": "base_branch",
203
+ "type": "text",
204
+ "primaryKey": false,
205
+ "notNull": true,
206
+ "autoincrement": false
207
+ },
208
+ "branch": {
209
+ "name": "branch",
210
+ "type": "text",
211
+ "primaryKey": false,
212
+ "notNull": false,
213
+ "autoincrement": false
214
+ },
215
+ "worktree_path": {
216
+ "name": "worktree_path",
217
+ "type": "text",
218
+ "primaryKey": false,
219
+ "notNull": false,
220
+ "autoincrement": false
221
+ },
222
+ "view_state": {
223
+ "name": "view_state",
224
+ "type": "text",
225
+ "primaryKey": false,
226
+ "notNull": false,
227
+ "autoincrement": false
228
+ },
229
+ "pr_url": {
230
+ "name": "pr_url",
231
+ "type": "text",
232
+ "primaryKey": false,
233
+ "notNull": false,
234
+ "autoincrement": false
235
+ },
236
+ "linear_ticket_id": {
237
+ "name": "linear_ticket_id",
238
+ "type": "text",
239
+ "primaryKey": false,
240
+ "notNull": false,
241
+ "autoincrement": false
242
+ },
243
+ "linear_ticket_url": {
244
+ "name": "linear_ticket_url",
245
+ "type": "text",
246
+ "primaryKey": false,
247
+ "notNull": false,
248
+ "autoincrement": false
249
+ },
250
+ "startup_script": {
251
+ "name": "startup_script",
252
+ "type": "text",
253
+ "primaryKey": false,
254
+ "notNull": false,
255
+ "autoincrement": false
256
+ },
257
+ "created_at": {
258
+ "name": "created_at",
259
+ "type": "text",
260
+ "primaryKey": false,
261
+ "notNull": true,
262
+ "autoincrement": false
263
+ },
264
+ "updated_at": {
265
+ "name": "updated_at",
266
+ "type": "text",
267
+ "primaryKey": false,
268
+ "notNull": true,
269
+ "autoincrement": false
270
+ }
271
+ },
272
+ "indexes": {},
273
+ "foreignKeys": {},
274
+ "compositePrimaryKeys": {},
275
+ "uniqueConstraints": {},
276
+ "checkConstraints": {}
277
+ },
278
+ "terminal_tabs": {
279
+ "name": "terminal_tabs",
280
+ "columns": {
281
+ "id": {
282
+ "name": "id",
283
+ "type": "text",
284
+ "primaryKey": true,
285
+ "notNull": true,
286
+ "autoincrement": false
287
+ },
288
+ "name": {
289
+ "name": "name",
290
+ "type": "text",
291
+ "primaryKey": false,
292
+ "notNull": true,
293
+ "autoincrement": false
294
+ },
295
+ "position": {
296
+ "name": "position",
297
+ "type": "integer",
298
+ "primaryKey": false,
299
+ "notNull": true,
300
+ "autoincrement": false,
301
+ "default": 0
302
+ },
303
+ "created_at": {
304
+ "name": "created_at",
305
+ "type": "text",
306
+ "primaryKey": false,
307
+ "notNull": true,
308
+ "autoincrement": false
309
+ },
310
+ "updated_at": {
311
+ "name": "updated_at",
312
+ "type": "text",
313
+ "primaryKey": false,
314
+ "notNull": true,
315
+ "autoincrement": false
316
+ }
317
+ },
318
+ "indexes": {},
319
+ "foreignKeys": {},
320
+ "compositePrimaryKeys": {},
321
+ "uniqueConstraints": {},
322
+ "checkConstraints": {}
323
+ },
324
+ "terminal_view_state": {
325
+ "name": "terminal_view_state",
326
+ "columns": {
327
+ "id": {
328
+ "name": "id",
329
+ "type": "text",
330
+ "primaryKey": true,
331
+ "notNull": true,
332
+ "autoincrement": false,
333
+ "default": "'singleton'"
334
+ },
335
+ "active_tab_id": {
336
+ "name": "active_tab_id",
337
+ "type": "text",
338
+ "primaryKey": false,
339
+ "notNull": false,
340
+ "autoincrement": false
341
+ },
342
+ "focused_terminals": {
343
+ "name": "focused_terminals",
344
+ "type": "text",
345
+ "primaryKey": false,
346
+ "notNull": false,
347
+ "autoincrement": false
348
+ },
349
+ "updated_at": {
350
+ "name": "updated_at",
351
+ "type": "text",
352
+ "primaryKey": false,
353
+ "notNull": true,
354
+ "autoincrement": false
355
+ }
356
+ },
357
+ "indexes": {},
358
+ "foreignKeys": {},
359
+ "compositePrimaryKeys": {},
360
+ "uniqueConstraints": {},
361
+ "checkConstraints": {}
362
+ },
363
+ "terminals": {
364
+ "name": "terminals",
365
+ "columns": {
366
+ "id": {
367
+ "name": "id",
368
+ "type": "text",
369
+ "primaryKey": true,
370
+ "notNull": true,
371
+ "autoincrement": false
372
+ },
373
+ "name": {
374
+ "name": "name",
375
+ "type": "text",
376
+ "primaryKey": false,
377
+ "notNull": true,
378
+ "autoincrement": false
379
+ },
380
+ "cwd": {
381
+ "name": "cwd",
382
+ "type": "text",
383
+ "primaryKey": false,
384
+ "notNull": true,
385
+ "autoincrement": false
386
+ },
387
+ "cols": {
388
+ "name": "cols",
389
+ "type": "integer",
390
+ "primaryKey": false,
391
+ "notNull": true,
392
+ "autoincrement": false,
393
+ "default": 80
394
+ },
395
+ "rows": {
396
+ "name": "rows",
397
+ "type": "integer",
398
+ "primaryKey": false,
399
+ "notNull": true,
400
+ "autoincrement": false,
401
+ "default": 24
402
+ },
403
+ "tmux_session": {
404
+ "name": "tmux_session",
405
+ "type": "text",
406
+ "primaryKey": false,
407
+ "notNull": true,
408
+ "autoincrement": false
409
+ },
410
+ "status": {
411
+ "name": "status",
412
+ "type": "text",
413
+ "primaryKey": false,
414
+ "notNull": true,
415
+ "autoincrement": false,
416
+ "default": "'running'"
417
+ },
418
+ "exit_code": {
419
+ "name": "exit_code",
420
+ "type": "integer",
421
+ "primaryKey": false,
422
+ "notNull": false,
423
+ "autoincrement": false
424
+ },
425
+ "tab_id": {
426
+ "name": "tab_id",
427
+ "type": "text",
428
+ "primaryKey": false,
429
+ "notNull": false,
430
+ "autoincrement": false
431
+ },
432
+ "position_in_tab": {
433
+ "name": "position_in_tab",
434
+ "type": "integer",
435
+ "primaryKey": false,
436
+ "notNull": false,
437
+ "autoincrement": false,
438
+ "default": 0
439
+ },
440
+ "created_at": {
441
+ "name": "created_at",
442
+ "type": "text",
443
+ "primaryKey": false,
444
+ "notNull": true,
445
+ "autoincrement": false
446
+ },
447
+ "updated_at": {
448
+ "name": "updated_at",
449
+ "type": "text",
450
+ "primaryKey": false,
451
+ "notNull": true,
452
+ "autoincrement": false
453
+ }
454
+ },
455
+ "indexes": {},
456
+ "foreignKeys": {},
457
+ "compositePrimaryKeys": {},
458
+ "uniqueConstraints": {},
459
+ "checkConstraints": {}
460
+ }
461
+ },
462
+ "views": {},
463
+ "enums": {},
464
+ "_meta": {
465
+ "schemas": {},
466
+ "tables": {},
467
+ "columns": {}
468
+ },
469
+ "internal": {
470
+ "indexes": {}
471
+ }
472
+ }
@@ -36,6 +36,13 @@
36
36
  "when": 1766447755938,
37
37
  "tag": "0004_dear_beyonder",
38
38
  "breakpoints": true
39
+ },
40
+ {
41
+ "idx": 5,
42
+ "version": "6",
43
+ "when": 1766449211608,
44
+ "tag": "0005_zippy_professor_monster",
45
+ "breakpoints": true
39
46
  }
40
47
  ]
41
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "The Vibe Engineer's Cockpit",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {