@skillkit/cli 1.7.5 → 1.7.6
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 +59 -1
- package/dist/index.js +126562 -243
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -745,6 +745,64 @@ declare class AgentValidateCommand extends Command {
|
|
|
745
745
|
execute(): Promise<number>;
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
+
declare class CheckCommand extends Command {
|
|
749
|
+
static paths: string[][];
|
|
750
|
+
static usage: clipanion.Usage;
|
|
751
|
+
skills: string[];
|
|
752
|
+
verbose: boolean;
|
|
753
|
+
quiet: boolean;
|
|
754
|
+
execute(): Promise<number>;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
declare class FindCommand extends Command {
|
|
758
|
+
static paths: string[][];
|
|
759
|
+
static usage: clipanion.Usage;
|
|
760
|
+
query: string | undefined;
|
|
761
|
+
top: boolean;
|
|
762
|
+
limit: string;
|
|
763
|
+
install: boolean;
|
|
764
|
+
quiet: boolean;
|
|
765
|
+
execute(): Promise<number>;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
declare class ManifestCommand extends Command {
|
|
769
|
+
static paths: string[][];
|
|
770
|
+
static usage: clipanion.Usage;
|
|
771
|
+
execute(): Promise<number>;
|
|
772
|
+
}
|
|
773
|
+
declare class ManifestInitCommand extends Command {
|
|
774
|
+
static paths: string[][];
|
|
775
|
+
static usage: clipanion.Usage;
|
|
776
|
+
force: boolean;
|
|
777
|
+
execute(): Promise<number>;
|
|
778
|
+
}
|
|
779
|
+
declare class ManifestAddCommand extends Command {
|
|
780
|
+
static paths: string[][];
|
|
781
|
+
static usage: clipanion.Usage;
|
|
782
|
+
source: string;
|
|
783
|
+
skills: string | undefined;
|
|
784
|
+
agents: string | undefined;
|
|
785
|
+
execute(): Promise<number>;
|
|
786
|
+
}
|
|
787
|
+
declare class ManifestRemoveCommand extends Command {
|
|
788
|
+
static paths: string[][];
|
|
789
|
+
static usage: clipanion.Usage;
|
|
790
|
+
source: string;
|
|
791
|
+
execute(): Promise<number>;
|
|
792
|
+
}
|
|
793
|
+
declare class ManifestInstallCommand extends Command {
|
|
794
|
+
static paths: string[][];
|
|
795
|
+
static usage: clipanion.Usage;
|
|
796
|
+
yes: boolean;
|
|
797
|
+
execute(): Promise<number>;
|
|
798
|
+
}
|
|
799
|
+
declare class ManifestGenerateCommand extends Command {
|
|
800
|
+
static paths: string[][];
|
|
801
|
+
static usage: clipanion.Usage;
|
|
802
|
+
output: string | undefined;
|
|
803
|
+
execute(): Promise<number>;
|
|
804
|
+
}
|
|
805
|
+
|
|
748
806
|
declare const loadSkillMetadata: typeof loadSkillMetadata$1;
|
|
749
807
|
declare const saveSkillMetadata: typeof saveSkillMetadata$1;
|
|
750
808
|
declare function getSearchDirs(agentType?: AgentType): string[];
|
|
@@ -752,4 +810,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
752
810
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
753
811
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
754
812
|
|
|
755
|
-
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 };
|
|
813
|
+
export { AICommand, AgentCommand, AgentCreateCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CheckCommand, CommandCmd, ContextCommand, CreateCommand, DisableCommand, EnableCommand, FindCommand, HookCommand, InitCommand, InstallCommand, ListCommand, ManifestAddCommand, ManifestCommand, ManifestGenerateCommand, ManifestInitCommand, ManifestInstallCommand, ManifestRemoveCommand, 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 };
|