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