@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.
Files changed (78) hide show
  1. package/README.md +1 -1
  2. package/dist/artifact.d.ts +1 -115
  3. package/dist/browser.d.ts +10 -19
  4. package/dist/chartRender.d.ts +46 -57
  5. package/dist/chartRender.js +1 -1
  6. package/dist/chat-memory.d.ts +26 -330
  7. package/dist/chat-notify.d.ts +30 -409
  8. package/dist/chat-notify.js +3 -3
  9. package/dist/chatProgress.d.ts +28 -47
  10. package/dist/code-scan.d.ts +52 -58
  11. package/dist/codeStats.d.ts +36 -136
  12. package/dist/codeStats.js +1 -1
  13. package/dist/codebaseMemory.d.ts +52 -32
  14. package/dist/codebaseMemory.js +2 -2
  15. package/dist/core-tools.d.ts +10 -131
  16. package/dist/datasetStore.d.ts +52 -179
  17. package/dist/datasetStore.js +12 -3
  18. package/dist/discord.d.ts +32 -68
  19. package/dist/figma.d.ts +5 -408
  20. package/dist/function-skill.d.ts +23 -135
  21. package/dist/function-skill.js +1 -1
  22. package/dist/gbrain.d.ts +46 -114
  23. package/dist/git-write.d.ts +45 -137
  24. package/dist/git-write.js +6 -6
  25. package/dist/git.d.ts +2 -73
  26. package/dist/github.d.ts +2 -1202
  27. package/dist/gitlab.d.ts +55 -1059
  28. package/dist/gitlab.js +2 -2
  29. package/dist/googleDocs.d.ts +39 -175
  30. package/dist/hubspot.d.ts +1 -381
  31. package/dist/index.d.ts +19 -12
  32. package/dist/index.js +157 -148
  33. package/dist/integrations.d.ts +2 -2
  34. package/dist/jira.d.ts +2 -532
  35. package/dist/jira.js +4 -4
  36. package/dist/kvMemory.d.ts +47 -78
  37. package/dist/lark.d.ts +2 -161
  38. package/dist/lark.js +1 -1
  39. package/dist/larkDocs.d.ts +35 -236
  40. package/dist/linear.d.ts +36 -343
  41. package/dist/linkedin.d.ts +10 -120
  42. package/dist/llm-billing.d.ts +92 -180
  43. package/dist/llm-billing.js +1 -1
  44. package/dist/memory.d.ts +11 -137
  45. package/dist/notion.d.ts +28 -276
  46. package/dist/notion.js +4 -4
  47. package/dist/opendesign.d.ts +24 -202
  48. package/dist/opendesign.js +2 -2
  49. package/dist/package.json +3 -2
  50. package/dist/plane.d.ts +40 -24
  51. package/dist/report.d.ts +153 -110
  52. package/dist/review-dedup.d.ts +8 -8
  53. package/dist/review.d.ts +12 -2
  54. package/dist/reviewMemoryIo.d.ts +37 -3
  55. package/dist/reviewRecord.d.ts +41 -47
  56. package/dist/sentry.d.ts +25 -22
  57. package/dist/skill-installer.d.ts +11 -86
  58. package/dist/slack.d.ts +1 -284
  59. package/dist/socialCard.d.ts +35 -89
  60. package/dist/test-runner.d.ts +1 -220
  61. package/dist/trackers/github-adapter.d.ts +39 -94
  62. package/dist/trackers/index.d.ts +25 -18
  63. package/dist/trackers/jira-adapter.d.ts +20 -88
  64. package/dist/trackers/linear-adapter.d.ts +24 -87
  65. package/dist/trackers/plane-adapter.d.ts +29 -85
  66. package/dist/trackers/plane-adapter.js +1 -1
  67. package/dist/trackers/types.d.ts +1 -186
  68. package/dist/triggerAgent.d.ts +26 -42
  69. package/dist/triggerAgent.js +1 -1
  70. package/dist/workflow-builder.d.ts +11 -245
  71. package/docs/cli-reference.md +33 -0
  72. package/docs/concepts/designing-agents.md +201 -0
  73. package/docs/self-host/backup-restore.md +52 -0
  74. package/docs/self-host/index.md +75 -0
  75. package/docs/self-host/storage.md +50 -0
  76. package/docs/self-host/troubleshooting.md +48 -0
  77. package/docs/self-host/upgrade.md +81 -0
  78. package/package.json +3 -2
@@ -19,7 +19,7 @@
19
19
  * the Lambda layer (per CLAUDE.md: lambda-layer/nodejs/package.json must
20
20
  * stay under 262MB and only carries production runtime deps).
21
21
  */
22
- export const INTEGRATIONS: Readonly<{
22
+ export declare const INTEGRATIONS: Readonly<{
23
23
  SENTRY: "sentry";
24
24
  JIRA: "jira";
25
25
  GITHUB: "github";
@@ -53,7 +53,7 @@ export const INTEGRATIONS: Readonly<{
53
53
  * gracefully ignores the param if not handled yet. NO per-provider
54
54
  * sub-routes exist (`/integrations/jira` etc. would 404 today).
55
55
  */
56
- export const INTEGRATION_REGISTRY: Readonly<{
56
+ export declare const INTEGRATION_REGISTRY: Readonly<{
57
57
  sentry: {
58
58
  id: string;
59
59
  name: string;
package/dist/jira.d.ts CHANGED
@@ -13,535 +13,5 @@
13
13
  * @param {{ method?: string, body?: any, headers?: object }} [opts]
14
14
  * @returns {Promise<any>} parsed JSON response body
15
15
  */
16
- export function jiraFetch(path: string, opts?: {
17
- method?: string;
18
- body?: any;
19
- headers?: object;
20
- }): Promise<any>;
21
- export namespace jiraSkill {
22
- let id: string;
23
- let serverName: string;
24
- let allowedTools: string[];
25
- let requiresIntegration: "jira";
26
- let envKeys: string[];
27
- let description: string;
28
- let promptFragment: string;
29
- function resolve(): {
30
- command: string;
31
- args: any[];
32
- env: {
33
- ATLASSIAN_INSTANCE_URL: any;
34
- };
35
- description: string;
36
- };
37
- function handleToolCall(name: any, args: any): Promise<string>;
38
- let tools: ({
39
- name: string;
40
- description: string;
41
- input_schema: {
42
- type: string;
43
- properties: {
44
- projectKey?: undefined;
45
- jql?: undefined;
46
- maxResults?: undefined;
47
- issueKey?: undefined;
48
- summary?: undefined;
49
- issueType?: undefined;
50
- description?: undefined;
51
- priority?: undefined;
52
- labels?: undefined;
53
- assigneeId?: undefined;
54
- moveToSprint?: undefined;
55
- moveToActiveSprint?: undefined;
56
- sprintId?: undefined;
57
- sprintName?: undefined;
58
- target?: undefined;
59
- state?: undefined;
60
- status?: undefined;
61
- body?: undefined;
62
- fields?: undefined;
63
- transitionId?: undefined;
64
- toStatus?: undefined;
65
- };
66
- required?: undefined;
67
- };
68
- } | {
69
- name: string;
70
- description: string;
71
- input_schema: {
72
- type: string;
73
- properties: {
74
- projectKey: {
75
- type: string;
76
- description: string;
77
- };
78
- jql?: undefined;
79
- maxResults?: undefined;
80
- issueKey?: undefined;
81
- summary?: undefined;
82
- issueType?: undefined;
83
- description?: undefined;
84
- priority?: undefined;
85
- labels?: undefined;
86
- assigneeId?: undefined;
87
- moveToSprint?: undefined;
88
- moveToActiveSprint?: undefined;
89
- sprintId?: undefined;
90
- sprintName?: undefined;
91
- target?: undefined;
92
- state?: undefined;
93
- status?: undefined;
94
- body?: undefined;
95
- fields?: undefined;
96
- transitionId?: undefined;
97
- toStatus?: undefined;
98
- };
99
- required?: undefined;
100
- };
101
- } | {
102
- name: string;
103
- description: string;
104
- input_schema: {
105
- type: string;
106
- properties: {
107
- projectKey: {
108
- type: string;
109
- description: string;
110
- };
111
- jql?: undefined;
112
- maxResults?: undefined;
113
- issueKey?: undefined;
114
- summary?: undefined;
115
- issueType?: undefined;
116
- description?: undefined;
117
- priority?: undefined;
118
- labels?: undefined;
119
- assigneeId?: undefined;
120
- moveToSprint?: undefined;
121
- moveToActiveSprint?: undefined;
122
- sprintId?: undefined;
123
- sprintName?: undefined;
124
- target?: undefined;
125
- state?: undefined;
126
- status?: undefined;
127
- body?: undefined;
128
- fields?: undefined;
129
- transitionId?: undefined;
130
- toStatus?: undefined;
131
- };
132
- required: string[];
133
- };
134
- } | {
135
- name: string;
136
- description: string;
137
- input_schema: {
138
- type: string;
139
- properties: {
140
- jql: {
141
- type: string;
142
- description: string;
143
- };
144
- maxResults: {
145
- type: string;
146
- description: string;
147
- };
148
- projectKey?: undefined;
149
- issueKey?: undefined;
150
- summary?: undefined;
151
- issueType?: undefined;
152
- description?: undefined;
153
- priority?: undefined;
154
- labels?: undefined;
155
- assigneeId?: undefined;
156
- moveToSprint?: undefined;
157
- moveToActiveSprint?: undefined;
158
- sprintId?: undefined;
159
- sprintName?: undefined;
160
- target?: undefined;
161
- state?: undefined;
162
- status?: undefined;
163
- body?: undefined;
164
- fields?: undefined;
165
- transitionId?: undefined;
166
- toStatus?: undefined;
167
- };
168
- required: string[];
169
- };
170
- } | {
171
- name: string;
172
- description: string;
173
- input_schema: {
174
- type: string;
175
- properties: {
176
- issueKey: {
177
- type: string;
178
- description: string;
179
- };
180
- projectKey?: undefined;
181
- jql?: undefined;
182
- maxResults?: undefined;
183
- summary?: undefined;
184
- issueType?: undefined;
185
- description?: undefined;
186
- priority?: undefined;
187
- labels?: undefined;
188
- assigneeId?: undefined;
189
- moveToSprint?: undefined;
190
- moveToActiveSprint?: undefined;
191
- sprintId?: undefined;
192
- sprintName?: undefined;
193
- target?: undefined;
194
- state?: undefined;
195
- status?: undefined;
196
- body?: undefined;
197
- fields?: undefined;
198
- transitionId?: undefined;
199
- toStatus?: undefined;
200
- };
201
- required: string[];
202
- };
203
- } | {
204
- name: string;
205
- description: string;
206
- input_schema: {
207
- type: string;
208
- properties: {
209
- projectKey: {
210
- type: string;
211
- description: string;
212
- };
213
- summary: {
214
- type: string;
215
- description: string;
216
- };
217
- issueType: {
218
- type: string;
219
- description: string;
220
- };
221
- description: {
222
- type: string;
223
- description: string;
224
- };
225
- priority: {
226
- type: string;
227
- description: string;
228
- };
229
- labels: {
230
- type: string;
231
- items: {
232
- type: string;
233
- };
234
- description: string;
235
- };
236
- assigneeId: {
237
- type: string;
238
- description: string;
239
- };
240
- moveToSprint: {
241
- type: string;
242
- description: string;
243
- };
244
- moveToActiveSprint: {
245
- type: string;
246
- description: string;
247
- };
248
- sprintId: {
249
- type: string;
250
- description: string;
251
- };
252
- sprintName: {
253
- type: string;
254
- description: string;
255
- };
256
- target: {
257
- type: string;
258
- description: string;
259
- };
260
- jql?: undefined;
261
- maxResults?: undefined;
262
- issueKey?: undefined;
263
- state?: undefined;
264
- status?: undefined;
265
- body?: undefined;
266
- fields?: undefined;
267
- transitionId?: undefined;
268
- toStatus?: undefined;
269
- };
270
- required: string[];
271
- };
272
- } | {
273
- name: string;
274
- description: string;
275
- input_schema: {
276
- type: string;
277
- properties: {
278
- projectKey: {
279
- type: string;
280
- description: string;
281
- };
282
- state: {
283
- type: string;
284
- description: string;
285
- };
286
- jql?: undefined;
287
- maxResults?: undefined;
288
- issueKey?: undefined;
289
- summary?: undefined;
290
- issueType?: undefined;
291
- description?: undefined;
292
- priority?: undefined;
293
- labels?: undefined;
294
- assigneeId?: undefined;
295
- moveToSprint?: undefined;
296
- moveToActiveSprint?: undefined;
297
- sprintId?: undefined;
298
- sprintName?: undefined;
299
- target?: undefined;
300
- status?: undefined;
301
- body?: undefined;
302
- fields?: undefined;
303
- transitionId?: undefined;
304
- toStatus?: undefined;
305
- };
306
- required: string[];
307
- };
308
- } | {
309
- name: string;
310
- description: string;
311
- input_schema: {
312
- type: string;
313
- properties: {
314
- sprintName: {
315
- type: string;
316
- description: string;
317
- };
318
- sprintId: {
319
- type: string;
320
- description: string;
321
- };
322
- projectKey: {
323
- type: string;
324
- description: string;
325
- };
326
- status: {
327
- type: string;
328
- description: string;
329
- };
330
- maxResults: {
331
- type: string;
332
- description: string;
333
- };
334
- jql?: undefined;
335
- issueKey?: undefined;
336
- summary?: undefined;
337
- issueType?: undefined;
338
- description?: undefined;
339
- priority?: undefined;
340
- labels?: undefined;
341
- assigneeId?: undefined;
342
- moveToSprint?: undefined;
343
- moveToActiveSprint?: undefined;
344
- target?: undefined;
345
- state?: undefined;
346
- body?: undefined;
347
- fields?: undefined;
348
- transitionId?: undefined;
349
- toStatus?: undefined;
350
- };
351
- required?: undefined;
352
- };
353
- } | {
354
- name: string;
355
- description: string;
356
- input_schema: {
357
- type: string;
358
- properties: {
359
- issueKey: {
360
- type: string;
361
- description: string;
362
- };
363
- projectKey: {
364
- type: string;
365
- description: string;
366
- };
367
- sprintId: {
368
- type: string;
369
- description: string;
370
- };
371
- sprintName: {
372
- type: string;
373
- description: string;
374
- };
375
- target: {
376
- type: string;
377
- description: string;
378
- };
379
- jql?: undefined;
380
- maxResults?: undefined;
381
- summary?: undefined;
382
- issueType?: undefined;
383
- description?: undefined;
384
- priority?: undefined;
385
- labels?: undefined;
386
- assigneeId?: undefined;
387
- moveToSprint?: undefined;
388
- moveToActiveSprint?: undefined;
389
- state?: undefined;
390
- status?: undefined;
391
- body?: undefined;
392
- fields?: undefined;
393
- transitionId?: undefined;
394
- toStatus?: undefined;
395
- };
396
- required: string[];
397
- };
398
- } | {
399
- name: string;
400
- description: string;
401
- input_schema: {
402
- type: string;
403
- properties: {
404
- issueKey: {
405
- type: string;
406
- description: string;
407
- };
408
- maxResults: {
409
- type: string;
410
- description: string;
411
- };
412
- projectKey?: undefined;
413
- jql?: undefined;
414
- summary?: undefined;
415
- issueType?: undefined;
416
- description?: undefined;
417
- priority?: undefined;
418
- labels?: undefined;
419
- assigneeId?: undefined;
420
- moveToSprint?: undefined;
421
- moveToActiveSprint?: undefined;
422
- sprintId?: undefined;
423
- sprintName?: undefined;
424
- target?: undefined;
425
- state?: undefined;
426
- status?: undefined;
427
- body?: undefined;
428
- fields?: undefined;
429
- transitionId?: undefined;
430
- toStatus?: undefined;
431
- };
432
- required: string[];
433
- };
434
- } | {
435
- name: string;
436
- description: string;
437
- input_schema: {
438
- type: string;
439
- properties: {
440
- issueKey: {
441
- type: string;
442
- description: string;
443
- };
444
- body: {
445
- type: string;
446
- description: string;
447
- };
448
- projectKey?: undefined;
449
- jql?: undefined;
450
- maxResults?: undefined;
451
- summary?: undefined;
452
- issueType?: undefined;
453
- description?: undefined;
454
- priority?: undefined;
455
- labels?: undefined;
456
- assigneeId?: undefined;
457
- moveToSprint?: undefined;
458
- moveToActiveSprint?: undefined;
459
- sprintId?: undefined;
460
- sprintName?: undefined;
461
- target?: undefined;
462
- state?: undefined;
463
- status?: undefined;
464
- fields?: undefined;
465
- transitionId?: undefined;
466
- toStatus?: undefined;
467
- };
468
- required: string[];
469
- };
470
- } | {
471
- name: string;
472
- description: string;
473
- input_schema: {
474
- type: string;
475
- properties: {
476
- issueKey: {
477
- type: string;
478
- description: string;
479
- };
480
- fields: {
481
- type: string;
482
- description: string;
483
- additionalProperties: boolean;
484
- };
485
- projectKey?: undefined;
486
- jql?: undefined;
487
- maxResults?: undefined;
488
- summary?: undefined;
489
- issueType?: undefined;
490
- description?: undefined;
491
- priority?: undefined;
492
- labels?: undefined;
493
- assigneeId?: undefined;
494
- moveToSprint?: undefined;
495
- moveToActiveSprint?: undefined;
496
- sprintId?: undefined;
497
- sprintName?: undefined;
498
- target?: undefined;
499
- state?: undefined;
500
- status?: undefined;
501
- body?: undefined;
502
- transitionId?: undefined;
503
- toStatus?: undefined;
504
- };
505
- required: string[];
506
- };
507
- } | {
508
- name: string;
509
- description: string;
510
- input_schema: {
511
- type: string;
512
- properties: {
513
- issueKey: {
514
- type: string;
515
- description: string;
516
- };
517
- transitionId: {
518
- type: string;
519
- description: string;
520
- };
521
- toStatus: {
522
- type: string;
523
- description: string;
524
- };
525
- projectKey?: undefined;
526
- jql?: undefined;
527
- maxResults?: undefined;
528
- summary?: undefined;
529
- issueType?: undefined;
530
- description?: undefined;
531
- priority?: undefined;
532
- labels?: undefined;
533
- assigneeId?: undefined;
534
- moveToSprint?: undefined;
535
- moveToActiveSprint?: undefined;
536
- sprintId?: undefined;
537
- sprintName?: undefined;
538
- target?: undefined;
539
- state?: undefined;
540
- status?: undefined;
541
- body?: undefined;
542
- fields?: undefined;
543
- };
544
- required: string[];
545
- };
546
- })[];
547
- }
16
+ export declare function jiraFetch(path: any, opts?: any): Promise<any>;
17
+ export declare const jiraSkill: any;