@skillkit/cli 1.7.6 → 1.7.7
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 +20 -2
- package/dist/index.js +2339 -1595
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ declare class ListCommand extends Command {
|
|
|
8
8
|
static usage: clipanion.Usage;
|
|
9
9
|
enabled: boolean;
|
|
10
10
|
disabled: boolean;
|
|
11
|
+
quality: boolean;
|
|
11
12
|
json: boolean;
|
|
12
13
|
execute(): Promise<number>;
|
|
13
14
|
}
|
|
@@ -89,8 +90,25 @@ declare class UpdateCommand extends Command {
|
|
|
89
90
|
declare class ValidateCommand extends Command {
|
|
90
91
|
static paths: string[][];
|
|
91
92
|
static usage: clipanion.Usage;
|
|
92
|
-
|
|
93
|
+
targets: string[];
|
|
94
|
+
verbose: boolean;
|
|
95
|
+
quality: boolean;
|
|
96
|
+
issues: boolean;
|
|
97
|
+
minScore: string | undefined;
|
|
98
|
+
json: boolean;
|
|
93
99
|
all: boolean;
|
|
100
|
+
benchmark: boolean;
|
|
101
|
+
fix: boolean;
|
|
102
|
+
execute(): Promise<number>;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
declare class FixCommand extends Command {
|
|
106
|
+
static paths: string[][];
|
|
107
|
+
static usage: clipanion.Usage;
|
|
108
|
+
targets: string[];
|
|
109
|
+
dryRun: boolean;
|
|
110
|
+
yes: boolean;
|
|
111
|
+
interactive: boolean | undefined;
|
|
94
112
|
execute(): Promise<number>;
|
|
95
113
|
}
|
|
96
114
|
|
|
@@ -810,4 +828,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
810
828
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
811
829
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
812
830
|
|
|
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 };
|
|
831
|
+
export { AICommand, AgentCommand, AgentCreateCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CheckCommand, CommandCmd, ContextCommand, CreateCommand, DisableCommand, EnableCommand, FindCommand, FixCommand, 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 };
|