@agents-shire/cli-win32-x64 1.0.41 → 1.0.42

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,5 @@
1
+ CREATE TABLE `refresh_tokens` (
2
+ `token` text PRIMARY KEY NOT NULL,
3
+ `expires_at` text NOT NULL,
4
+ `created_at` text DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) NOT NULL
5
+ );
@@ -0,0 +1,508 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "7ce01cb7-58a7-4d93-9706-fca9b22edea8",
5
+ "prevId": "fts5-msg-search-0006-0000-000000000000",
6
+ "tables": {
7
+ "agents": {
8
+ "name": "agents",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "project_id": {
18
+ "name": "project_id",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "name": {
25
+ "name": "name",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "emoji": {
32
+ "name": "emoji",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": false,
36
+ "autoincrement": false
37
+ },
38
+ "session_id": {
39
+ "name": "session_id",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ },
45
+ "description": {
46
+ "name": "description",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": false,
50
+ "autoincrement": false
51
+ },
52
+ "harness": {
53
+ "name": "harness",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false
58
+ },
59
+ "model": {
60
+ "name": "model",
61
+ "type": "text",
62
+ "primaryKey": false,
63
+ "notNull": false,
64
+ "autoincrement": false
65
+ },
66
+ "system_prompt": {
67
+ "name": "system_prompt",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": false,
71
+ "autoincrement": false
72
+ },
73
+ "created_at": {
74
+ "name": "created_at",
75
+ "type": "text",
76
+ "primaryKey": false,
77
+ "notNull": true,
78
+ "autoincrement": false,
79
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
80
+ },
81
+ "updated_at": {
82
+ "name": "updated_at",
83
+ "type": "text",
84
+ "primaryKey": false,
85
+ "notNull": true,
86
+ "autoincrement": false,
87
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
88
+ }
89
+ },
90
+ "indexes": {
91
+ "agents_project_name": {
92
+ "name": "agents_project_name",
93
+ "columns": [
94
+ "project_id",
95
+ "name"
96
+ ],
97
+ "isUnique": true
98
+ }
99
+ },
100
+ "foreignKeys": {
101
+ "agents_project_id_projects_id_fk": {
102
+ "name": "agents_project_id_projects_id_fk",
103
+ "tableFrom": "agents",
104
+ "tableTo": "projects",
105
+ "columnsFrom": [
106
+ "project_id"
107
+ ],
108
+ "columnsTo": [
109
+ "id"
110
+ ],
111
+ "onDelete": "cascade",
112
+ "onUpdate": "no action"
113
+ }
114
+ },
115
+ "compositePrimaryKeys": {},
116
+ "uniqueConstraints": {},
117
+ "checkConstraints": {}
118
+ },
119
+ "alert_channels": {
120
+ "name": "alert_channels",
121
+ "columns": {
122
+ "id": {
123
+ "name": "id",
124
+ "type": "text",
125
+ "primaryKey": true,
126
+ "notNull": true,
127
+ "autoincrement": false
128
+ },
129
+ "project_id": {
130
+ "name": "project_id",
131
+ "type": "text",
132
+ "primaryKey": false,
133
+ "notNull": true,
134
+ "autoincrement": false
135
+ },
136
+ "channel_type": {
137
+ "name": "channel_type",
138
+ "type": "text",
139
+ "primaryKey": false,
140
+ "notNull": true,
141
+ "autoincrement": false
142
+ },
143
+ "config": {
144
+ "name": "config",
145
+ "type": "text",
146
+ "primaryKey": false,
147
+ "notNull": true,
148
+ "autoincrement": false
149
+ },
150
+ "enabled": {
151
+ "name": "enabled",
152
+ "type": "integer",
153
+ "primaryKey": false,
154
+ "notNull": true,
155
+ "autoincrement": false,
156
+ "default": true
157
+ },
158
+ "created_at": {
159
+ "name": "created_at",
160
+ "type": "text",
161
+ "primaryKey": false,
162
+ "notNull": true,
163
+ "autoincrement": false,
164
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
165
+ },
166
+ "updated_at": {
167
+ "name": "updated_at",
168
+ "type": "text",
169
+ "primaryKey": false,
170
+ "notNull": true,
171
+ "autoincrement": false,
172
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
173
+ }
174
+ },
175
+ "indexes": {
176
+ "alert_channels_project_id_unique": {
177
+ "name": "alert_channels_project_id_unique",
178
+ "columns": [
179
+ "project_id"
180
+ ],
181
+ "isUnique": true
182
+ }
183
+ },
184
+ "foreignKeys": {
185
+ "alert_channels_project_id_projects_id_fk": {
186
+ "name": "alert_channels_project_id_projects_id_fk",
187
+ "tableFrom": "alert_channels",
188
+ "tableTo": "projects",
189
+ "columnsFrom": [
190
+ "project_id"
191
+ ],
192
+ "columnsTo": [
193
+ "id"
194
+ ],
195
+ "onDelete": "cascade",
196
+ "onUpdate": "no action"
197
+ }
198
+ },
199
+ "compositePrimaryKeys": {},
200
+ "uniqueConstraints": {},
201
+ "checkConstraints": {}
202
+ },
203
+ "messages": {
204
+ "name": "messages",
205
+ "columns": {
206
+ "id": {
207
+ "name": "id",
208
+ "type": "integer",
209
+ "primaryKey": true,
210
+ "notNull": true,
211
+ "autoincrement": true
212
+ },
213
+ "project_id": {
214
+ "name": "project_id",
215
+ "type": "text",
216
+ "primaryKey": false,
217
+ "notNull": true,
218
+ "autoincrement": false
219
+ },
220
+ "agent_id": {
221
+ "name": "agent_id",
222
+ "type": "text",
223
+ "primaryKey": false,
224
+ "notNull": true,
225
+ "autoincrement": false
226
+ },
227
+ "role": {
228
+ "name": "role",
229
+ "type": "text",
230
+ "primaryKey": false,
231
+ "notNull": true,
232
+ "autoincrement": false
233
+ },
234
+ "content": {
235
+ "name": "content",
236
+ "type": "text",
237
+ "primaryKey": false,
238
+ "notNull": true,
239
+ "autoincrement": false
240
+ },
241
+ "created_at": {
242
+ "name": "created_at",
243
+ "type": "text",
244
+ "primaryKey": false,
245
+ "notNull": true,
246
+ "autoincrement": false,
247
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
248
+ }
249
+ },
250
+ "indexes": {
251
+ "idx_messages_agent": {
252
+ "name": "idx_messages_agent",
253
+ "columns": [
254
+ "project_id",
255
+ "agent_id",
256
+ "id"
257
+ ],
258
+ "isUnique": false
259
+ }
260
+ },
261
+ "foreignKeys": {
262
+ "messages_project_id_projects_id_fk": {
263
+ "name": "messages_project_id_projects_id_fk",
264
+ "tableFrom": "messages",
265
+ "tableTo": "projects",
266
+ "columnsFrom": [
267
+ "project_id"
268
+ ],
269
+ "columnsTo": [
270
+ "id"
271
+ ],
272
+ "onDelete": "cascade",
273
+ "onUpdate": "no action"
274
+ },
275
+ "messages_agent_id_agents_id_fk": {
276
+ "name": "messages_agent_id_agents_id_fk",
277
+ "tableFrom": "messages",
278
+ "tableTo": "agents",
279
+ "columnsFrom": [
280
+ "agent_id"
281
+ ],
282
+ "columnsTo": [
283
+ "id"
284
+ ],
285
+ "onDelete": "cascade",
286
+ "onUpdate": "no action"
287
+ }
288
+ },
289
+ "compositePrimaryKeys": {},
290
+ "uniqueConstraints": {},
291
+ "checkConstraints": {}
292
+ },
293
+ "projects": {
294
+ "name": "projects",
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
+ "created_at": {
311
+ "name": "created_at",
312
+ "type": "text",
313
+ "primaryKey": false,
314
+ "notNull": true,
315
+ "autoincrement": false,
316
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
317
+ },
318
+ "updated_at": {
319
+ "name": "updated_at",
320
+ "type": "text",
321
+ "primaryKey": false,
322
+ "notNull": true,
323
+ "autoincrement": false,
324
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
325
+ }
326
+ },
327
+ "indexes": {
328
+ "projects_name_unique": {
329
+ "name": "projects_name_unique",
330
+ "columns": [
331
+ "name"
332
+ ],
333
+ "isUnique": true
334
+ }
335
+ },
336
+ "foreignKeys": {},
337
+ "compositePrimaryKeys": {},
338
+ "uniqueConstraints": {},
339
+ "checkConstraints": {}
340
+ },
341
+ "refresh_tokens": {
342
+ "name": "refresh_tokens",
343
+ "columns": {
344
+ "token": {
345
+ "name": "token",
346
+ "type": "text",
347
+ "primaryKey": true,
348
+ "notNull": true,
349
+ "autoincrement": false
350
+ },
351
+ "expires_at": {
352
+ "name": "expires_at",
353
+ "type": "text",
354
+ "primaryKey": false,
355
+ "notNull": true,
356
+ "autoincrement": false
357
+ },
358
+ "created_at": {
359
+ "name": "created_at",
360
+ "type": "text",
361
+ "primaryKey": false,
362
+ "notNull": true,
363
+ "autoincrement": false,
364
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
365
+ }
366
+ },
367
+ "indexes": {},
368
+ "foreignKeys": {},
369
+ "compositePrimaryKeys": {},
370
+ "uniqueConstraints": {},
371
+ "checkConstraints": {}
372
+ },
373
+ "scheduled_tasks": {
374
+ "name": "scheduled_tasks",
375
+ "columns": {
376
+ "id": {
377
+ "name": "id",
378
+ "type": "text",
379
+ "primaryKey": true,
380
+ "notNull": true,
381
+ "autoincrement": false
382
+ },
383
+ "project_id": {
384
+ "name": "project_id",
385
+ "type": "text",
386
+ "primaryKey": false,
387
+ "notNull": true,
388
+ "autoincrement": false
389
+ },
390
+ "agent_id": {
391
+ "name": "agent_id",
392
+ "type": "text",
393
+ "primaryKey": false,
394
+ "notNull": true,
395
+ "autoincrement": false
396
+ },
397
+ "label": {
398
+ "name": "label",
399
+ "type": "text",
400
+ "primaryKey": false,
401
+ "notNull": true,
402
+ "autoincrement": false
403
+ },
404
+ "message": {
405
+ "name": "message",
406
+ "type": "text",
407
+ "primaryKey": false,
408
+ "notNull": true,
409
+ "autoincrement": false
410
+ },
411
+ "schedule_type": {
412
+ "name": "schedule_type",
413
+ "type": "text",
414
+ "primaryKey": false,
415
+ "notNull": true,
416
+ "autoincrement": false
417
+ },
418
+ "cron_expression": {
419
+ "name": "cron_expression",
420
+ "type": "text",
421
+ "primaryKey": false,
422
+ "notNull": false,
423
+ "autoincrement": false
424
+ },
425
+ "scheduled_at": {
426
+ "name": "scheduled_at",
427
+ "type": "text",
428
+ "primaryKey": false,
429
+ "notNull": false,
430
+ "autoincrement": false
431
+ },
432
+ "enabled": {
433
+ "name": "enabled",
434
+ "type": "integer",
435
+ "primaryKey": false,
436
+ "notNull": true,
437
+ "autoincrement": false,
438
+ "default": true
439
+ },
440
+ "last_run_at": {
441
+ "name": "last_run_at",
442
+ "type": "text",
443
+ "primaryKey": false,
444
+ "notNull": false,
445
+ "autoincrement": false
446
+ },
447
+ "created_at": {
448
+ "name": "created_at",
449
+ "type": "text",
450
+ "primaryKey": false,
451
+ "notNull": true,
452
+ "autoincrement": false,
453
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
454
+ },
455
+ "updated_at": {
456
+ "name": "updated_at",
457
+ "type": "text",
458
+ "primaryKey": false,
459
+ "notNull": true,
460
+ "autoincrement": false,
461
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
462
+ }
463
+ },
464
+ "indexes": {},
465
+ "foreignKeys": {
466
+ "scheduled_tasks_project_id_projects_id_fk": {
467
+ "name": "scheduled_tasks_project_id_projects_id_fk",
468
+ "tableFrom": "scheduled_tasks",
469
+ "tableTo": "projects",
470
+ "columnsFrom": [
471
+ "project_id"
472
+ ],
473
+ "columnsTo": [
474
+ "id"
475
+ ],
476
+ "onDelete": "cascade",
477
+ "onUpdate": "no action"
478
+ },
479
+ "scheduled_tasks_agent_id_agents_id_fk": {
480
+ "name": "scheduled_tasks_agent_id_agents_id_fk",
481
+ "tableFrom": "scheduled_tasks",
482
+ "tableTo": "agents",
483
+ "columnsFrom": [
484
+ "agent_id"
485
+ ],
486
+ "columnsTo": [
487
+ "id"
488
+ ],
489
+ "onDelete": "cascade",
490
+ "onUpdate": "no action"
491
+ }
492
+ },
493
+ "compositePrimaryKeys": {},
494
+ "uniqueConstraints": {},
495
+ "checkConstraints": {}
496
+ }
497
+ },
498
+ "views": {},
499
+ "enums": {},
500
+ "_meta": {
501
+ "schemas": {},
502
+ "tables": {},
503
+ "columns": {}
504
+ },
505
+ "internal": {
506
+ "indexes": {}
507
+ }
508
+ }
@@ -50,6 +50,13 @@
50
50
  "when": 1776172800000,
51
51
  "tag": "0006_fts_messages",
52
52
  "breakpoints": true
53
+ },
54
+ {
55
+ "idx": 7,
56
+ "version": "6",
57
+ "when": 1776349697882,
58
+ "tag": "0007_sour_jimmy_woo",
59
+ "breakpoints": true
53
60
  }
54
61
  ]
55
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agents-shire/cli-win32-x64",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Shire CLI binary for Windows x64",
5
5
  "os": [
6
6
  "win32"
package/shire.exe CHANGED
Binary file