@zibby/skills 0.1.34 → 0.1.36
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/dist/browser.d.ts +19 -0
- package/dist/chat-memory.d.ts +355 -0
- package/dist/chat-notify.d.ts +409 -0
- package/dist/core-tools.d.ts +131 -0
- package/dist/function-skill.d.ts +149 -0
- package/dist/git.d.ts +72 -0
- package/dist/github.d.ts +778 -0
- package/dist/github.js +1 -1
- package/dist/gitlab.d.ts +396 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +43 -43
- package/dist/integrations.d.ts +110 -0
- package/dist/jira.d.ts +547 -0
- package/dist/lark.d.ts +161 -0
- package/dist/linear.d.ts +344 -0
- package/dist/llm-billing.d.ts +294 -0
- package/dist/memory.d.ts +137 -0
- package/dist/package.json +67 -19
- package/dist/plane.d.ts +24 -0
- package/dist/report.d.ts +354 -0
- package/dist/report.js +9 -9
- package/dist/sentry.d.ts +43 -0
- package/dist/skill-installer.d.ts +86 -0
- package/dist/slack.d.ts +284 -0
- package/dist/test-runner.d.ts +220 -0
- package/dist/trackers/github-adapter.d.ts +96 -0
- package/dist/trackers/github-adapter.js +1 -1
- package/dist/trackers/index.d.ts +27 -0
- package/dist/trackers/index.js +1 -1
- package/dist/trackers/jira-adapter.d.ts +90 -0
- package/dist/trackers/linear-adapter.d.ts +89 -0
- package/dist/trackers/plane-adapter.d.ts +101 -0
- package/dist/trackers/types.d.ts +335 -0
- package/dist/workflow-builder.d.ts +245 -0
- package/package.json +67 -19
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export namespace browserSkill {
|
|
2
|
+
let id: string;
|
|
3
|
+
let serverName: string;
|
|
4
|
+
let cursorKey: string;
|
|
5
|
+
let allowedTools: string[];
|
|
6
|
+
let sessionEnvKey: string;
|
|
7
|
+
let description: string;
|
|
8
|
+
let envKeys: any[];
|
|
9
|
+
let tools: any[];
|
|
10
|
+
let promptFragment: string;
|
|
11
|
+
function resolve({ sessionPath, workspace, nodeName, headless }?: {}): {
|
|
12
|
+
command: string;
|
|
13
|
+
args: any;
|
|
14
|
+
env: {
|
|
15
|
+
ZIBBY_NODE_SESSION_PATH: any;
|
|
16
|
+
ZIBBY_SESSION_PATH: any;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
}
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
export function _resetInitCache(): void;
|
|
2
|
+
export function _mem0DbPaths(cwd: any): {
|
|
3
|
+
dir: any;
|
|
4
|
+
vectorDbPath: any;
|
|
5
|
+
historyDbPath: any;
|
|
6
|
+
};
|
|
7
|
+
export function _resolveMem0Config(cwd: any): {
|
|
8
|
+
llm: {
|
|
9
|
+
provider: string;
|
|
10
|
+
config: {
|
|
11
|
+
apiKey?: string;
|
|
12
|
+
model: string;
|
|
13
|
+
baseURL: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
embedder: {
|
|
17
|
+
provider: string;
|
|
18
|
+
config: {
|
|
19
|
+
apiKey?: string;
|
|
20
|
+
model: string;
|
|
21
|
+
embeddingDims: number;
|
|
22
|
+
baseURL: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
vectorStore: {
|
|
26
|
+
provider: string;
|
|
27
|
+
config: {
|
|
28
|
+
dimension: number;
|
|
29
|
+
dbPath: any;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
historyDbPath: any;
|
|
33
|
+
};
|
|
34
|
+
export function _resolveMemoryAdapter(cwd: any, context: any): Promise<any>;
|
|
35
|
+
export function _resolveMem0Infer(arg: any, cwd: any): Promise<any>;
|
|
36
|
+
export namespace chatMemorySkill {
|
|
37
|
+
let id: string;
|
|
38
|
+
let description: string;
|
|
39
|
+
let envKeys: any[];
|
|
40
|
+
let promptFragment: string;
|
|
41
|
+
function resolve(): any;
|
|
42
|
+
function buildPromptContext(context: any, args?: {}): Promise<{
|
|
43
|
+
backend: any;
|
|
44
|
+
brief: {
|
|
45
|
+
recentSessions: any;
|
|
46
|
+
topMemories: any;
|
|
47
|
+
taskStats: any;
|
|
48
|
+
ticketFilter: any;
|
|
49
|
+
backend: any;
|
|
50
|
+
error: any;
|
|
51
|
+
};
|
|
52
|
+
promptContext: string;
|
|
53
|
+
debugPreview: {
|
|
54
|
+
backend: any;
|
|
55
|
+
recentSessions: any;
|
|
56
|
+
topMemories: any;
|
|
57
|
+
taskStats: any;
|
|
58
|
+
error: any;
|
|
59
|
+
};
|
|
60
|
+
error: any;
|
|
61
|
+
degradedFrom?: undefined;
|
|
62
|
+
} | {
|
|
63
|
+
backend: string;
|
|
64
|
+
brief: {
|
|
65
|
+
recentSessions: any;
|
|
66
|
+
topMemories: any;
|
|
67
|
+
taskStats: any;
|
|
68
|
+
ticketFilter: any;
|
|
69
|
+
backend: any;
|
|
70
|
+
error: any;
|
|
71
|
+
};
|
|
72
|
+
promptContext: string;
|
|
73
|
+
debugPreview: {
|
|
74
|
+
backend: any;
|
|
75
|
+
recentSessions: any;
|
|
76
|
+
topMemories: any;
|
|
77
|
+
taskStats: any;
|
|
78
|
+
error: any;
|
|
79
|
+
};
|
|
80
|
+
error: any;
|
|
81
|
+
degradedFrom: string;
|
|
82
|
+
}>;
|
|
83
|
+
function handleToolCall(name: any, args: any, context: any): Promise<any>;
|
|
84
|
+
let tools: ({
|
|
85
|
+
name: string;
|
|
86
|
+
description: string;
|
|
87
|
+
input_schema: {
|
|
88
|
+
type: string;
|
|
89
|
+
properties: {
|
|
90
|
+
memoryKey: {
|
|
91
|
+
type: string;
|
|
92
|
+
description: string;
|
|
93
|
+
};
|
|
94
|
+
content: {
|
|
95
|
+
type: string;
|
|
96
|
+
description: string;
|
|
97
|
+
};
|
|
98
|
+
category: {
|
|
99
|
+
type: string;
|
|
100
|
+
enum: string[];
|
|
101
|
+
description: string;
|
|
102
|
+
};
|
|
103
|
+
tier: {
|
|
104
|
+
type: string;
|
|
105
|
+
enum: string[];
|
|
106
|
+
description: string;
|
|
107
|
+
};
|
|
108
|
+
source: {
|
|
109
|
+
type: string;
|
|
110
|
+
description: string;
|
|
111
|
+
};
|
|
112
|
+
ticketKey: {
|
|
113
|
+
type: string;
|
|
114
|
+
description: string;
|
|
115
|
+
};
|
|
116
|
+
infer: {
|
|
117
|
+
type: string;
|
|
118
|
+
description: string;
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
query?: undefined;
|
|
122
|
+
limit?: undefined;
|
|
123
|
+
summary?: undefined;
|
|
124
|
+
tickets?: undefined;
|
|
125
|
+
tasksRun?: undefined;
|
|
126
|
+
tasksPassed?: undefined;
|
|
127
|
+
tasksFailed?: undefined;
|
|
128
|
+
keyFacts?: undefined;
|
|
129
|
+
title?: undefined;
|
|
130
|
+
type?: undefined;
|
|
131
|
+
status?: undefined;
|
|
132
|
+
specPath?: undefined;
|
|
133
|
+
resultSummary?: undefined;
|
|
134
|
+
};
|
|
135
|
+
required: string[];
|
|
136
|
+
};
|
|
137
|
+
} | {
|
|
138
|
+
name: string;
|
|
139
|
+
description: string;
|
|
140
|
+
input_schema: {
|
|
141
|
+
type: string;
|
|
142
|
+
properties: {
|
|
143
|
+
query: {
|
|
144
|
+
type: string;
|
|
145
|
+
description: string;
|
|
146
|
+
};
|
|
147
|
+
category: {
|
|
148
|
+
type: string;
|
|
149
|
+
description: string;
|
|
150
|
+
enum?: undefined;
|
|
151
|
+
};
|
|
152
|
+
ticketKey: {
|
|
153
|
+
type: string;
|
|
154
|
+
description: string;
|
|
155
|
+
};
|
|
156
|
+
tier: {
|
|
157
|
+
type: string;
|
|
158
|
+
enum: string[];
|
|
159
|
+
description: string;
|
|
160
|
+
};
|
|
161
|
+
limit: {
|
|
162
|
+
type: string;
|
|
163
|
+
description: string;
|
|
164
|
+
};
|
|
165
|
+
memoryKey?: undefined;
|
|
166
|
+
content?: undefined;
|
|
167
|
+
source?: undefined;
|
|
168
|
+
infer?: undefined;
|
|
169
|
+
summary?: undefined;
|
|
170
|
+
tickets?: undefined;
|
|
171
|
+
tasksRun?: undefined;
|
|
172
|
+
tasksPassed?: undefined;
|
|
173
|
+
tasksFailed?: undefined;
|
|
174
|
+
keyFacts?: undefined;
|
|
175
|
+
title?: undefined;
|
|
176
|
+
type?: undefined;
|
|
177
|
+
status?: undefined;
|
|
178
|
+
specPath?: undefined;
|
|
179
|
+
resultSummary?: undefined;
|
|
180
|
+
};
|
|
181
|
+
required?: undefined;
|
|
182
|
+
};
|
|
183
|
+
} | {
|
|
184
|
+
name: string;
|
|
185
|
+
description: string;
|
|
186
|
+
input_schema: {
|
|
187
|
+
type: string;
|
|
188
|
+
properties: {
|
|
189
|
+
ticketKey: {
|
|
190
|
+
type: string;
|
|
191
|
+
description: string;
|
|
192
|
+
};
|
|
193
|
+
memoryKey?: undefined;
|
|
194
|
+
content?: undefined;
|
|
195
|
+
category?: undefined;
|
|
196
|
+
tier?: undefined;
|
|
197
|
+
source?: undefined;
|
|
198
|
+
infer?: undefined;
|
|
199
|
+
query?: undefined;
|
|
200
|
+
limit?: undefined;
|
|
201
|
+
summary?: undefined;
|
|
202
|
+
tickets?: undefined;
|
|
203
|
+
tasksRun?: undefined;
|
|
204
|
+
tasksPassed?: undefined;
|
|
205
|
+
tasksFailed?: undefined;
|
|
206
|
+
keyFacts?: undefined;
|
|
207
|
+
title?: undefined;
|
|
208
|
+
type?: undefined;
|
|
209
|
+
status?: undefined;
|
|
210
|
+
specPath?: undefined;
|
|
211
|
+
resultSummary?: undefined;
|
|
212
|
+
};
|
|
213
|
+
required?: undefined;
|
|
214
|
+
};
|
|
215
|
+
} | {
|
|
216
|
+
name: string;
|
|
217
|
+
description: string;
|
|
218
|
+
input_schema: {
|
|
219
|
+
type: string;
|
|
220
|
+
properties: {
|
|
221
|
+
summary: {
|
|
222
|
+
type: string;
|
|
223
|
+
description: string;
|
|
224
|
+
};
|
|
225
|
+
tickets: {
|
|
226
|
+
type: string;
|
|
227
|
+
description: string;
|
|
228
|
+
};
|
|
229
|
+
tasksRun: {
|
|
230
|
+
type: string;
|
|
231
|
+
description: string;
|
|
232
|
+
};
|
|
233
|
+
tasksPassed: {
|
|
234
|
+
type: string;
|
|
235
|
+
description: string;
|
|
236
|
+
};
|
|
237
|
+
tasksFailed: {
|
|
238
|
+
type: string;
|
|
239
|
+
description: string;
|
|
240
|
+
};
|
|
241
|
+
keyFacts: {
|
|
242
|
+
type: string;
|
|
243
|
+
description: string;
|
|
244
|
+
};
|
|
245
|
+
memoryKey?: undefined;
|
|
246
|
+
content?: undefined;
|
|
247
|
+
category?: undefined;
|
|
248
|
+
tier?: undefined;
|
|
249
|
+
source?: undefined;
|
|
250
|
+
ticketKey?: undefined;
|
|
251
|
+
infer?: undefined;
|
|
252
|
+
query?: undefined;
|
|
253
|
+
limit?: undefined;
|
|
254
|
+
title?: undefined;
|
|
255
|
+
type?: undefined;
|
|
256
|
+
status?: undefined;
|
|
257
|
+
specPath?: undefined;
|
|
258
|
+
resultSummary?: undefined;
|
|
259
|
+
};
|
|
260
|
+
required: string[];
|
|
261
|
+
};
|
|
262
|
+
} | {
|
|
263
|
+
name: string;
|
|
264
|
+
description: string;
|
|
265
|
+
input_schema: {
|
|
266
|
+
type: string;
|
|
267
|
+
properties: {
|
|
268
|
+
title: {
|
|
269
|
+
type: string;
|
|
270
|
+
description: string;
|
|
271
|
+
};
|
|
272
|
+
type: {
|
|
273
|
+
type: string;
|
|
274
|
+
enum: string[];
|
|
275
|
+
description: string;
|
|
276
|
+
};
|
|
277
|
+
status: {
|
|
278
|
+
type: string;
|
|
279
|
+
enum: string[];
|
|
280
|
+
description: string;
|
|
281
|
+
};
|
|
282
|
+
ticketKey: {
|
|
283
|
+
type: string;
|
|
284
|
+
description: string;
|
|
285
|
+
};
|
|
286
|
+
specPath: {
|
|
287
|
+
type: string;
|
|
288
|
+
description: string;
|
|
289
|
+
};
|
|
290
|
+
resultSummary: {
|
|
291
|
+
type: string;
|
|
292
|
+
description: string;
|
|
293
|
+
};
|
|
294
|
+
memoryKey?: undefined;
|
|
295
|
+
content?: undefined;
|
|
296
|
+
category?: undefined;
|
|
297
|
+
tier?: undefined;
|
|
298
|
+
source?: undefined;
|
|
299
|
+
infer?: undefined;
|
|
300
|
+
query?: undefined;
|
|
301
|
+
limit?: undefined;
|
|
302
|
+
summary?: undefined;
|
|
303
|
+
tickets?: undefined;
|
|
304
|
+
tasksRun?: undefined;
|
|
305
|
+
tasksPassed?: undefined;
|
|
306
|
+
tasksFailed?: undefined;
|
|
307
|
+
keyFacts?: undefined;
|
|
308
|
+
};
|
|
309
|
+
required: string[];
|
|
310
|
+
};
|
|
311
|
+
} | {
|
|
312
|
+
name: string;
|
|
313
|
+
description: string;
|
|
314
|
+
input_schema: {
|
|
315
|
+
type: string;
|
|
316
|
+
properties: {
|
|
317
|
+
ticketKey: {
|
|
318
|
+
type: string;
|
|
319
|
+
description: string;
|
|
320
|
+
};
|
|
321
|
+
type: {
|
|
322
|
+
type: string;
|
|
323
|
+
description: string;
|
|
324
|
+
enum?: undefined;
|
|
325
|
+
};
|
|
326
|
+
status: {
|
|
327
|
+
type: string;
|
|
328
|
+
description: string;
|
|
329
|
+
enum?: undefined;
|
|
330
|
+
};
|
|
331
|
+
limit: {
|
|
332
|
+
type: string;
|
|
333
|
+
description: string;
|
|
334
|
+
};
|
|
335
|
+
memoryKey?: undefined;
|
|
336
|
+
content?: undefined;
|
|
337
|
+
category?: undefined;
|
|
338
|
+
tier?: undefined;
|
|
339
|
+
source?: undefined;
|
|
340
|
+
infer?: undefined;
|
|
341
|
+
query?: undefined;
|
|
342
|
+
summary?: undefined;
|
|
343
|
+
tickets?: undefined;
|
|
344
|
+
tasksRun?: undefined;
|
|
345
|
+
tasksPassed?: undefined;
|
|
346
|
+
tasksFailed?: undefined;
|
|
347
|
+
keyFacts?: undefined;
|
|
348
|
+
title?: undefined;
|
|
349
|
+
specPath?: undefined;
|
|
350
|
+
resultSummary?: undefined;
|
|
351
|
+
};
|
|
352
|
+
required?: undefined;
|
|
353
|
+
};
|
|
354
|
+
})[];
|
|
355
|
+
}
|