skrypt-ai 0.5.0 → 0.6.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/dist/auth/index.js +8 -1
- package/dist/autofix/index.d.ts +0 -4
- package/dist/autofix/index.js +0 -21
- package/dist/capture/browser.d.ts +11 -0
- package/dist/capture/browser.js +173 -0
- package/dist/capture/diff.d.ts +23 -0
- package/dist/capture/diff.js +52 -0
- package/dist/capture/index.d.ts +23 -0
- package/dist/capture/index.js +210 -0
- package/dist/capture/naming.d.ts +17 -0
- package/dist/capture/naming.js +45 -0
- package/dist/capture/parser.d.ts +15 -0
- package/dist/capture/parser.js +80 -0
- package/dist/capture/types.d.ts +57 -0
- package/dist/capture/types.js +1 -0
- package/dist/cli.js +4 -0
- package/dist/commands/autofix.js +136 -120
- package/dist/commands/cron.js +58 -47
- package/dist/commands/deploy.js +123 -102
- package/dist/commands/generate.js +88 -6
- package/dist/commands/heal.d.ts +10 -0
- package/dist/commands/heal.js +201 -0
- package/dist/commands/i18n.js +146 -111
- package/dist/commands/lint.js +50 -44
- package/dist/commands/llms-txt.js +59 -49
- package/dist/commands/login.js +61 -43
- package/dist/commands/mcp.js +6 -0
- package/dist/commands/monitor.js +13 -8
- package/dist/commands/qa.d.ts +2 -0
- package/dist/commands/qa.js +43 -0
- package/dist/commands/review-pr.js +108 -102
- package/dist/commands/sdk.js +128 -122
- package/dist/commands/security.js +86 -80
- package/dist/commands/test.js +91 -92
- package/dist/commands/version.js +104 -75
- package/dist/commands/watch.js +130 -114
- package/dist/config/types.js +2 -2
- package/dist/context-hub/index.d.ts +23 -0
- package/dist/context-hub/index.js +179 -0
- package/dist/context-hub/mappings.d.ts +8 -0
- package/dist/context-hub/mappings.js +55 -0
- package/dist/context-hub/types.d.ts +33 -0
- package/dist/context-hub/types.js +1 -0
- package/dist/generator/generator.js +39 -6
- package/dist/generator/types.d.ts +7 -0
- package/dist/generator/writer.d.ts +3 -1
- package/dist/generator/writer.js +24 -4
- package/dist/llm/anthropic-client.d.ts +1 -0
- package/dist/llm/anthropic-client.js +3 -1
- package/dist/llm/index.d.ts +6 -4
- package/dist/llm/index.js +76 -261
- package/dist/llm/openai-client.d.ts +1 -0
- package/dist/llm/openai-client.js +7 -2
- package/dist/qa/checks.d.ts +10 -0
- package/dist/qa/checks.js +492 -0
- package/dist/qa/fixes.d.ts +30 -0
- package/dist/qa/fixes.js +277 -0
- package/dist/qa/index.d.ts +29 -0
- package/dist/qa/index.js +187 -0
- package/dist/qa/types.d.ts +24 -0
- package/dist/qa/types.js +1 -0
- package/dist/scanner/csharp.d.ts +23 -0
- package/dist/scanner/csharp.js +421 -0
- package/dist/scanner/index.js +16 -2
- package/dist/scanner/java.d.ts +39 -0
- package/dist/scanner/java.js +318 -0
- package/dist/scanner/kotlin.d.ts +23 -0
- package/dist/scanner/kotlin.js +389 -0
- package/dist/scanner/php.d.ts +57 -0
- package/dist/scanner/php.js +351 -0
- package/dist/scanner/ruby.d.ts +36 -0
- package/dist/scanner/ruby.js +431 -0
- package/dist/scanner/swift.d.ts +25 -0
- package/dist/scanner/swift.js +392 -0
- package/dist/scanner/types.d.ts +1 -1
- package/dist/template/content/docs/_navigation.json +46 -0
- package/dist/template/content/docs/_sidebars.json +684 -0
- package/dist/template/content/docs/core.md +4544 -0
- package/dist/template/content/docs/index.mdx +89 -0
- package/dist/template/content/docs/integrations.md +1158 -0
- package/dist/template/content/docs/llms-full.md +403 -0
- package/dist/template/content/docs/llms.txt +4588 -0
- package/dist/template/content/docs/other.md +10379 -0
- package/dist/template/content/docs/tools.md +746 -0
- package/dist/template/content/docs/types.md +531 -0
- package/dist/template/docs.json +13 -11
- package/dist/template/mdx-components.tsx +27 -2
- package/dist/template/package.json +6 -0
- package/dist/template/public/search-index.json +1 -1
- package/dist/template/scripts/build-search-index.mjs +84 -6
- package/dist/template/src/app/api/chat/route.ts +83 -128
- package/dist/template/src/app/docs/[...slug]/page.tsx +75 -20
- package/dist/template/src/app/docs/llms-full.md +151 -4
- package/dist/template/src/app/docs/llms.txt +2464 -847
- package/dist/template/src/app/docs/page.mdx +48 -38
- package/dist/template/src/app/layout.tsx +3 -1
- package/dist/template/src/app/page.tsx +22 -8
- package/dist/template/src/components/ai-chat.tsx +73 -64
- package/dist/template/src/components/breadcrumbs.tsx +21 -23
- package/dist/template/src/components/copy-button.tsx +13 -9
- package/dist/template/src/components/copy-page-button.tsx +54 -0
- package/dist/template/src/components/docs-layout.tsx +37 -25
- package/dist/template/src/components/header.tsx +51 -10
- package/dist/template/src/components/mdx/card.tsx +17 -3
- package/dist/template/src/components/mdx/code-block.tsx +13 -9
- package/dist/template/src/components/mdx/code-group.tsx +13 -8
- package/dist/template/src/components/mdx/heading.tsx +15 -2
- package/dist/template/src/components/mdx/highlighted-code.tsx +13 -8
- package/dist/template/src/components/mdx/index.tsx +2 -0
- package/dist/template/src/components/mdx/mermaid.tsx +110 -0
- package/dist/template/src/components/mdx/screenshot.tsx +150 -0
- package/dist/template/src/components/scroll-to-hash.tsx +48 -0
- package/dist/template/src/components/sidebar.tsx +12 -18
- package/dist/template/src/components/table-of-contents.tsx +9 -0
- package/dist/template/src/lib/highlight.ts +3 -88
- package/dist/template/src/lib/navigation.ts +159 -0
- package/dist/template/src/styles/globals.css +17 -6
- package/dist/utils/validation.d.ts +0 -3
- package/dist/utils/validation.js +0 -26
- package/package.json +3 -2
|
@@ -0,0 +1,684 @@
|
|
|
1
|
+
{
|
|
2
|
+
"apiSidebar": [
|
|
3
|
+
{
|
|
4
|
+
"type": "category",
|
|
5
|
+
"label": "Core API",
|
|
6
|
+
"items": [
|
|
7
|
+
{
|
|
8
|
+
"type": "doc",
|
|
9
|
+
"id": "core/pluginmanager",
|
|
10
|
+
"label": "PluginManager"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "doc",
|
|
14
|
+
"id": "core/autofixbatch",
|
|
15
|
+
"label": "autoFixBatch"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "doc",
|
|
19
|
+
"id": "core/autofixexample",
|
|
20
|
+
"label": "autoFixExample"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "doc",
|
|
24
|
+
"id": "core/checkplan",
|
|
25
|
+
"label": "checkPlan"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "doc",
|
|
29
|
+
"id": "core/clearauth",
|
|
30
|
+
"label": "clearAuth"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "doc",
|
|
34
|
+
"id": "core/createllmclient",
|
|
35
|
+
"label": "createLLMClient"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"type": "doc",
|
|
39
|
+
"id": "core/createpythonvalidator",
|
|
40
|
+
"label": "createPythonValidator"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "doc",
|
|
44
|
+
"id": "core/createtypescriptvalidator",
|
|
45
|
+
"label": "createTypeScriptValidator"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "doc",
|
|
49
|
+
"id": "core/defineplugin",
|
|
50
|
+
"label": "definePlugin"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "doc",
|
|
54
|
+
"id": "core/fixcodesample",
|
|
55
|
+
"label": "fixCodeSample"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "doc",
|
|
59
|
+
"id": "core/generatedocumentation",
|
|
60
|
+
"label": "generateDocumentation"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "doc",
|
|
64
|
+
"id": "core/getauthconfig",
|
|
65
|
+
"label": "getAuthConfig"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "doc",
|
|
69
|
+
"id": "core/getauthconfigasync",
|
|
70
|
+
"label": "getAuthConfigAsync"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"type": "doc",
|
|
74
|
+
"id": "core/getkeystoragemethod",
|
|
75
|
+
"label": "getKeyStorageMethod"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "doc",
|
|
79
|
+
"id": "core/requirepro",
|
|
80
|
+
"label": "requirePro"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "doc",
|
|
84
|
+
"id": "core/runimport",
|
|
85
|
+
"label": "runImport"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "doc",
|
|
89
|
+
"id": "core/saveauthconfig",
|
|
90
|
+
"label": "saveAuthConfig"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"type": "doc",
|
|
94
|
+
"id": "core/scandirectory",
|
|
95
|
+
"label": "scanDirectory"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "doc",
|
|
99
|
+
"id": "core/scanfile",
|
|
100
|
+
"label": "scanFile"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"type": "doc",
|
|
104
|
+
"id": "core/constructor",
|
|
105
|
+
"label": "constructor"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"type": "doc",
|
|
109
|
+
"id": "core/loadplugins",
|
|
110
|
+
"label": "loadPlugins"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "doc",
|
|
114
|
+
"id": "core/onaftergenerate",
|
|
115
|
+
"label": "onAfterGenerate"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"type": "doc",
|
|
119
|
+
"id": "core/onafterscan",
|
|
120
|
+
"label": "onAfterScan"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"type": "doc",
|
|
124
|
+
"id": "core/onafterwrite",
|
|
125
|
+
"label": "onAfterWrite"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "doc",
|
|
129
|
+
"id": "core/onbeforegenerate",
|
|
130
|
+
"label": "onBeforeGenerate"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"type": "doc",
|
|
134
|
+
"id": "core/onbeforescan",
|
|
135
|
+
"label": "onBeforeScan"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"type": "doc",
|
|
139
|
+
"id": "core/onbeforewrite",
|
|
140
|
+
"label": "onBeforeWrite"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"type": "doc",
|
|
144
|
+
"id": "core/oninit",
|
|
145
|
+
"label": "onInit"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "doc",
|
|
149
|
+
"id": "core/register",
|
|
150
|
+
"label": "register"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"type": "doc",
|
|
154
|
+
"id": "core/runhook",
|
|
155
|
+
"label": "runHook"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": "doc",
|
|
159
|
+
"id": "core/transformcontent",
|
|
160
|
+
"label": "transformContent"
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"type": "category",
|
|
166
|
+
"label": "Tools & Utilities",
|
|
167
|
+
"items": [
|
|
168
|
+
{
|
|
169
|
+
"type": "doc",
|
|
170
|
+
"id": "tools/findmdxfiles",
|
|
171
|
+
"label": "findMdxFiles"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"type": "doc",
|
|
175
|
+
"id": "tools/parsefrontmatter",
|
|
176
|
+
"label": "parseFrontmatter"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "doc",
|
|
180
|
+
"id": "tools/sanitizeforshell",
|
|
181
|
+
"label": "sanitizeForShell"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"type": "doc",
|
|
185
|
+
"id": "tools/slugify",
|
|
186
|
+
"label": "slugify"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"type": "doc",
|
|
190
|
+
"id": "tools/validatepath",
|
|
191
|
+
"label": "validatePath"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "doc",
|
|
195
|
+
"id": "tools/validateslug",
|
|
196
|
+
"label": "validateSlug"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"type": "doc",
|
|
200
|
+
"id": "tools/validateurl",
|
|
201
|
+
"label": "validateUrl"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": "category",
|
|
207
|
+
"label": "Types & Interfaces",
|
|
208
|
+
"items": [
|
|
209
|
+
{
|
|
210
|
+
"type": "doc",
|
|
211
|
+
"id": "types/typescriptscanner",
|
|
212
|
+
"label": "TypeScriptScanner"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"type": "doc",
|
|
216
|
+
"id": "types/canhandle",
|
|
217
|
+
"label": "canHandle"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"type": "doc",
|
|
221
|
+
"id": "types/scanfile",
|
|
222
|
+
"label": "scanFile"
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"type": "category",
|
|
228
|
+
"label": "Integrations",
|
|
229
|
+
"items": [
|
|
230
|
+
{
|
|
231
|
+
"type": "doc",
|
|
232
|
+
"id": "integrations/anthropicclient",
|
|
233
|
+
"label": "AnthropicClient"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "doc",
|
|
237
|
+
"id": "integrations/openaicompatibleclient",
|
|
238
|
+
"label": "OpenAICompatibleClient"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"type": "doc",
|
|
242
|
+
"id": "integrations/complete",
|
|
243
|
+
"label": "complete"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"type": "doc",
|
|
247
|
+
"id": "integrations/complete",
|
|
248
|
+
"label": "complete"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "doc",
|
|
252
|
+
"id": "integrations/constructor",
|
|
253
|
+
"label": "constructor"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"type": "doc",
|
|
257
|
+
"id": "integrations/constructor",
|
|
258
|
+
"label": "constructor"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"type": "doc",
|
|
262
|
+
"id": "integrations/isconfigured",
|
|
263
|
+
"label": "isConfigured"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"type": "doc",
|
|
267
|
+
"id": "integrations/isconfigured",
|
|
268
|
+
"label": "isConfigured"
|
|
269
|
+
}
|
|
270
|
+
]
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"type": "category",
|
|
274
|
+
"label": "Other",
|
|
275
|
+
"items": [
|
|
276
|
+
{
|
|
277
|
+
"type": "doc",
|
|
278
|
+
"id": "other/goscanner",
|
|
279
|
+
"label": "GoScanner"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"type": "doc",
|
|
283
|
+
"id": "other/pythonscanner",
|
|
284
|
+
"label": "PythonScanner"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"type": "doc",
|
|
288
|
+
"id": "other/rustscanner",
|
|
289
|
+
"label": "RustScanner"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"type": "doc",
|
|
293
|
+
"id": "other/analyzeprfordocs",
|
|
294
|
+
"label": "analyzePRForDocs"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"type": "doc",
|
|
298
|
+
"id": "other/build-signature",
|
|
299
|
+
"label": "build_signature"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"type": "doc",
|
|
303
|
+
"id": "other/buildnavigation",
|
|
304
|
+
"label": "buildNavigation"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "doc",
|
|
308
|
+
"id": "other/checkapikey",
|
|
309
|
+
"label": "checkApiKey"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"type": "doc",
|
|
313
|
+
"id": "other/classifyelement",
|
|
314
|
+
"label": "classifyElement"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"type": "doc",
|
|
318
|
+
"id": "other/classifyelements",
|
|
319
|
+
"label": "classifyElements"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"type": "doc",
|
|
323
|
+
"id": "other/detectcrossreferences",
|
|
324
|
+
"label": "detectCrossReferences"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"type": "doc",
|
|
328
|
+
"id": "other/detectformat",
|
|
329
|
+
"label": "detectFormat"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"type": "doc",
|
|
333
|
+
"id": "other/extract-class",
|
|
334
|
+
"label": "extract_class"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"type": "doc",
|
|
338
|
+
"id": "other/extract-function",
|
|
339
|
+
"label": "extract_function"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"type": "doc",
|
|
343
|
+
"id": "other/extract-parameters",
|
|
344
|
+
"label": "extract_parameters"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"type": "doc",
|
|
348
|
+
"id": "other/findconfigfile",
|
|
349
|
+
"label": "findConfigFile"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"type": "doc",
|
|
353
|
+
"id": "other/formatasmarkdown",
|
|
354
|
+
"label": "formatAsMarkdown"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"type": "doc",
|
|
358
|
+
"id": "other/generateforelement",
|
|
359
|
+
"label": "generateForElement"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"type": "doc",
|
|
363
|
+
"id": "other/generateforelements",
|
|
364
|
+
"label": "generateForElements"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"type": "doc",
|
|
368
|
+
"id": "other/generatesidebarconfig",
|
|
369
|
+
"label": "generateSidebarConfig"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"type": "doc",
|
|
373
|
+
"id": "other/get-default-value",
|
|
374
|
+
"label": "get_default_value"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"type": "doc",
|
|
378
|
+
"id": "other/get-docstring",
|
|
379
|
+
"label": "get_docstring"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": "doc",
|
|
383
|
+
"id": "other/get-type-annotation",
|
|
384
|
+
"label": "get_type_annotation"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"type": "doc",
|
|
388
|
+
"id": "other/getcrossrefsforelement",
|
|
389
|
+
"label": "getCrossRefsForElement"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"type": "doc",
|
|
393
|
+
"id": "other/getkeychainplatformname",
|
|
394
|
+
"label": "getKeychainPlatformName"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "doc",
|
|
398
|
+
"id": "other/getpromptforcontenttype",
|
|
399
|
+
"label": "getPromptForContentType"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"type": "doc",
|
|
403
|
+
"id": "other/getrecommendedstructure",
|
|
404
|
+
"label": "getRecommendedStructure"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"type": "doc",
|
|
408
|
+
"id": "other/getsortweight",
|
|
409
|
+
"label": "getSortWeight"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"type": "doc",
|
|
413
|
+
"id": "other/groupdocsbyfile",
|
|
414
|
+
"label": "groupDocsByFile"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"type": "doc",
|
|
418
|
+
"id": "other/hasseennotice",
|
|
419
|
+
"label": "hasSeenNotice"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"type": "doc",
|
|
423
|
+
"id": "other/importconfluence",
|
|
424
|
+
"label": "importConfluence"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"type": "doc",
|
|
428
|
+
"id": "other/importdocusaurus",
|
|
429
|
+
"label": "importDocusaurus"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"type": "doc",
|
|
433
|
+
"id": "other/importfromgithub",
|
|
434
|
+
"label": "importFromGitHub"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"type": "doc",
|
|
438
|
+
"id": "other/importgitbook",
|
|
439
|
+
"label": "importGitBook"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"type": "doc",
|
|
443
|
+
"id": "other/importmarkdown",
|
|
444
|
+
"label": "importMarkdown"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"type": "doc",
|
|
448
|
+
"id": "other/importmintlify",
|
|
449
|
+
"label": "importMintlify"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"type": "doc",
|
|
453
|
+
"id": "other/importnotion",
|
|
454
|
+
"label": "importNotion"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"type": "doc",
|
|
458
|
+
"id": "other/importreadme",
|
|
459
|
+
"label": "importReadme"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"type": "doc",
|
|
463
|
+
"id": "other/isgithuburl",
|
|
464
|
+
"label": "isGitHubUrl"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"type": "doc",
|
|
468
|
+
"id": "other/keychainavailable",
|
|
469
|
+
"label": "keychainAvailable"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"type": "doc",
|
|
473
|
+
"id": "other/keychaindelete",
|
|
474
|
+
"label": "keychainDelete"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"type": "doc",
|
|
478
|
+
"id": "other/keychainretrieve",
|
|
479
|
+
"label": "keychainRetrieve"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"type": "doc",
|
|
483
|
+
"id": "other/keychainstore",
|
|
484
|
+
"label": "keychainStore"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"type": "doc",
|
|
488
|
+
"id": "other/loadconfig",
|
|
489
|
+
"label": "loadConfig"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "doc",
|
|
493
|
+
"id": "other/marknoticeseen",
|
|
494
|
+
"label": "markNoticeSeen"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"type": "doc",
|
|
498
|
+
"id": "other/mergetopicconfig",
|
|
499
|
+
"label": "mergeTopicConfig"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"type": "doc",
|
|
503
|
+
"id": "other/normalizefrontmatter",
|
|
504
|
+
"label": "normalizeFrontmatter"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"type": "doc",
|
|
508
|
+
"id": "other/organizebytopic",
|
|
509
|
+
"label": "organizeByTopic"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"type": "doc",
|
|
513
|
+
"id": "other/parsegithuburl",
|
|
514
|
+
"label": "parseGitHubUrl"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"type": "doc",
|
|
518
|
+
"id": "other/postinlinecomments",
|
|
519
|
+
"label": "postInlineComments"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"type": "doc",
|
|
523
|
+
"id": "other/postprcomment",
|
|
524
|
+
"label": "postPRComment"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"type": "doc",
|
|
528
|
+
"id": "other/rewriteimagepaths",
|
|
529
|
+
"label": "rewriteImagePaths"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"type": "doc",
|
|
533
|
+
"id": "other/scan-file",
|
|
534
|
+
"label": "scan_file"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"type": "doc",
|
|
538
|
+
"id": "other/showsecuritynotice",
|
|
539
|
+
"label": "showSecurityNotice"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"type": "doc",
|
|
543
|
+
"id": "other/stripdocusaurusimports",
|
|
544
|
+
"label": "stripDocusaurusImports"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"type": "doc",
|
|
548
|
+
"id": "other/stripnotionuuids",
|
|
549
|
+
"label": "stripNotionUUIDs"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "doc",
|
|
553
|
+
"id": "other/transformconfluencecallouts",
|
|
554
|
+
"label": "transformConfluenceCallouts"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"type": "doc",
|
|
558
|
+
"id": "other/transformconfluencehtml",
|
|
559
|
+
"label": "transformConfluenceHtml"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"type": "doc",
|
|
563
|
+
"id": "other/transformdocusaurusadmonitions",
|
|
564
|
+
"label": "transformDocusaurusAdmonitions"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"type": "doc",
|
|
568
|
+
"id": "other/transformdocusaurustabs",
|
|
569
|
+
"label": "transformDocusaurusTabs"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"type": "doc",
|
|
573
|
+
"id": "other/transformgitbookcontentref",
|
|
574
|
+
"label": "transformGitBookContentRef"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"type": "doc",
|
|
578
|
+
"id": "other/transformgitbookembed",
|
|
579
|
+
"label": "transformGitBookEmbed"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"type": "doc",
|
|
583
|
+
"id": "other/transformgitbookexpandable",
|
|
584
|
+
"label": "transformGitBookExpandable"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"type": "doc",
|
|
588
|
+
"id": "other/transformgitbookhints",
|
|
589
|
+
"label": "transformGitBookHints"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"type": "doc",
|
|
593
|
+
"id": "other/transformgitbooksteps",
|
|
594
|
+
"label": "transformGitBookSteps"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"type": "doc",
|
|
598
|
+
"id": "other/transformgitbooktabs",
|
|
599
|
+
"label": "transformGitBookTabs"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"type": "doc",
|
|
603
|
+
"id": "other/transformmintlifycallouts",
|
|
604
|
+
"label": "transformMintlifyCallouts"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"type": "doc",
|
|
608
|
+
"id": "other/transformmintlifytabs",
|
|
609
|
+
"label": "transformMintlifyTabs"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"type": "doc",
|
|
613
|
+
"id": "other/transformnotioncallouts",
|
|
614
|
+
"label": "transformNotionCallouts"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"type": "doc",
|
|
618
|
+
"id": "other/transformnotiontoggles",
|
|
619
|
+
"label": "transformNotionToggles"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"type": "doc",
|
|
623
|
+
"id": "other/transformreadmecallouts",
|
|
624
|
+
"label": "transformReadmeCallouts"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"type": "doc",
|
|
628
|
+
"id": "other/transformreadmecodeblocks",
|
|
629
|
+
"label": "transformReadmeCodeBlocks"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"type": "doc",
|
|
633
|
+
"id": "other/validateconfig",
|
|
634
|
+
"label": "validateConfig"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"type": "doc",
|
|
638
|
+
"id": "other/writedocsbytopic",
|
|
639
|
+
"label": "writeDocsByTopic"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"type": "doc",
|
|
643
|
+
"id": "other/writedocstodirectory",
|
|
644
|
+
"label": "writeDocsToDirectory"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"type": "doc",
|
|
648
|
+
"id": "other/writellmstxt",
|
|
649
|
+
"label": "writeLlmsTxt"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"type": "doc",
|
|
653
|
+
"id": "other/canhandle",
|
|
654
|
+
"label": "canHandle"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"type": "doc",
|
|
658
|
+
"id": "other/canhandle",
|
|
659
|
+
"label": "canHandle"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"type": "doc",
|
|
663
|
+
"id": "other/canhandle",
|
|
664
|
+
"label": "canHandle"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"type": "doc",
|
|
668
|
+
"id": "other/scanfile",
|
|
669
|
+
"label": "scanFile"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"type": "doc",
|
|
673
|
+
"id": "other/scanfile",
|
|
674
|
+
"label": "scanFile"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"type": "doc",
|
|
678
|
+
"id": "other/scanfile",
|
|
679
|
+
"label": "scanFile"
|
|
680
|
+
}
|
|
681
|
+
]
|
|
682
|
+
}
|
|
683
|
+
]
|
|
684
|
+
}
|