@skillkit/cli 1.12.0 → 1.14.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 +34 -1
- package/dist/index.js +1096 -407
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -483,6 +483,14 @@ declare class MemoryCommand extends Command {
|
|
|
483
483
|
* Show memory configuration
|
|
484
484
|
*/
|
|
485
485
|
private showConfig;
|
|
486
|
+
/**
|
|
487
|
+
* Sync learnings to CLAUDE.md
|
|
488
|
+
*/
|
|
489
|
+
private syncClaudeMd;
|
|
490
|
+
/**
|
|
491
|
+
* Show memory index (progressive disclosure Layer 1)
|
|
492
|
+
*/
|
|
493
|
+
private showIndex;
|
|
486
494
|
/**
|
|
487
495
|
* Format relevance/effectiveness score with color
|
|
488
496
|
*/
|
|
@@ -724,9 +732,34 @@ declare class AICommand extends Command {
|
|
|
724
732
|
private handleGenerate;
|
|
725
733
|
private handleSimilar;
|
|
726
734
|
private loadSkills;
|
|
735
|
+
private handleWizard;
|
|
736
|
+
private handleProviders;
|
|
727
737
|
private getAIConfig;
|
|
728
738
|
}
|
|
729
739
|
|
|
740
|
+
declare class GenerateCommand extends Command {
|
|
741
|
+
static paths: string[][];
|
|
742
|
+
static usage: clipanion.Usage;
|
|
743
|
+
provider: string | undefined;
|
|
744
|
+
model: string | undefined;
|
|
745
|
+
compose: string | undefined;
|
|
746
|
+
agents: string | undefined;
|
|
747
|
+
noMemory: boolean;
|
|
748
|
+
contextSources: string | undefined;
|
|
749
|
+
output: string | undefined;
|
|
750
|
+
json: boolean;
|
|
751
|
+
execute(): Promise<number>;
|
|
752
|
+
private executeNonInteractive;
|
|
753
|
+
private selectProvider;
|
|
754
|
+
private stepExpertise;
|
|
755
|
+
private stepContextSources;
|
|
756
|
+
private stepComposition;
|
|
757
|
+
private stepClarification;
|
|
758
|
+
private stepReview;
|
|
759
|
+
private stepInstall;
|
|
760
|
+
private showStepHeader;
|
|
761
|
+
}
|
|
762
|
+
|
|
730
763
|
declare class AuditCommand extends Command {
|
|
731
764
|
static paths: string[][];
|
|
732
765
|
static usage: clipanion.Usage;
|
|
@@ -1257,4 +1290,4 @@ declare function getInstallDir(global?: boolean, agentType?: AgentType): string;
|
|
|
1257
1290
|
declare function getAgentConfigPath(agentType?: AgentType): string;
|
|
1258
1291
|
declare function initProject(agentType?: AgentType): Promise<void>;
|
|
1259
1292
|
|
|
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 };
|
|
1293
|
+
export { AICommand, AgentAvailableCommand, AgentCommand, AgentCreateCommand, AgentFromSkillCommand, AgentInstallCommand, AgentListCommand, AgentShowCommand, AgentSyncCommand, AgentTranslateCommand, AgentValidateCommand, AuditCommand, CICDCommand, CheckCommand, CommandAvailableCommand, CommandCmd, CommandInstallCommand, ContextCommand, CreateCommand, DisableCommand, EnableCommand, FindCommand, FixCommand, GenerateCommand, 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 };
|