@skillkit/cli 1.7.1 → 1.7.3
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/index.d.ts +5 -29
- package/dist/index.js +1903 -1292
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ declare class SyncCommand extends Command {
|
|
|
27
27
|
agent: string | undefined;
|
|
28
28
|
enabledOnly: boolean;
|
|
29
29
|
yes: boolean;
|
|
30
|
+
quiet: boolean;
|
|
30
31
|
execute(): Promise<number>;
|
|
31
32
|
}
|
|
32
33
|
|
|
@@ -35,9 +36,9 @@ declare class InitCommand extends Command {
|
|
|
35
36
|
static usage: clipanion.Usage;
|
|
36
37
|
agent: string | undefined;
|
|
37
38
|
list: boolean;
|
|
39
|
+
quiet: boolean;
|
|
38
40
|
execute(): Promise<number>;
|
|
39
41
|
private checkAndPromptPublish;
|
|
40
|
-
private prompt;
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
declare class EnableCommand extends Command {
|
|
@@ -73,6 +74,7 @@ declare class InstallCommand extends Command {
|
|
|
73
74
|
provider: string | undefined;
|
|
74
75
|
list: boolean;
|
|
75
76
|
agent: string[] | undefined;
|
|
77
|
+
quiet: boolean;
|
|
76
78
|
execute(): Promise<number>;
|
|
77
79
|
}
|
|
78
80
|
|
|
@@ -199,9 +201,6 @@ declare class ContextCommand extends Command {
|
|
|
199
201
|
private printContextSummary;
|
|
200
202
|
}
|
|
201
203
|
|
|
202
|
-
/**
|
|
203
|
-
* Recommend command - get smart skill recommendations based on project analysis
|
|
204
|
-
*/
|
|
205
204
|
declare class RecommendCommand extends Command {
|
|
206
205
|
static paths: string[][];
|
|
207
206
|
static usage: clipanion.Usage;
|
|
@@ -215,34 +214,13 @@ declare class RecommendCommand extends Command {
|
|
|
215
214
|
includeInstalled: boolean;
|
|
216
215
|
json: boolean;
|
|
217
216
|
projectPath: string | undefined;
|
|
217
|
+
quiet: boolean;
|
|
218
218
|
execute(): Promise<number>;
|
|
219
|
-
/**
|
|
220
|
-
* Get project profile from context or by analyzing project
|
|
221
|
-
*/
|
|
222
219
|
private getProjectProfile;
|
|
223
|
-
/**
|
|
224
|
-
* Show project profile summary
|
|
225
|
-
*/
|
|
226
220
|
private showProjectProfile;
|
|
227
|
-
/**
|
|
228
|
-
* Display recommendations
|
|
229
|
-
*/
|
|
230
221
|
private displayRecommendations;
|
|
231
|
-
/**
|
|
232
|
-
* Generate a visual score bar
|
|
233
|
-
*/
|
|
234
|
-
private getScoreBar;
|
|
235
|
-
/**
|
|
236
|
-
* Handle search mode
|
|
237
|
-
*/
|
|
238
222
|
private handleSearch;
|
|
239
|
-
/**
|
|
240
|
-
* Load skill index from cache
|
|
241
|
-
*/
|
|
242
223
|
private loadIndex;
|
|
243
|
-
/**
|
|
244
|
-
* Update skill index from sources
|
|
245
|
-
*/
|
|
246
224
|
private updateIndex;
|
|
247
225
|
}
|
|
248
226
|
|
|
@@ -376,9 +354,6 @@ declare class TestCommand extends Command {
|
|
|
376
354
|
private parseSkillTests;
|
|
377
355
|
}
|
|
378
356
|
|
|
379
|
-
/**
|
|
380
|
-
* Marketplace command - browse and install skills from the marketplace
|
|
381
|
-
*/
|
|
382
357
|
declare class MarketplaceCommand extends Command {
|
|
383
358
|
static paths: string[][];
|
|
384
359
|
static usage: clipanion.Usage;
|
|
@@ -388,6 +363,7 @@ declare class MarketplaceCommand extends Command {
|
|
|
388
363
|
tags: string | undefined;
|
|
389
364
|
source: string | undefined;
|
|
390
365
|
json: boolean;
|
|
366
|
+
quiet: boolean;
|
|
391
367
|
execute(): Promise<number>;
|
|
392
368
|
private browseMarketplace;
|
|
393
369
|
private searchSkills;
|