vibora 2.6.2 → 2.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.
@@ -0,0 +1,522 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "a82c2f4f-00c3-47f9-b892-9890e9fe399b",
5
+ "prevId": "3aca0e47-6fc8-4c62-86e6-b895403b2f62",
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
+ "is_copier_template": {
53
+ "name": "is_copier_template",
54
+ "type": "integer",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false,
58
+ "default": false
59
+ },
60
+ "last_used_at": {
61
+ "name": "last_used_at",
62
+ "type": "text",
63
+ "primaryKey": false,
64
+ "notNull": false,
65
+ "autoincrement": false
66
+ },
67
+ "created_at": {
68
+ "name": "created_at",
69
+ "type": "text",
70
+ "primaryKey": false,
71
+ "notNull": true,
72
+ "autoincrement": false
73
+ },
74
+ "updated_at": {
75
+ "name": "updated_at",
76
+ "type": "text",
77
+ "primaryKey": false,
78
+ "notNull": true,
79
+ "autoincrement": false
80
+ }
81
+ },
82
+ "indexes": {
83
+ "repositories_path_unique": {
84
+ "name": "repositories_path_unique",
85
+ "columns": [
86
+ "path"
87
+ ],
88
+ "isUnique": true
89
+ }
90
+ },
91
+ "foreignKeys": {},
92
+ "compositePrimaryKeys": {},
93
+ "uniqueConstraints": {},
94
+ "checkConstraints": {}
95
+ },
96
+ "system_metrics": {
97
+ "name": "system_metrics",
98
+ "columns": {
99
+ "id": {
100
+ "name": "id",
101
+ "type": "integer",
102
+ "primaryKey": true,
103
+ "notNull": true,
104
+ "autoincrement": true
105
+ },
106
+ "timestamp": {
107
+ "name": "timestamp",
108
+ "type": "integer",
109
+ "primaryKey": false,
110
+ "notNull": true,
111
+ "autoincrement": false
112
+ },
113
+ "cpu_percent": {
114
+ "name": "cpu_percent",
115
+ "type": "real",
116
+ "primaryKey": false,
117
+ "notNull": true,
118
+ "autoincrement": false
119
+ },
120
+ "memory_used_bytes": {
121
+ "name": "memory_used_bytes",
122
+ "type": "integer",
123
+ "primaryKey": false,
124
+ "notNull": true,
125
+ "autoincrement": false
126
+ },
127
+ "memory_total_bytes": {
128
+ "name": "memory_total_bytes",
129
+ "type": "integer",
130
+ "primaryKey": false,
131
+ "notNull": true,
132
+ "autoincrement": false
133
+ },
134
+ "memory_cache_bytes": {
135
+ "name": "memory_cache_bytes",
136
+ "type": "integer",
137
+ "primaryKey": false,
138
+ "notNull": true,
139
+ "autoincrement": false,
140
+ "default": 0
141
+ },
142
+ "disk_used_bytes": {
143
+ "name": "disk_used_bytes",
144
+ "type": "integer",
145
+ "primaryKey": false,
146
+ "notNull": true,
147
+ "autoincrement": false
148
+ },
149
+ "disk_total_bytes": {
150
+ "name": "disk_total_bytes",
151
+ "type": "integer",
152
+ "primaryKey": false,
153
+ "notNull": true,
154
+ "autoincrement": false
155
+ }
156
+ },
157
+ "indexes": {},
158
+ "foreignKeys": {},
159
+ "compositePrimaryKeys": {},
160
+ "uniqueConstraints": {},
161
+ "checkConstraints": {}
162
+ },
163
+ "tasks": {
164
+ "name": "tasks",
165
+ "columns": {
166
+ "id": {
167
+ "name": "id",
168
+ "type": "text",
169
+ "primaryKey": true,
170
+ "notNull": true,
171
+ "autoincrement": false
172
+ },
173
+ "title": {
174
+ "name": "title",
175
+ "type": "text",
176
+ "primaryKey": false,
177
+ "notNull": true,
178
+ "autoincrement": false
179
+ },
180
+ "description": {
181
+ "name": "description",
182
+ "type": "text",
183
+ "primaryKey": false,
184
+ "notNull": false,
185
+ "autoincrement": false
186
+ },
187
+ "status": {
188
+ "name": "status",
189
+ "type": "text",
190
+ "primaryKey": false,
191
+ "notNull": true,
192
+ "autoincrement": false,
193
+ "default": "'IN_PROGRESS'"
194
+ },
195
+ "position": {
196
+ "name": "position",
197
+ "type": "integer",
198
+ "primaryKey": false,
199
+ "notNull": true,
200
+ "autoincrement": false
201
+ },
202
+ "repo_path": {
203
+ "name": "repo_path",
204
+ "type": "text",
205
+ "primaryKey": false,
206
+ "notNull": true,
207
+ "autoincrement": false
208
+ },
209
+ "repo_name": {
210
+ "name": "repo_name",
211
+ "type": "text",
212
+ "primaryKey": false,
213
+ "notNull": true,
214
+ "autoincrement": false
215
+ },
216
+ "base_branch": {
217
+ "name": "base_branch",
218
+ "type": "text",
219
+ "primaryKey": false,
220
+ "notNull": true,
221
+ "autoincrement": false
222
+ },
223
+ "branch": {
224
+ "name": "branch",
225
+ "type": "text",
226
+ "primaryKey": false,
227
+ "notNull": false,
228
+ "autoincrement": false
229
+ },
230
+ "worktree_path": {
231
+ "name": "worktree_path",
232
+ "type": "text",
233
+ "primaryKey": false,
234
+ "notNull": false,
235
+ "autoincrement": false
236
+ },
237
+ "view_state": {
238
+ "name": "view_state",
239
+ "type": "text",
240
+ "primaryKey": false,
241
+ "notNull": false,
242
+ "autoincrement": false
243
+ },
244
+ "pr_url": {
245
+ "name": "pr_url",
246
+ "type": "text",
247
+ "primaryKey": false,
248
+ "notNull": false,
249
+ "autoincrement": false
250
+ },
251
+ "linear_ticket_id": {
252
+ "name": "linear_ticket_id",
253
+ "type": "text",
254
+ "primaryKey": false,
255
+ "notNull": false,
256
+ "autoincrement": false
257
+ },
258
+ "linear_ticket_url": {
259
+ "name": "linear_ticket_url",
260
+ "type": "text",
261
+ "primaryKey": false,
262
+ "notNull": false,
263
+ "autoincrement": false
264
+ },
265
+ "startup_script": {
266
+ "name": "startup_script",
267
+ "type": "text",
268
+ "primaryKey": false,
269
+ "notNull": false,
270
+ "autoincrement": false
271
+ },
272
+ "created_at": {
273
+ "name": "created_at",
274
+ "type": "text",
275
+ "primaryKey": false,
276
+ "notNull": true,
277
+ "autoincrement": false
278
+ },
279
+ "updated_at": {
280
+ "name": "updated_at",
281
+ "type": "text",
282
+ "primaryKey": false,
283
+ "notNull": true,
284
+ "autoincrement": false
285
+ }
286
+ },
287
+ "indexes": {},
288
+ "foreignKeys": {},
289
+ "compositePrimaryKeys": {},
290
+ "uniqueConstraints": {},
291
+ "checkConstraints": {}
292
+ },
293
+ "terminal_tabs": {
294
+ "name": "terminal_tabs",
295
+ "columns": {
296
+ "id": {
297
+ "name": "id",
298
+ "type": "text",
299
+ "primaryKey": true,
300
+ "notNull": true,
301
+ "autoincrement": false
302
+ },
303
+ "name": {
304
+ "name": "name",
305
+ "type": "text",
306
+ "primaryKey": false,
307
+ "notNull": true,
308
+ "autoincrement": false
309
+ },
310
+ "position": {
311
+ "name": "position",
312
+ "type": "integer",
313
+ "primaryKey": false,
314
+ "notNull": true,
315
+ "autoincrement": false,
316
+ "default": 0
317
+ },
318
+ "directory": {
319
+ "name": "directory",
320
+ "type": "text",
321
+ "primaryKey": false,
322
+ "notNull": false,
323
+ "autoincrement": false
324
+ },
325
+ "created_at": {
326
+ "name": "created_at",
327
+ "type": "text",
328
+ "primaryKey": false,
329
+ "notNull": true,
330
+ "autoincrement": false
331
+ },
332
+ "updated_at": {
333
+ "name": "updated_at",
334
+ "type": "text",
335
+ "primaryKey": false,
336
+ "notNull": true,
337
+ "autoincrement": false
338
+ }
339
+ },
340
+ "indexes": {},
341
+ "foreignKeys": {},
342
+ "compositePrimaryKeys": {},
343
+ "uniqueConstraints": {},
344
+ "checkConstraints": {}
345
+ },
346
+ "terminal_view_state": {
347
+ "name": "terminal_view_state",
348
+ "columns": {
349
+ "id": {
350
+ "name": "id",
351
+ "type": "text",
352
+ "primaryKey": true,
353
+ "notNull": true,
354
+ "autoincrement": false,
355
+ "default": "'singleton'"
356
+ },
357
+ "active_tab_id": {
358
+ "name": "active_tab_id",
359
+ "type": "text",
360
+ "primaryKey": false,
361
+ "notNull": false,
362
+ "autoincrement": false
363
+ },
364
+ "focused_terminals": {
365
+ "name": "focused_terminals",
366
+ "type": "text",
367
+ "primaryKey": false,
368
+ "notNull": false,
369
+ "autoincrement": false
370
+ },
371
+ "current_view": {
372
+ "name": "current_view",
373
+ "type": "text",
374
+ "primaryKey": false,
375
+ "notNull": false,
376
+ "autoincrement": false
377
+ },
378
+ "current_task_id": {
379
+ "name": "current_task_id",
380
+ "type": "text",
381
+ "primaryKey": false,
382
+ "notNull": false,
383
+ "autoincrement": false
384
+ },
385
+ "is_tab_visible": {
386
+ "name": "is_tab_visible",
387
+ "type": "integer",
388
+ "primaryKey": false,
389
+ "notNull": false,
390
+ "autoincrement": false
391
+ },
392
+ "view_updated_at": {
393
+ "name": "view_updated_at",
394
+ "type": "text",
395
+ "primaryKey": false,
396
+ "notNull": false,
397
+ "autoincrement": false
398
+ },
399
+ "updated_at": {
400
+ "name": "updated_at",
401
+ "type": "text",
402
+ "primaryKey": false,
403
+ "notNull": true,
404
+ "autoincrement": false
405
+ }
406
+ },
407
+ "indexes": {},
408
+ "foreignKeys": {},
409
+ "compositePrimaryKeys": {},
410
+ "uniqueConstraints": {},
411
+ "checkConstraints": {}
412
+ },
413
+ "terminals": {
414
+ "name": "terminals",
415
+ "columns": {
416
+ "id": {
417
+ "name": "id",
418
+ "type": "text",
419
+ "primaryKey": true,
420
+ "notNull": true,
421
+ "autoincrement": false
422
+ },
423
+ "name": {
424
+ "name": "name",
425
+ "type": "text",
426
+ "primaryKey": false,
427
+ "notNull": true,
428
+ "autoincrement": false
429
+ },
430
+ "cwd": {
431
+ "name": "cwd",
432
+ "type": "text",
433
+ "primaryKey": false,
434
+ "notNull": true,
435
+ "autoincrement": false
436
+ },
437
+ "cols": {
438
+ "name": "cols",
439
+ "type": "integer",
440
+ "primaryKey": false,
441
+ "notNull": true,
442
+ "autoincrement": false,
443
+ "default": 80
444
+ },
445
+ "rows": {
446
+ "name": "rows",
447
+ "type": "integer",
448
+ "primaryKey": false,
449
+ "notNull": true,
450
+ "autoincrement": false,
451
+ "default": 24
452
+ },
453
+ "tmux_session": {
454
+ "name": "tmux_session",
455
+ "type": "text",
456
+ "primaryKey": false,
457
+ "notNull": true,
458
+ "autoincrement": false
459
+ },
460
+ "status": {
461
+ "name": "status",
462
+ "type": "text",
463
+ "primaryKey": false,
464
+ "notNull": true,
465
+ "autoincrement": false,
466
+ "default": "'running'"
467
+ },
468
+ "exit_code": {
469
+ "name": "exit_code",
470
+ "type": "integer",
471
+ "primaryKey": false,
472
+ "notNull": false,
473
+ "autoincrement": false
474
+ },
475
+ "tab_id": {
476
+ "name": "tab_id",
477
+ "type": "text",
478
+ "primaryKey": false,
479
+ "notNull": false,
480
+ "autoincrement": false
481
+ },
482
+ "position_in_tab": {
483
+ "name": "position_in_tab",
484
+ "type": "integer",
485
+ "primaryKey": false,
486
+ "notNull": false,
487
+ "autoincrement": false,
488
+ "default": 0
489
+ },
490
+ "created_at": {
491
+ "name": "created_at",
492
+ "type": "text",
493
+ "primaryKey": false,
494
+ "notNull": true,
495
+ "autoincrement": false
496
+ },
497
+ "updated_at": {
498
+ "name": "updated_at",
499
+ "type": "text",
500
+ "primaryKey": false,
501
+ "notNull": true,
502
+ "autoincrement": false
503
+ }
504
+ },
505
+ "indexes": {},
506
+ "foreignKeys": {},
507
+ "compositePrimaryKeys": {},
508
+ "uniqueConstraints": {},
509
+ "checkConstraints": {}
510
+ }
511
+ },
512
+ "views": {},
513
+ "enums": {},
514
+ "_meta": {
515
+ "schemas": {},
516
+ "tables": {},
517
+ "columns": {}
518
+ },
519
+ "internal": {
520
+ "indexes": {}
521
+ }
522
+ }
@@ -64,6 +64,20 @@
64
64
  "when": 1766630535256,
65
65
  "tag": "0008_loose_killmonger",
66
66
  "breakpoints": true
67
+ },
68
+ {
69
+ "idx": 9,
70
+ "version": "6",
71
+ "when": 1766775381762,
72
+ "tag": "0009_jittery_sir_ram",
73
+ "breakpoints": true
74
+ },
75
+ {
76
+ "idx": 10,
77
+ "version": "6",
78
+ "when": 1766780922208,
79
+ "tag": "0010_secret_jasper_sitwell",
80
+ "breakpoints": true
67
81
  }
68
82
  ]
69
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "2.6.2",
3
+ "version": "2.7.0",
4
4
  "description": "The Vibe Engineer's Cockpit",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {