@skillkit/cli 1.10.0 → 1.12.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 +43 -1
- package/dist/index.js +758 -19
- package/dist/index.js.map +1 -1
- package/package.json +9 -8
package/dist/index.d.ts
CHANGED
|
@@ -879,6 +879,7 @@ declare class FindCommand extends Command {
|
|
|
879
879
|
limit: string;
|
|
880
880
|
install: boolean;
|
|
881
881
|
quiet: boolean;
|
|
882
|
+
federated: boolean;
|
|
882
883
|
execute(): Promise<number>;
|
|
883
884
|
}
|
|
884
885
|
|
|
@@ -1208,6 +1209,47 @@ declare class TreeCommand extends Command {
|
|
|
1208
1209
|
private renderNode;
|
|
1209
1210
|
}
|
|
1210
1211
|
|
|
1212
|
+
declare class QuickCommand extends Command {
|
|
1213
|
+
static paths: string[][];
|
|
1214
|
+
static usage: clipanion.Usage;
|
|
1215
|
+
execute(): Promise<number>;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
declare class SkillMdValidateCommand extends Command {
|
|
1219
|
+
static paths: string[][];
|
|
1220
|
+
static usage: clipanion.Usage;
|
|
1221
|
+
targetPath: string | undefined;
|
|
1222
|
+
verbose: boolean;
|
|
1223
|
+
json: boolean;
|
|
1224
|
+
execute(): Promise<number>;
|
|
1225
|
+
}
|
|
1226
|
+
declare class SkillMdInitCommand extends Command {
|
|
1227
|
+
static paths: string[][];
|
|
1228
|
+
static usage: clipanion.Usage;
|
|
1229
|
+
name: string | undefined;
|
|
1230
|
+
force: boolean;
|
|
1231
|
+
execute(): Promise<number>;
|
|
1232
|
+
}
|
|
1233
|
+
declare class SkillMdCheckCommand extends Command {
|
|
1234
|
+
static paths: string[][];
|
|
1235
|
+
static usage: clipanion.Usage;
|
|
1236
|
+
targetPath: string | undefined;
|
|
1237
|
+
verbose: boolean;
|
|
1238
|
+
execute(): Promise<number>;
|
|
1239
|
+
private findSkillMdFiles;
|
|
1240
|
+
private scanDir;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
declare class ServeCommand extends Command {
|
|
1244
|
+
static paths: string[][];
|
|
1245
|
+
static usage: clipanion.Usage;
|
|
1246
|
+
port: string;
|
|
1247
|
+
host: string;
|
|
1248
|
+
corsOrigin: string;
|
|
1249
|
+
cacheTtl: string;
|
|
1250
|
+
execute(): Promise<number>;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1211
1253
|
declare const loadSkillMetadata: typeof loadSkillMetadata$1;
|
|
1212
1254
|
declare const saveSkillMetadata: typeof saveSkillMetadata$1;
|
|
1213
1255
|
declare function getSearchDirs(agentType?: AgentType): string[];
|
|
@@ -1215,4 +1257,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
1215
1257
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
1216
1258
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
1217
1259
|
|
|
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 };
|
|
1260
|
+
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, QuickCommand, ReadCommand, RecommendCommand, RemoveCommand, ResumeCommand, RunCommand, ServeCommand, SessionCommand, SessionCompleteCommand, SessionInProgressCommand, SessionListCommand, SessionLoadCommand, SessionNoteCommand, SessionStartCommand, SessionStatusCommand, SettingsCommand, SkillMdCheckCommand, SkillMdInitCommand, SkillMdValidateCommand, StatusCommand, SyncCommand, TeamCommand, TestCommand, TranslateCommand, TreeCommand, UICommand, UpdateCommand, ValidateCommand, WorkflowCreateCommand, WorkflowListCommand, WorkflowPipelineCommand, WorkflowPipelineListCommand, WorkflowRunCommand, getAgentConfigPath, getInstallDir, getSearchDirs, initProject, loadSkillMetadata, saveSkillMetadata };
|