@skillkit/cli 1.7.0 → 1.7.1
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 +19 -1
- package/dist/index.js +493 -233
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,8 @@ declare class InitCommand extends Command {
|
|
|
36
36
|
agent: string | undefined;
|
|
37
37
|
list: boolean;
|
|
38
38
|
execute(): Promise<number>;
|
|
39
|
+
private checkAndPromptPublish;
|
|
40
|
+
private prompt;
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
declare class EnableCommand extends Command {
|
|
@@ -697,6 +699,22 @@ declare class AuditCommand extends Command {
|
|
|
697
699
|
private buildQuery;
|
|
698
700
|
}
|
|
699
701
|
|
|
702
|
+
declare class PublishCommand extends Command {
|
|
703
|
+
static paths: string[][];
|
|
704
|
+
static usage: clipanion.Usage;
|
|
705
|
+
skillPath: string | undefined;
|
|
706
|
+
name: string | undefined;
|
|
707
|
+
dryRun: boolean;
|
|
708
|
+
execute(): Promise<number>;
|
|
709
|
+
private findSkillMd;
|
|
710
|
+
private parseFrontmatter;
|
|
711
|
+
private slugify;
|
|
712
|
+
private getRepoInfo;
|
|
713
|
+
private formatName;
|
|
714
|
+
private inferTags;
|
|
715
|
+
private createIssueBody;
|
|
716
|
+
}
|
|
717
|
+
|
|
700
718
|
declare class AgentCommand extends Command {
|
|
701
719
|
static paths: string[][];
|
|
702
720
|
static usage: clipanion.Usage;
|
|
@@ -758,4 +776,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
758
776
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
759
777
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
760
778
|
|
|
761
|
-
export { AICommand, AgentCommand, AgentCreateCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CommandCmd, ContextCommand, CreateCommand, DisableCommand, EnableCommand, HookCommand, InitCommand, InstallCommand, ListCommand, MarketplaceCommand, MemoryCommand, MethodologyCommand, PauseCommand, PlanCommand, PluginCommand, ReadCommand, RecommendCommand, RemoveCommand, ResumeCommand, RunCommand, SettingsCommand, StatusCommand, SyncCommand, TeamCommand, TestCommand, TranslateCommand, UICommand, UpdateCommand, ValidateCommand, WorkflowCreateCommand, WorkflowListCommand, WorkflowRunCommand, getAgentConfigPath, getInstallDir, getSearchDirs, initProject, loadSkillMetadata, saveSkillMetadata };
|
|
779
|
+
export { AICommand, AgentCommand, AgentCreateCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CommandCmd, ContextCommand, CreateCommand, DisableCommand, EnableCommand, HookCommand, InitCommand, InstallCommand, ListCommand, MarketplaceCommand, MemoryCommand, MethodologyCommand, PauseCommand, PlanCommand, PluginCommand, PublishCommand, ReadCommand, RecommendCommand, RemoveCommand, ResumeCommand, RunCommand, SettingsCommand, StatusCommand, SyncCommand, TeamCommand, TestCommand, TranslateCommand, UICommand, UpdateCommand, ValidateCommand, WorkflowCreateCommand, WorkflowListCommand, WorkflowRunCommand, getAgentConfigPath, getInstallDir, getSearchDirs, initProject, loadSkillMetadata, saveSkillMetadata };
|