@agents-shire/cli-win32-x64 1.0.33 → 1.0.35

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 @@
1
+ ALTER TABLE `agents` ADD `emoji` text;
@@ -0,0 +1,476 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "2f61f404-ad7a-4224-b6b5-2c19190d6ed3",
5
+ "prevId": "179f4ec2-7243-44d1-ad25-c39e325ae06b",
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
+ "scheduled_tasks": {
342
+ "name": "scheduled_tasks",
343
+ "columns": {
344
+ "id": {
345
+ "name": "id",
346
+ "type": "text",
347
+ "primaryKey": true,
348
+ "notNull": true,
349
+ "autoincrement": false
350
+ },
351
+ "project_id": {
352
+ "name": "project_id",
353
+ "type": "text",
354
+ "primaryKey": false,
355
+ "notNull": true,
356
+ "autoincrement": false
357
+ },
358
+ "agent_id": {
359
+ "name": "agent_id",
360
+ "type": "text",
361
+ "primaryKey": false,
362
+ "notNull": true,
363
+ "autoincrement": false
364
+ },
365
+ "label": {
366
+ "name": "label",
367
+ "type": "text",
368
+ "primaryKey": false,
369
+ "notNull": true,
370
+ "autoincrement": false
371
+ },
372
+ "message": {
373
+ "name": "message",
374
+ "type": "text",
375
+ "primaryKey": false,
376
+ "notNull": true,
377
+ "autoincrement": false
378
+ },
379
+ "schedule_type": {
380
+ "name": "schedule_type",
381
+ "type": "text",
382
+ "primaryKey": false,
383
+ "notNull": true,
384
+ "autoincrement": false
385
+ },
386
+ "cron_expression": {
387
+ "name": "cron_expression",
388
+ "type": "text",
389
+ "primaryKey": false,
390
+ "notNull": false,
391
+ "autoincrement": false
392
+ },
393
+ "scheduled_at": {
394
+ "name": "scheduled_at",
395
+ "type": "text",
396
+ "primaryKey": false,
397
+ "notNull": false,
398
+ "autoincrement": false
399
+ },
400
+ "enabled": {
401
+ "name": "enabled",
402
+ "type": "integer",
403
+ "primaryKey": false,
404
+ "notNull": true,
405
+ "autoincrement": false,
406
+ "default": true
407
+ },
408
+ "last_run_at": {
409
+ "name": "last_run_at",
410
+ "type": "text",
411
+ "primaryKey": false,
412
+ "notNull": false,
413
+ "autoincrement": false
414
+ },
415
+ "created_at": {
416
+ "name": "created_at",
417
+ "type": "text",
418
+ "primaryKey": false,
419
+ "notNull": true,
420
+ "autoincrement": false,
421
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
422
+ },
423
+ "updated_at": {
424
+ "name": "updated_at",
425
+ "type": "text",
426
+ "primaryKey": false,
427
+ "notNull": true,
428
+ "autoincrement": false,
429
+ "default": "(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))"
430
+ }
431
+ },
432
+ "indexes": {},
433
+ "foreignKeys": {
434
+ "scheduled_tasks_project_id_projects_id_fk": {
435
+ "name": "scheduled_tasks_project_id_projects_id_fk",
436
+ "tableFrom": "scheduled_tasks",
437
+ "tableTo": "projects",
438
+ "columnsFrom": [
439
+ "project_id"
440
+ ],
441
+ "columnsTo": [
442
+ "id"
443
+ ],
444
+ "onDelete": "cascade",
445
+ "onUpdate": "no action"
446
+ },
447
+ "scheduled_tasks_agent_id_agents_id_fk": {
448
+ "name": "scheduled_tasks_agent_id_agents_id_fk",
449
+ "tableFrom": "scheduled_tasks",
450
+ "tableTo": "agents",
451
+ "columnsFrom": [
452
+ "agent_id"
453
+ ],
454
+ "columnsTo": [
455
+ "id"
456
+ ],
457
+ "onDelete": "cascade",
458
+ "onUpdate": "no action"
459
+ }
460
+ },
461
+ "compositePrimaryKeys": {},
462
+ "uniqueConstraints": {},
463
+ "checkConstraints": {}
464
+ }
465
+ },
466
+ "views": {},
467
+ "enums": {},
468
+ "_meta": {
469
+ "schemas": {},
470
+ "tables": {},
471
+ "columns": {}
472
+ },
473
+ "internal": {
474
+ "indexes": {}
475
+ }
476
+ }
@@ -36,6 +36,13 @@
36
36
  "when": 1775020737187,
37
37
  "tag": "0004_futuristic_shinobi_shaw",
38
38
  "breakpoints": true
39
+ },
40
+ {
41
+ "idx": 5,
42
+ "version": "6",
43
+ "when": 1775989324106,
44
+ "tag": "0005_handy_wild_child",
45
+ "breakpoints": true
39
46
  }
40
47
  ]
41
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agents-shire/cli-win32-x64",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "description": "Shire CLI binary for Windows x64",
5
5
  "os": [
6
6
  "win32"
package/shire.exe CHANGED
Binary file