@zibby/skills 0.1.95 → 0.2.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.
- package/README.md +1 -1
- package/dist/artifact.d.ts +1 -115
- package/dist/browser.d.ts +10 -19
- package/dist/chartRender.d.ts +46 -57
- package/dist/chartRender.js +1 -1
- package/dist/chat-memory.d.ts +26 -330
- package/dist/chat-notify.d.ts +30 -409
- package/dist/chat-notify.js +3 -3
- package/dist/chatProgress.d.ts +28 -47
- package/dist/code-scan.d.ts +52 -58
- package/dist/codeStats.d.ts +36 -136
- package/dist/codeStats.js +1 -1
- package/dist/codebaseMemory.d.ts +52 -32
- package/dist/codebaseMemory.js +2 -2
- package/dist/core-tools.d.ts +10 -131
- package/dist/datasetStore.d.ts +52 -179
- package/dist/datasetStore.js +12 -3
- package/dist/discord.d.ts +32 -68
- package/dist/figma.d.ts +5 -408
- package/dist/function-skill.d.ts +23 -135
- package/dist/function-skill.js +1 -1
- package/dist/gbrain.d.ts +46 -114
- package/dist/git-write.d.ts +45 -137
- package/dist/git-write.js +6 -6
- package/dist/git.d.ts +2 -73
- package/dist/github.d.ts +2 -1202
- package/dist/gitlab.d.ts +55 -1059
- package/dist/gitlab.js +2 -2
- package/dist/googleDocs.d.ts +39 -175
- package/dist/hubspot.d.ts +1 -381
- package/dist/index.d.ts +19 -12
- package/dist/index.js +157 -148
- package/dist/integrations.d.ts +2 -2
- package/dist/jira.d.ts +2 -532
- package/dist/jira.js +4 -4
- package/dist/kvMemory.d.ts +47 -78
- package/dist/lark.d.ts +2 -161
- package/dist/lark.js +1 -1
- package/dist/larkDocs.d.ts +35 -236
- package/dist/linear.d.ts +36 -343
- package/dist/linkedin.d.ts +10 -120
- package/dist/llm-billing.d.ts +92 -180
- package/dist/llm-billing.js +1 -1
- package/dist/memory.d.ts +11 -137
- package/dist/notion.d.ts +28 -276
- package/dist/notion.js +4 -4
- package/dist/opendesign.d.ts +24 -202
- package/dist/opendesign.js +2 -2
- package/dist/package.json +3 -2
- package/dist/plane.d.ts +40 -24
- package/dist/report.d.ts +153 -110
- package/dist/review-dedup.d.ts +8 -8
- package/dist/review.d.ts +12 -2
- package/dist/reviewMemoryIo.d.ts +37 -3
- package/dist/reviewRecord.d.ts +41 -47
- package/dist/sentry.d.ts +25 -22
- package/dist/skill-installer.d.ts +11 -86
- package/dist/slack.d.ts +1 -284
- package/dist/socialCard.d.ts +35 -89
- package/dist/test-runner.d.ts +1 -220
- package/dist/trackers/github-adapter.d.ts +39 -94
- package/dist/trackers/index.d.ts +25 -18
- package/dist/trackers/jira-adapter.d.ts +20 -88
- package/dist/trackers/linear-adapter.d.ts +24 -87
- package/dist/trackers/plane-adapter.d.ts +29 -85
- package/dist/trackers/plane-adapter.js +1 -1
- package/dist/trackers/types.d.ts +1 -186
- package/dist/triggerAgent.d.ts +26 -42
- package/dist/triggerAgent.js +1 -1
- package/dist/workflow-builder.d.ts +11 -245
- package/docs/cli-reference.md +33 -0
- package/docs/concepts/designing-agents.md +201 -0
- package/docs/self-host/backup-restore.md +52 -0
- package/docs/self-host/index.md +75 -0
- package/docs/self-host/storage.md +50 -0
- package/docs/self-host/troubleshooting.md +48 -0
- package/docs/self-host/upgrade.md +81 -0
- package/package.json +3 -2
package/dist/hubspot.d.ts
CHANGED
|
@@ -1,381 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
let id: string;
|
|
3
|
-
let serverName: string;
|
|
4
|
-
let allowedTools: string[];
|
|
5
|
-
let requiresIntegration: "hubspot";
|
|
6
|
-
let envKeys: any[];
|
|
7
|
-
let description: string;
|
|
8
|
-
let promptFragment: string;
|
|
9
|
-
function resolve(): {
|
|
10
|
-
command: any;
|
|
11
|
-
args: any[];
|
|
12
|
-
env: {};
|
|
13
|
-
description: string;
|
|
14
|
-
type?: undefined;
|
|
15
|
-
alwaysLoad?: undefined;
|
|
16
|
-
} | {
|
|
17
|
-
type: string;
|
|
18
|
-
command: string;
|
|
19
|
-
args: any[];
|
|
20
|
-
env: {};
|
|
21
|
-
description: string;
|
|
22
|
-
alwaysLoad: boolean;
|
|
23
|
-
};
|
|
24
|
-
function handleToolCall(name: any, args: any): Promise<string>;
|
|
25
|
-
let tools: ({
|
|
26
|
-
name: string;
|
|
27
|
-
description: string;
|
|
28
|
-
input_schema: {
|
|
29
|
-
type: string;
|
|
30
|
-
properties: {
|
|
31
|
-
objectType?: undefined;
|
|
32
|
-
query?: undefined;
|
|
33
|
-
filters?: undefined;
|
|
34
|
-
properties?: undefined;
|
|
35
|
-
limit?: undefined;
|
|
36
|
-
id?: undefined;
|
|
37
|
-
associations?: undefined;
|
|
38
|
-
after?: undefined;
|
|
39
|
-
body?: undefined;
|
|
40
|
-
contactId?: undefined;
|
|
41
|
-
companyId?: undefined;
|
|
42
|
-
dealId?: undefined;
|
|
43
|
-
ticketId?: undefined;
|
|
44
|
-
timestamp?: undefined;
|
|
45
|
-
fromType?: undefined;
|
|
46
|
-
fromId?: undefined;
|
|
47
|
-
toType?: undefined;
|
|
48
|
-
toId?: undefined;
|
|
49
|
-
};
|
|
50
|
-
required?: undefined;
|
|
51
|
-
};
|
|
52
|
-
} | {
|
|
53
|
-
name: string;
|
|
54
|
-
description: string;
|
|
55
|
-
input_schema: {
|
|
56
|
-
type: string;
|
|
57
|
-
properties: {
|
|
58
|
-
objectType: {
|
|
59
|
-
type: string;
|
|
60
|
-
description: string;
|
|
61
|
-
};
|
|
62
|
-
query?: undefined;
|
|
63
|
-
filters?: undefined;
|
|
64
|
-
properties?: undefined;
|
|
65
|
-
limit?: undefined;
|
|
66
|
-
id?: undefined;
|
|
67
|
-
associations?: undefined;
|
|
68
|
-
after?: undefined;
|
|
69
|
-
body?: undefined;
|
|
70
|
-
contactId?: undefined;
|
|
71
|
-
companyId?: undefined;
|
|
72
|
-
dealId?: undefined;
|
|
73
|
-
ticketId?: undefined;
|
|
74
|
-
timestamp?: undefined;
|
|
75
|
-
fromType?: undefined;
|
|
76
|
-
fromId?: undefined;
|
|
77
|
-
toType?: undefined;
|
|
78
|
-
toId?: undefined;
|
|
79
|
-
};
|
|
80
|
-
required: string[];
|
|
81
|
-
};
|
|
82
|
-
} | {
|
|
83
|
-
name: string;
|
|
84
|
-
description: string;
|
|
85
|
-
input_schema: {
|
|
86
|
-
type: string;
|
|
87
|
-
properties: {
|
|
88
|
-
objectType: {
|
|
89
|
-
type: string;
|
|
90
|
-
description: string;
|
|
91
|
-
};
|
|
92
|
-
query: {
|
|
93
|
-
type: string;
|
|
94
|
-
description: string;
|
|
95
|
-
};
|
|
96
|
-
filters: {
|
|
97
|
-
type: string;
|
|
98
|
-
description: string;
|
|
99
|
-
items: {
|
|
100
|
-
type: string;
|
|
101
|
-
properties: {
|
|
102
|
-
propertyName: {
|
|
103
|
-
type: string;
|
|
104
|
-
};
|
|
105
|
-
operator: {
|
|
106
|
-
type: string;
|
|
107
|
-
};
|
|
108
|
-
value: {
|
|
109
|
-
type: string;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
};
|
|
114
|
-
properties: {
|
|
115
|
-
type: string;
|
|
116
|
-
items: {
|
|
117
|
-
type: string;
|
|
118
|
-
};
|
|
119
|
-
description: string;
|
|
120
|
-
};
|
|
121
|
-
limit: {
|
|
122
|
-
type: string;
|
|
123
|
-
description: string;
|
|
124
|
-
};
|
|
125
|
-
id?: undefined;
|
|
126
|
-
associations?: undefined;
|
|
127
|
-
after?: undefined;
|
|
128
|
-
body?: undefined;
|
|
129
|
-
contactId?: undefined;
|
|
130
|
-
companyId?: undefined;
|
|
131
|
-
dealId?: undefined;
|
|
132
|
-
ticketId?: undefined;
|
|
133
|
-
timestamp?: undefined;
|
|
134
|
-
fromType?: undefined;
|
|
135
|
-
fromId?: undefined;
|
|
136
|
-
toType?: undefined;
|
|
137
|
-
toId?: undefined;
|
|
138
|
-
};
|
|
139
|
-
required: string[];
|
|
140
|
-
};
|
|
141
|
-
} | {
|
|
142
|
-
name: string;
|
|
143
|
-
description: string;
|
|
144
|
-
input_schema: {
|
|
145
|
-
type: string;
|
|
146
|
-
properties: {
|
|
147
|
-
objectType: {
|
|
148
|
-
type: string;
|
|
149
|
-
description: string;
|
|
150
|
-
};
|
|
151
|
-
id: {
|
|
152
|
-
type: string;
|
|
153
|
-
description: string;
|
|
154
|
-
};
|
|
155
|
-
properties: {
|
|
156
|
-
type: string;
|
|
157
|
-
items: {
|
|
158
|
-
type: string;
|
|
159
|
-
};
|
|
160
|
-
description: string;
|
|
161
|
-
};
|
|
162
|
-
associations: {
|
|
163
|
-
type: string;
|
|
164
|
-
description: string;
|
|
165
|
-
};
|
|
166
|
-
query?: undefined;
|
|
167
|
-
filters?: undefined;
|
|
168
|
-
limit?: undefined;
|
|
169
|
-
after?: undefined;
|
|
170
|
-
body?: undefined;
|
|
171
|
-
contactId?: undefined;
|
|
172
|
-
companyId?: undefined;
|
|
173
|
-
dealId?: undefined;
|
|
174
|
-
ticketId?: undefined;
|
|
175
|
-
timestamp?: undefined;
|
|
176
|
-
fromType?: undefined;
|
|
177
|
-
fromId?: undefined;
|
|
178
|
-
toType?: undefined;
|
|
179
|
-
toId?: undefined;
|
|
180
|
-
};
|
|
181
|
-
required: string[];
|
|
182
|
-
};
|
|
183
|
-
} | {
|
|
184
|
-
name: string;
|
|
185
|
-
description: string;
|
|
186
|
-
input_schema: {
|
|
187
|
-
type: string;
|
|
188
|
-
properties: {
|
|
189
|
-
objectType: {
|
|
190
|
-
type: string;
|
|
191
|
-
description: string;
|
|
192
|
-
};
|
|
193
|
-
properties: {
|
|
194
|
-
type: string;
|
|
195
|
-
items: {
|
|
196
|
-
type: string;
|
|
197
|
-
};
|
|
198
|
-
description: string;
|
|
199
|
-
};
|
|
200
|
-
limit: {
|
|
201
|
-
type: string;
|
|
202
|
-
description: string;
|
|
203
|
-
};
|
|
204
|
-
after: {
|
|
205
|
-
type: string;
|
|
206
|
-
description: string;
|
|
207
|
-
};
|
|
208
|
-
query?: undefined;
|
|
209
|
-
filters?: undefined;
|
|
210
|
-
id?: undefined;
|
|
211
|
-
associations?: undefined;
|
|
212
|
-
body?: undefined;
|
|
213
|
-
contactId?: undefined;
|
|
214
|
-
companyId?: undefined;
|
|
215
|
-
dealId?: undefined;
|
|
216
|
-
ticketId?: undefined;
|
|
217
|
-
timestamp?: undefined;
|
|
218
|
-
fromType?: undefined;
|
|
219
|
-
fromId?: undefined;
|
|
220
|
-
toType?: undefined;
|
|
221
|
-
toId?: undefined;
|
|
222
|
-
};
|
|
223
|
-
required: string[];
|
|
224
|
-
};
|
|
225
|
-
} | {
|
|
226
|
-
name: string;
|
|
227
|
-
description: string;
|
|
228
|
-
input_schema: {
|
|
229
|
-
type: string;
|
|
230
|
-
properties: {
|
|
231
|
-
objectType: {
|
|
232
|
-
type: string;
|
|
233
|
-
description: string;
|
|
234
|
-
};
|
|
235
|
-
properties: {
|
|
236
|
-
type: string;
|
|
237
|
-
description: string;
|
|
238
|
-
items?: undefined;
|
|
239
|
-
};
|
|
240
|
-
query?: undefined;
|
|
241
|
-
filters?: undefined;
|
|
242
|
-
limit?: undefined;
|
|
243
|
-
id?: undefined;
|
|
244
|
-
associations?: undefined;
|
|
245
|
-
after?: undefined;
|
|
246
|
-
body?: undefined;
|
|
247
|
-
contactId?: undefined;
|
|
248
|
-
companyId?: undefined;
|
|
249
|
-
dealId?: undefined;
|
|
250
|
-
ticketId?: undefined;
|
|
251
|
-
timestamp?: undefined;
|
|
252
|
-
fromType?: undefined;
|
|
253
|
-
fromId?: undefined;
|
|
254
|
-
toType?: undefined;
|
|
255
|
-
toId?: undefined;
|
|
256
|
-
};
|
|
257
|
-
required: string[];
|
|
258
|
-
};
|
|
259
|
-
} | {
|
|
260
|
-
name: string;
|
|
261
|
-
description: string;
|
|
262
|
-
input_schema: {
|
|
263
|
-
type: string;
|
|
264
|
-
properties: {
|
|
265
|
-
objectType: {
|
|
266
|
-
type: string;
|
|
267
|
-
description: string;
|
|
268
|
-
};
|
|
269
|
-
id: {
|
|
270
|
-
type: string;
|
|
271
|
-
description: string;
|
|
272
|
-
};
|
|
273
|
-
properties: {
|
|
274
|
-
type: string;
|
|
275
|
-
description: string;
|
|
276
|
-
items?: undefined;
|
|
277
|
-
};
|
|
278
|
-
query?: undefined;
|
|
279
|
-
filters?: undefined;
|
|
280
|
-
limit?: undefined;
|
|
281
|
-
associations?: undefined;
|
|
282
|
-
after?: undefined;
|
|
283
|
-
body?: undefined;
|
|
284
|
-
contactId?: undefined;
|
|
285
|
-
companyId?: undefined;
|
|
286
|
-
dealId?: undefined;
|
|
287
|
-
ticketId?: undefined;
|
|
288
|
-
timestamp?: undefined;
|
|
289
|
-
fromType?: undefined;
|
|
290
|
-
fromId?: undefined;
|
|
291
|
-
toType?: undefined;
|
|
292
|
-
toId?: undefined;
|
|
293
|
-
};
|
|
294
|
-
required: string[];
|
|
295
|
-
};
|
|
296
|
-
} | {
|
|
297
|
-
name: string;
|
|
298
|
-
description: string;
|
|
299
|
-
input_schema: {
|
|
300
|
-
type: string;
|
|
301
|
-
properties: {
|
|
302
|
-
body: {
|
|
303
|
-
type: string;
|
|
304
|
-
description: string;
|
|
305
|
-
};
|
|
306
|
-
contactId: {
|
|
307
|
-
type: string;
|
|
308
|
-
description: string;
|
|
309
|
-
};
|
|
310
|
-
companyId: {
|
|
311
|
-
type: string;
|
|
312
|
-
description: string;
|
|
313
|
-
};
|
|
314
|
-
dealId: {
|
|
315
|
-
type: string;
|
|
316
|
-
description: string;
|
|
317
|
-
};
|
|
318
|
-
ticketId: {
|
|
319
|
-
type: string;
|
|
320
|
-
description: string;
|
|
321
|
-
};
|
|
322
|
-
timestamp: {
|
|
323
|
-
type: string;
|
|
324
|
-
description: string;
|
|
325
|
-
};
|
|
326
|
-
objectType?: undefined;
|
|
327
|
-
query?: undefined;
|
|
328
|
-
filters?: undefined;
|
|
329
|
-
properties?: undefined;
|
|
330
|
-
limit?: undefined;
|
|
331
|
-
id?: undefined;
|
|
332
|
-
associations?: undefined;
|
|
333
|
-
after?: undefined;
|
|
334
|
-
fromType?: undefined;
|
|
335
|
-
fromId?: undefined;
|
|
336
|
-
toType?: undefined;
|
|
337
|
-
toId?: undefined;
|
|
338
|
-
};
|
|
339
|
-
required: string[];
|
|
340
|
-
};
|
|
341
|
-
} | {
|
|
342
|
-
name: string;
|
|
343
|
-
description: string;
|
|
344
|
-
input_schema: {
|
|
345
|
-
type: string;
|
|
346
|
-
properties: {
|
|
347
|
-
fromType: {
|
|
348
|
-
type: string;
|
|
349
|
-
description: string;
|
|
350
|
-
};
|
|
351
|
-
fromId: {
|
|
352
|
-
type: string;
|
|
353
|
-
description: string;
|
|
354
|
-
};
|
|
355
|
-
toType: {
|
|
356
|
-
type: string;
|
|
357
|
-
description: string;
|
|
358
|
-
};
|
|
359
|
-
toId: {
|
|
360
|
-
type: string;
|
|
361
|
-
description: string;
|
|
362
|
-
};
|
|
363
|
-
objectType?: undefined;
|
|
364
|
-
query?: undefined;
|
|
365
|
-
filters?: undefined;
|
|
366
|
-
properties?: undefined;
|
|
367
|
-
limit?: undefined;
|
|
368
|
-
id?: undefined;
|
|
369
|
-
associations?: undefined;
|
|
370
|
-
after?: undefined;
|
|
371
|
-
body?: undefined;
|
|
372
|
-
contactId?: undefined;
|
|
373
|
-
companyId?: undefined;
|
|
374
|
-
dealId?: undefined;
|
|
375
|
-
ticketId?: undefined;
|
|
376
|
-
timestamp?: undefined;
|
|
377
|
-
};
|
|
378
|
-
required: string[];
|
|
379
|
-
};
|
|
380
|
-
})[];
|
|
381
|
-
}
|
|
1
|
+
export declare const hubspotSkill: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @zibby/skills — Built-in skill catalog
|
|
3
|
+
*
|
|
4
|
+
* Importing this module registers all built-in skills with the core
|
|
5
|
+
* skill registry. Users and community packages can register additional
|
|
6
|
+
* skills via registerSkill().
|
|
7
|
+
*/
|
|
2
8
|
import { browserSkill } from './browser.js';
|
|
3
9
|
import { jiraSkill } from './jira.js';
|
|
4
10
|
import { githubSkill } from './github.js';
|
|
@@ -8,8 +14,6 @@ import { hubspotSkill } from './hubspot.js';
|
|
|
8
14
|
import { linearSkill } from './linear.js';
|
|
9
15
|
import { planeSkill } from './plane.js';
|
|
10
16
|
import { opendesignSkill } from './opendesign.js';
|
|
11
|
-
import { gitSkill } from './git.js';
|
|
12
|
-
import { gitWriteSkill } from './git-write.js';
|
|
13
17
|
import { slackSkill } from './slack.js';
|
|
14
18
|
import { larkSkill } from './lark.js';
|
|
15
19
|
import { discordSkill } from './discord.js';
|
|
@@ -18,8 +22,13 @@ import { linkedinSkill } from './linkedin.js';
|
|
|
18
22
|
import { googleDocsSkill } from './googleDocs.js';
|
|
19
23
|
import { larkDocsSkill } from './larkDocs.js';
|
|
20
24
|
import { chatNotifySkill } from './chat-notify.js';
|
|
21
|
-
import { sentrySkill } from './sentry.js';
|
|
22
25
|
import { memorySkill } from './memory.js';
|
|
26
|
+
import { skillInstallerSkill } from './skill-installer.js';
|
|
27
|
+
import { coreToolsSkill } from './core-tools.js';
|
|
28
|
+
import { sentrySkill } from './sentry.js';
|
|
29
|
+
import { testRunnerSkill } from './test-runner.js';
|
|
30
|
+
import { gitSkill } from './git.js';
|
|
31
|
+
import { gitWriteSkill } from './git-write.js';
|
|
23
32
|
import { chatMemorySkill } from './chat-memory.js';
|
|
24
33
|
import { kvMemorySkill } from './kvMemory.js';
|
|
25
34
|
import { datasetStoreSkill } from './datasetStore.js';
|
|
@@ -31,13 +40,11 @@ import { socialCardSkill } from './socialCard.js';
|
|
|
31
40
|
import { codeScanSkill } from './code-scan.js';
|
|
32
41
|
import { codebaseMemorySkill } from './codebaseMemory.js';
|
|
33
42
|
import { gbrainSkill } from './gbrain.js';
|
|
34
|
-
import { testRunnerSkill } from './test-runner.js';
|
|
35
|
-
import { skillInstallerSkill } from './skill-installer.js';
|
|
36
|
-
import { coreToolsSkill } from './core-tools.js';
|
|
37
43
|
import { workflowBuilderSkill } from './workflow-builder.js';
|
|
44
|
+
export { SKILL_IDS as SKILLS } from '@zibby/skill-ids';
|
|
38
45
|
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, hubspotSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, discordSkill, notionSkill, linkedinSkill, googleDocsSkill, larkDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, artifactSkill, chartRenderSkill, codeStatsSkill, chatProgressSkill, socialCardSkill, codeScanSkill, codebaseMemorySkill, gbrainSkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
39
|
-
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev } from
|
|
40
|
-
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, reportToNotionBlocks, reportToMarkdown, SEVERITIES as REPORT_SEVERITIES } from
|
|
41
|
-
export { skill, functionSkill } from
|
|
42
|
-
export { registerSkill, getSkill, hasSkill, getAllSkills, listSkillIds } from
|
|
43
|
-
export { INTEGRATIONS, INTEGRATION_REGISTRY } from
|
|
46
|
+
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev, } from './llm-billing.js';
|
|
47
|
+
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, reportToNotionBlocks, reportToMarkdown, SEVERITIES as REPORT_SEVERITIES, } from './report.js';
|
|
48
|
+
export { skill, functionSkill } from './function-skill.js';
|
|
49
|
+
export { registerSkill, getSkill, hasSkill, getAllSkills, listSkillIds } from '@zibby/agent-workflow';
|
|
50
|
+
export { INTEGRATIONS, INTEGRATION_REGISTRY } from './integrations.js';
|