/** * Skills CLI Command * * Manage skills: list, install, enable/disable, configure, test */ import { Command } from 'commander'; import { type LoadSkillsResult } from '../../agent/skills/index.js'; import { ProjectTrustStore } from '../../project-trust/trust-store.js'; import { type CLIContext } from '../registry.js'; export interface WorkspaceSkillCatalogOptions { trustStore?: Pick; bundledSkillsDir?: string | null; } export declare function loadWorkspaceSkillCatalog(workspaceDir: string, options?: WorkspaceSkillCatalogOptions): LoadSkillsResult; declare function createSkillsCommand(ctx: CLIContext): Command; export { createSkillsCommand };