dorkos 0.7.0 → 0.9.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.
@@ -15,8 +15,8 @@
15
15
  if (dark) document.documentElement.classList.add('dark');
16
16
  })();
17
17
  </script>
18
- <script type="module" crossorigin src="/assets/index-lIzhHlx_.js"></script>
19
- <link rel="stylesheet" crossorigin href="/assets/index-pIOn2ZAY.css">
18
+ <script type="module" crossorigin src="/assets/index-D8O7L1KA.js"></script>
19
+ <link rel="stylesheet" crossorigin href="/assets/index-CRsHB5DU.css">
20
20
  </head>
21
21
  <body>
22
22
  <div id="root"></div>
@@ -0,0 +1 @@
1
+ ALTER TABLE `pulse_schedules` ADD `agent_id` text;
@@ -0,0 +1,660 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "706c4540-8a90-4c91-9233-36558369998f",
5
+ "prevId": "072bdca3-8704-4a57-b552-615d48ac077f",
6
+ "tables": {
7
+ "pulse_runs": {
8
+ "name": "pulse_runs",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "schedule_id": {
18
+ "name": "schedule_id",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "status": {
25
+ "name": "status",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "started_at": {
32
+ "name": "started_at",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": true,
36
+ "autoincrement": false
37
+ },
38
+ "finished_at": {
39
+ "name": "finished_at",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ },
45
+ "duration_ms": {
46
+ "name": "duration_ms",
47
+ "type": "integer",
48
+ "primaryKey": false,
49
+ "notNull": false,
50
+ "autoincrement": false
51
+ },
52
+ "output": {
53
+ "name": "output",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false
58
+ },
59
+ "error": {
60
+ "name": "error",
61
+ "type": "text",
62
+ "primaryKey": false,
63
+ "notNull": false,
64
+ "autoincrement": false
65
+ },
66
+ "session_id": {
67
+ "name": "session_id",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": false,
71
+ "autoincrement": false
72
+ },
73
+ "trigger": {
74
+ "name": "trigger",
75
+ "type": "text",
76
+ "primaryKey": false,
77
+ "notNull": true,
78
+ "autoincrement": false,
79
+ "default": "'scheduled'"
80
+ },
81
+ "created_at": {
82
+ "name": "created_at",
83
+ "type": "text",
84
+ "primaryKey": false,
85
+ "notNull": true,
86
+ "autoincrement": false
87
+ }
88
+ },
89
+ "indexes": {},
90
+ "foreignKeys": {
91
+ "pulse_runs_schedule_id_pulse_schedules_id_fk": {
92
+ "name": "pulse_runs_schedule_id_pulse_schedules_id_fk",
93
+ "tableFrom": "pulse_runs",
94
+ "tableTo": "pulse_schedules",
95
+ "columnsFrom": [
96
+ "schedule_id"
97
+ ],
98
+ "columnsTo": [
99
+ "id"
100
+ ],
101
+ "onDelete": "no action",
102
+ "onUpdate": "no action"
103
+ }
104
+ },
105
+ "compositePrimaryKeys": {},
106
+ "uniqueConstraints": {},
107
+ "checkConstraints": {}
108
+ },
109
+ "pulse_schedules": {
110
+ "name": "pulse_schedules",
111
+ "columns": {
112
+ "id": {
113
+ "name": "id",
114
+ "type": "text",
115
+ "primaryKey": true,
116
+ "notNull": true,
117
+ "autoincrement": false
118
+ },
119
+ "name": {
120
+ "name": "name",
121
+ "type": "text",
122
+ "primaryKey": false,
123
+ "notNull": true,
124
+ "autoincrement": false
125
+ },
126
+ "description": {
127
+ "name": "description",
128
+ "type": "text",
129
+ "primaryKey": false,
130
+ "notNull": false,
131
+ "autoincrement": false
132
+ },
133
+ "cron": {
134
+ "name": "cron",
135
+ "type": "text",
136
+ "primaryKey": false,
137
+ "notNull": true,
138
+ "autoincrement": false
139
+ },
140
+ "timezone": {
141
+ "name": "timezone",
142
+ "type": "text",
143
+ "primaryKey": false,
144
+ "notNull": true,
145
+ "autoincrement": false,
146
+ "default": "'UTC'"
147
+ },
148
+ "prompt": {
149
+ "name": "prompt",
150
+ "type": "text",
151
+ "primaryKey": false,
152
+ "notNull": true,
153
+ "autoincrement": false
154
+ },
155
+ "cwd": {
156
+ "name": "cwd",
157
+ "type": "text",
158
+ "primaryKey": false,
159
+ "notNull": false,
160
+ "autoincrement": false
161
+ },
162
+ "agent_id": {
163
+ "name": "agent_id",
164
+ "type": "text",
165
+ "primaryKey": false,
166
+ "notNull": false,
167
+ "autoincrement": false
168
+ },
169
+ "enabled": {
170
+ "name": "enabled",
171
+ "type": "integer",
172
+ "primaryKey": false,
173
+ "notNull": true,
174
+ "autoincrement": false,
175
+ "default": true
176
+ },
177
+ "max_runtime": {
178
+ "name": "max_runtime",
179
+ "type": "integer",
180
+ "primaryKey": false,
181
+ "notNull": false,
182
+ "autoincrement": false
183
+ },
184
+ "permission_mode": {
185
+ "name": "permission_mode",
186
+ "type": "text",
187
+ "primaryKey": false,
188
+ "notNull": true,
189
+ "autoincrement": false,
190
+ "default": "'acceptEdits'"
191
+ },
192
+ "status": {
193
+ "name": "status",
194
+ "type": "text",
195
+ "primaryKey": false,
196
+ "notNull": true,
197
+ "autoincrement": false,
198
+ "default": "'active'"
199
+ },
200
+ "created_at": {
201
+ "name": "created_at",
202
+ "type": "text",
203
+ "primaryKey": false,
204
+ "notNull": true,
205
+ "autoincrement": false
206
+ },
207
+ "updated_at": {
208
+ "name": "updated_at",
209
+ "type": "text",
210
+ "primaryKey": false,
211
+ "notNull": true,
212
+ "autoincrement": false
213
+ }
214
+ },
215
+ "indexes": {},
216
+ "foreignKeys": {},
217
+ "compositePrimaryKeys": {},
218
+ "uniqueConstraints": {},
219
+ "checkConstraints": {}
220
+ },
221
+ "relay_index": {
222
+ "name": "relay_index",
223
+ "columns": {
224
+ "id": {
225
+ "name": "id",
226
+ "type": "text",
227
+ "primaryKey": true,
228
+ "notNull": true,
229
+ "autoincrement": false
230
+ },
231
+ "subject": {
232
+ "name": "subject",
233
+ "type": "text",
234
+ "primaryKey": false,
235
+ "notNull": true,
236
+ "autoincrement": false
237
+ },
238
+ "endpoint_hash": {
239
+ "name": "endpoint_hash",
240
+ "type": "text",
241
+ "primaryKey": false,
242
+ "notNull": true,
243
+ "autoincrement": false
244
+ },
245
+ "status": {
246
+ "name": "status",
247
+ "type": "text",
248
+ "primaryKey": false,
249
+ "notNull": true,
250
+ "autoincrement": false,
251
+ "default": "'pending'"
252
+ },
253
+ "expires_at": {
254
+ "name": "expires_at",
255
+ "type": "text",
256
+ "primaryKey": false,
257
+ "notNull": false,
258
+ "autoincrement": false
259
+ },
260
+ "payload": {
261
+ "name": "payload",
262
+ "type": "text",
263
+ "primaryKey": false,
264
+ "notNull": false,
265
+ "autoincrement": false
266
+ },
267
+ "metadata": {
268
+ "name": "metadata",
269
+ "type": "text",
270
+ "primaryKey": false,
271
+ "notNull": false,
272
+ "autoincrement": false
273
+ },
274
+ "created_at": {
275
+ "name": "created_at",
276
+ "type": "text",
277
+ "primaryKey": false,
278
+ "notNull": true,
279
+ "autoincrement": false
280
+ }
281
+ },
282
+ "indexes": {},
283
+ "foreignKeys": {},
284
+ "compositePrimaryKeys": {},
285
+ "uniqueConstraints": {},
286
+ "checkConstraints": {}
287
+ },
288
+ "relay_traces": {
289
+ "name": "relay_traces",
290
+ "columns": {
291
+ "id": {
292
+ "name": "id",
293
+ "type": "text",
294
+ "primaryKey": true,
295
+ "notNull": true,
296
+ "autoincrement": false
297
+ },
298
+ "message_id": {
299
+ "name": "message_id",
300
+ "type": "text",
301
+ "primaryKey": false,
302
+ "notNull": true,
303
+ "autoincrement": false
304
+ },
305
+ "trace_id": {
306
+ "name": "trace_id",
307
+ "type": "text",
308
+ "primaryKey": false,
309
+ "notNull": true,
310
+ "autoincrement": false
311
+ },
312
+ "subject": {
313
+ "name": "subject",
314
+ "type": "text",
315
+ "primaryKey": false,
316
+ "notNull": true,
317
+ "autoincrement": false
318
+ },
319
+ "status": {
320
+ "name": "status",
321
+ "type": "text",
322
+ "primaryKey": false,
323
+ "notNull": true,
324
+ "autoincrement": false
325
+ },
326
+ "sent_at": {
327
+ "name": "sent_at",
328
+ "type": "text",
329
+ "primaryKey": false,
330
+ "notNull": true,
331
+ "autoincrement": false
332
+ },
333
+ "delivered_at": {
334
+ "name": "delivered_at",
335
+ "type": "text",
336
+ "primaryKey": false,
337
+ "notNull": false,
338
+ "autoincrement": false
339
+ },
340
+ "processed_at": {
341
+ "name": "processed_at",
342
+ "type": "text",
343
+ "primaryKey": false,
344
+ "notNull": false,
345
+ "autoincrement": false
346
+ },
347
+ "error_message": {
348
+ "name": "error_message",
349
+ "type": "text",
350
+ "primaryKey": false,
351
+ "notNull": false,
352
+ "autoincrement": false
353
+ },
354
+ "metadata": {
355
+ "name": "metadata",
356
+ "type": "text",
357
+ "primaryKey": false,
358
+ "notNull": false,
359
+ "autoincrement": false
360
+ }
361
+ },
362
+ "indexes": {
363
+ "relay_traces_message_id_unique": {
364
+ "name": "relay_traces_message_id_unique",
365
+ "columns": [
366
+ "message_id"
367
+ ],
368
+ "isUnique": true
369
+ }
370
+ },
371
+ "foreignKeys": {},
372
+ "compositePrimaryKeys": {},
373
+ "uniqueConstraints": {},
374
+ "checkConstraints": {}
375
+ },
376
+ "agent_denials": {
377
+ "name": "agent_denials",
378
+ "columns": {
379
+ "id": {
380
+ "name": "id",
381
+ "type": "text",
382
+ "primaryKey": true,
383
+ "notNull": true,
384
+ "autoincrement": false
385
+ },
386
+ "path": {
387
+ "name": "path",
388
+ "type": "text",
389
+ "primaryKey": false,
390
+ "notNull": true,
391
+ "autoincrement": false
392
+ },
393
+ "reason": {
394
+ "name": "reason",
395
+ "type": "text",
396
+ "primaryKey": false,
397
+ "notNull": false,
398
+ "autoincrement": false
399
+ },
400
+ "denier": {
401
+ "name": "denier",
402
+ "type": "text",
403
+ "primaryKey": false,
404
+ "notNull": false,
405
+ "autoincrement": false
406
+ },
407
+ "created_at": {
408
+ "name": "created_at",
409
+ "type": "text",
410
+ "primaryKey": false,
411
+ "notNull": true,
412
+ "autoincrement": false
413
+ }
414
+ },
415
+ "indexes": {
416
+ "agent_denials_path_unique": {
417
+ "name": "agent_denials_path_unique",
418
+ "columns": [
419
+ "path"
420
+ ],
421
+ "isUnique": true
422
+ }
423
+ },
424
+ "foreignKeys": {},
425
+ "compositePrimaryKeys": {},
426
+ "uniqueConstraints": {},
427
+ "checkConstraints": {}
428
+ },
429
+ "agents": {
430
+ "name": "agents",
431
+ "columns": {
432
+ "id": {
433
+ "name": "id",
434
+ "type": "text",
435
+ "primaryKey": true,
436
+ "notNull": true,
437
+ "autoincrement": false
438
+ },
439
+ "name": {
440
+ "name": "name",
441
+ "type": "text",
442
+ "primaryKey": false,
443
+ "notNull": true,
444
+ "autoincrement": false
445
+ },
446
+ "runtime": {
447
+ "name": "runtime",
448
+ "type": "text",
449
+ "primaryKey": false,
450
+ "notNull": true,
451
+ "autoincrement": false
452
+ },
453
+ "project_path": {
454
+ "name": "project_path",
455
+ "type": "text",
456
+ "primaryKey": false,
457
+ "notNull": true,
458
+ "autoincrement": false
459
+ },
460
+ "namespace": {
461
+ "name": "namespace",
462
+ "type": "text",
463
+ "primaryKey": false,
464
+ "notNull": true,
465
+ "autoincrement": false,
466
+ "default": "'default'"
467
+ },
468
+ "capabilities_json": {
469
+ "name": "capabilities_json",
470
+ "type": "text",
471
+ "primaryKey": false,
472
+ "notNull": true,
473
+ "autoincrement": false,
474
+ "default": "'[]'"
475
+ },
476
+ "entrypoint": {
477
+ "name": "entrypoint",
478
+ "type": "text",
479
+ "primaryKey": false,
480
+ "notNull": false,
481
+ "autoincrement": false
482
+ },
483
+ "version": {
484
+ "name": "version",
485
+ "type": "text",
486
+ "primaryKey": false,
487
+ "notNull": false,
488
+ "autoincrement": false
489
+ },
490
+ "description": {
491
+ "name": "description",
492
+ "type": "text",
493
+ "primaryKey": false,
494
+ "notNull": false,
495
+ "autoincrement": false
496
+ },
497
+ "approver": {
498
+ "name": "approver",
499
+ "type": "text",
500
+ "primaryKey": false,
501
+ "notNull": false,
502
+ "autoincrement": false
503
+ },
504
+ "status": {
505
+ "name": "status",
506
+ "type": "text",
507
+ "primaryKey": false,
508
+ "notNull": true,
509
+ "autoincrement": false,
510
+ "default": "'active'"
511
+ },
512
+ "scan_root": {
513
+ "name": "scan_root",
514
+ "type": "text",
515
+ "primaryKey": false,
516
+ "notNull": true,
517
+ "autoincrement": false,
518
+ "default": "''"
519
+ },
520
+ "behavior_json": {
521
+ "name": "behavior_json",
522
+ "type": "text",
523
+ "primaryKey": false,
524
+ "notNull": true,
525
+ "autoincrement": false,
526
+ "default": "'{\"responseMode\":\"always\"}'"
527
+ },
528
+ "budget_json": {
529
+ "name": "budget_json",
530
+ "type": "text",
531
+ "primaryKey": false,
532
+ "notNull": true,
533
+ "autoincrement": false,
534
+ "default": "'{\"maxHopsPerMessage\":5,\"maxCallsPerHour\":100}'"
535
+ },
536
+ "last_seen_at": {
537
+ "name": "last_seen_at",
538
+ "type": "text",
539
+ "primaryKey": false,
540
+ "notNull": false,
541
+ "autoincrement": false
542
+ },
543
+ "last_seen_event": {
544
+ "name": "last_seen_event",
545
+ "type": "text",
546
+ "primaryKey": false,
547
+ "notNull": false,
548
+ "autoincrement": false
549
+ },
550
+ "persona": {
551
+ "name": "persona",
552
+ "type": "text",
553
+ "primaryKey": false,
554
+ "notNull": false,
555
+ "autoincrement": false
556
+ },
557
+ "persona_enabled": {
558
+ "name": "persona_enabled",
559
+ "type": "integer",
560
+ "primaryKey": false,
561
+ "notNull": true,
562
+ "autoincrement": false,
563
+ "default": true
564
+ },
565
+ "color": {
566
+ "name": "color",
567
+ "type": "text",
568
+ "primaryKey": false,
569
+ "notNull": false,
570
+ "autoincrement": false
571
+ },
572
+ "icon": {
573
+ "name": "icon",
574
+ "type": "text",
575
+ "primaryKey": false,
576
+ "notNull": false,
577
+ "autoincrement": false
578
+ },
579
+ "registered_at": {
580
+ "name": "registered_at",
581
+ "type": "text",
582
+ "primaryKey": false,
583
+ "notNull": true,
584
+ "autoincrement": false
585
+ },
586
+ "updated_at": {
587
+ "name": "updated_at",
588
+ "type": "text",
589
+ "primaryKey": false,
590
+ "notNull": true,
591
+ "autoincrement": false
592
+ }
593
+ },
594
+ "indexes": {
595
+ "agents_project_path_unique": {
596
+ "name": "agents_project_path_unique",
597
+ "columns": [
598
+ "project_path"
599
+ ],
600
+ "isUnique": true
601
+ }
602
+ },
603
+ "foreignKeys": {},
604
+ "compositePrimaryKeys": {},
605
+ "uniqueConstraints": {},
606
+ "checkConstraints": {}
607
+ },
608
+ "rate_limit_buckets": {
609
+ "name": "rate_limit_buckets",
610
+ "columns": {
611
+ "agent_id": {
612
+ "name": "agent_id",
613
+ "type": "text",
614
+ "primaryKey": false,
615
+ "notNull": true,
616
+ "autoincrement": false
617
+ },
618
+ "bucket_minute": {
619
+ "name": "bucket_minute",
620
+ "type": "integer",
621
+ "primaryKey": false,
622
+ "notNull": true,
623
+ "autoincrement": false
624
+ },
625
+ "count": {
626
+ "name": "count",
627
+ "type": "integer",
628
+ "primaryKey": false,
629
+ "notNull": true,
630
+ "autoincrement": false,
631
+ "default": 0
632
+ }
633
+ },
634
+ "indexes": {
635
+ "idx_rate_limit_agent_minute": {
636
+ "name": "idx_rate_limit_agent_minute",
637
+ "columns": [
638
+ "agent_id",
639
+ "bucket_minute"
640
+ ],
641
+ "isUnique": true
642
+ }
643
+ },
644
+ "foreignKeys": {},
645
+ "compositePrimaryKeys": {},
646
+ "uniqueConstraints": {},
647
+ "checkConstraints": {}
648
+ }
649
+ },
650
+ "views": {},
651
+ "enums": {},
652
+ "_meta": {
653
+ "schemas": {},
654
+ "tables": {},
655
+ "columns": {}
656
+ },
657
+ "internal": {
658
+ "indexes": {}
659
+ }
660
+ }
@@ -36,6 +36,13 @@
36
36
  "when": 1772156649473,
37
37
  "tag": "0004_ambitious_spectrum",
38
38
  "breakpoints": true
39
+ },
40
+ {
41
+ "idx": 5,
42
+ "version": "6",
43
+ "when": 1772629106034,
44
+ "tag": "0005_heavy_ultimo",
45
+ "breakpoints": true
39
46
  }
40
47
  ]
41
48
  }