@skillkit/cli 1.8.1 → 1.10.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/index.d.ts +54 -3
- package/dist/index.js +934 -106
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -233,10 +233,21 @@ declare class RecommendCommand extends Command {
|
|
|
233
233
|
json: boolean;
|
|
234
234
|
projectPath: string | undefined;
|
|
235
235
|
quiet: boolean;
|
|
236
|
-
|
|
236
|
+
explain: boolean;
|
|
237
|
+
reasoning: boolean;
|
|
238
|
+
showPath: boolean;
|
|
239
|
+
hybrid: boolean;
|
|
240
|
+
expand: boolean;
|
|
241
|
+
rerank: boolean;
|
|
242
|
+
buildIndex: boolean;
|
|
243
|
+
execute(): Promise<number>;
|
|
244
|
+
private handleReasoningRecommendations;
|
|
237
245
|
private getProjectProfile;
|
|
238
246
|
private showProjectProfile;
|
|
239
247
|
private displayRecommendations;
|
|
248
|
+
private displayExplainedRecommendations;
|
|
249
|
+
private handleHybridSearch;
|
|
250
|
+
private buildHybridIndex;
|
|
240
251
|
private handleSearch;
|
|
241
252
|
private loadIndex;
|
|
242
253
|
private updateIndex;
|
|
@@ -742,6 +753,17 @@ declare class AuditCommand extends Command {
|
|
|
742
753
|
}
|
|
743
754
|
|
|
744
755
|
declare class PublishCommand extends Command {
|
|
756
|
+
static paths: string[][];
|
|
757
|
+
static usage: clipanion.Usage;
|
|
758
|
+
skillPath: string | undefined;
|
|
759
|
+
output: string | undefined;
|
|
760
|
+
dryRun: boolean;
|
|
761
|
+
execute(): Promise<number>;
|
|
762
|
+
private discoverSkills;
|
|
763
|
+
private getSkillFiles;
|
|
764
|
+
private parseFrontmatter;
|
|
765
|
+
}
|
|
766
|
+
declare class PublishSubmitCommand extends Command {
|
|
745
767
|
static paths: string[][];
|
|
746
768
|
static usage: clipanion.Usage;
|
|
747
769
|
skillPath: string | undefined;
|
|
@@ -753,7 +775,6 @@ declare class PublishCommand extends Command {
|
|
|
753
775
|
private slugify;
|
|
754
776
|
private getRepoInfo;
|
|
755
777
|
private formatName;
|
|
756
|
-
private inferTags;
|
|
757
778
|
private createIssueBody;
|
|
758
779
|
}
|
|
759
780
|
|
|
@@ -828,6 +849,18 @@ declare class AgentAvailableCommand extends Command {
|
|
|
828
849
|
installed: boolean;
|
|
829
850
|
execute(): Promise<number>;
|
|
830
851
|
}
|
|
852
|
+
declare class AgentFromSkillCommand extends Command {
|
|
853
|
+
static paths: string[][];
|
|
854
|
+
static usage: clipanion.Usage;
|
|
855
|
+
skillName: string;
|
|
856
|
+
inline: boolean;
|
|
857
|
+
model: string | undefined;
|
|
858
|
+
permission: string | undefined;
|
|
859
|
+
global: boolean;
|
|
860
|
+
output: string | undefined;
|
|
861
|
+
dryRun: boolean;
|
|
862
|
+
execute(): Promise<number>;
|
|
863
|
+
}
|
|
831
864
|
|
|
832
865
|
declare class CheckCommand extends Command {
|
|
833
866
|
static paths: string[][];
|
|
@@ -1157,6 +1190,24 @@ declare class GuidelineRemoveCommand extends Command {
|
|
|
1157
1190
|
execute(): Promise<number>;
|
|
1158
1191
|
}
|
|
1159
1192
|
|
|
1193
|
+
declare class TreeCommand extends Command {
|
|
1194
|
+
static paths: string[][];
|
|
1195
|
+
static usage: clipanion.Usage;
|
|
1196
|
+
treePath: string | undefined;
|
|
1197
|
+
depth: string | undefined;
|
|
1198
|
+
generate: boolean;
|
|
1199
|
+
markdown: boolean;
|
|
1200
|
+
stats: boolean;
|
|
1201
|
+
json: boolean;
|
|
1202
|
+
quiet: boolean;
|
|
1203
|
+
execute(): Promise<number>;
|
|
1204
|
+
private generateTree;
|
|
1205
|
+
private loadOrGenerateTree;
|
|
1206
|
+
private showStats;
|
|
1207
|
+
private displayTree;
|
|
1208
|
+
private renderNode;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1160
1211
|
declare const loadSkillMetadata: typeof loadSkillMetadata$1;
|
|
1161
1212
|
declare const saveSkillMetadata: typeof saveSkillMetadata$1;
|
|
1162
1213
|
declare function getSearchDirs(agentType?: AgentType): string[];
|
|
@@ -1164,4 +1215,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
1164
1215
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
1165
1216
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
1166
1217
|
|
|
1167
|
-
export { AICommand, AgentAvailableCommand, AgentCommand, AgentCreateCommand, AgentInstallCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CheckCommand, CommandAvailableCommand, CommandCmd, CommandInstallCommand, ContextCommand, CreateCommand, DisableCommand, EnableCommand, FindCommand, FixCommand, GuidelineCommand, GuidelineCreateCommand, GuidelineDisableCommand, GuidelineEnableCommand, GuidelineListCommand, GuidelineRemoveCommand, GuidelineShowCommand, HookCommand, HookTemplateApplyCommand, HookTemplateListCommand, HookTemplateShowCommand, InitCommand, InstallCommand, LearnCommand, ListCommand, ManifestAddCommand, ManifestCommand, ManifestGenerateCommand, ManifestInitCommand, ManifestInstallCommand, ManifestRemoveCommand, MarketplaceCommand, MemoryCommand, MeshCommand, MessageCommand, MethodologyCommand, PatternApproveCommand, PatternClusterCommand, PatternExportCommand, PatternFeedbackCommand, PatternImportCommand, PatternRejectCommand, PatternStatusCommand, PauseCommand, PlanCommand, PluginCommand, PrimerCommand, ProfileCommand, ProfileCreateCommand, ProfileListCommand, ProfileRemoveCommand, PublishCommand, ReadCommand, RecommendCommand, RemoveCommand, ResumeCommand, RunCommand, SessionCommand, SessionCompleteCommand, SessionInProgressCommand, SessionListCommand, SessionLoadCommand, SessionNoteCommand, SessionStartCommand, SessionStatusCommand, SettingsCommand, StatusCommand, SyncCommand, TeamCommand, TestCommand, TranslateCommand, UICommand, UpdateCommand, ValidateCommand, WorkflowCreateCommand, WorkflowListCommand, WorkflowPipelineCommand, WorkflowPipelineListCommand, WorkflowRunCommand, getAgentConfigPath, getInstallDir, getSearchDirs, initProject, loadSkillMetadata, saveSkillMetadata };
|
|
1218
|
+
export { AICommand, AgentAvailableCommand, AgentCommand, AgentCreateCommand, AgentFromSkillCommand, AgentInstallCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CheckCommand, CommandAvailableCommand, CommandCmd, CommandInstallCommand, ContextCommand, CreateCommand, DisableCommand, EnableCommand, FindCommand, FixCommand, GuidelineCommand, GuidelineCreateCommand, GuidelineDisableCommand, GuidelineEnableCommand, GuidelineListCommand, GuidelineRemoveCommand, GuidelineShowCommand, HookCommand, HookTemplateApplyCommand, HookTemplateListCommand, HookTemplateShowCommand, InitCommand, InstallCommand, LearnCommand, ListCommand, ManifestAddCommand, ManifestCommand, ManifestGenerateCommand, ManifestInitCommand, ManifestInstallCommand, ManifestRemoveCommand, MarketplaceCommand, MemoryCommand, MeshCommand, MessageCommand, MethodologyCommand, PatternApproveCommand, PatternClusterCommand, PatternExportCommand, PatternFeedbackCommand, PatternImportCommand, PatternRejectCommand, PatternStatusCommand, PauseCommand, PlanCommand, PluginCommand, PrimerCommand, ProfileCommand, ProfileCreateCommand, ProfileListCommand, ProfileRemoveCommand, PublishCommand, PublishSubmitCommand, ReadCommand, RecommendCommand, RemoveCommand, ResumeCommand, RunCommand, SessionCommand, SessionCompleteCommand, SessionInProgressCommand, SessionListCommand, SessionLoadCommand, SessionNoteCommand, SessionStartCommand, SessionStatusCommand, SettingsCommand, StatusCommand, SyncCommand, TeamCommand, TestCommand, TranslateCommand, TreeCommand, UICommand, UpdateCommand, ValidateCommand, WorkflowCreateCommand, WorkflowListCommand, WorkflowPipelineCommand, WorkflowPipelineListCommand, WorkflowRunCommand, getAgentConfigPath, getInstallDir, getSearchDirs, initProject, loadSkillMetadata, saveSkillMetadata };
|