@skillkit/cli 1.6.4 → 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 +23 -1
- package/dist/index.js +520 -236
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
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 {
|
|
@@ -102,6 +104,10 @@ declare class CreateCommand extends Command {
|
|
|
102
104
|
execute(): Promise<number>;
|
|
103
105
|
}
|
|
104
106
|
|
|
107
|
+
/**
|
|
108
|
+
* UI Command - Launch the SkillKit TUI
|
|
109
|
+
* Uses the unified OpenTUI-based interface
|
|
110
|
+
*/
|
|
105
111
|
declare class UICommand extends Command {
|
|
106
112
|
static paths: string[][];
|
|
107
113
|
static usage: clipanion.Usage;
|
|
@@ -693,6 +699,22 @@ declare class AuditCommand extends Command {
|
|
|
693
699
|
private buildQuery;
|
|
694
700
|
}
|
|
695
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
|
+
|
|
696
718
|
declare class AgentCommand extends Command {
|
|
697
719
|
static paths: string[][];
|
|
698
720
|
static usage: clipanion.Usage;
|
|
@@ -754,4 +776,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
754
776
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
755
777
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
756
778
|
|
|
757
|
-
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 };
|