@skillkit/core 1.6.3 → 1.6.4
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 +174 -11
- package/dist/index.js +696 -49
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -238,6 +238,70 @@ interface AgentAdapterInfo {
|
|
|
238
238
|
configFile: string;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
+
/**
|
|
242
|
+
* Centralized Agent Configuration
|
|
243
|
+
*
|
|
244
|
+
* Single source of truth for all AI coding agent configurations.
|
|
245
|
+
* All modules should import from here instead of defining their own values.
|
|
246
|
+
*/
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Agent configuration for skills and config files
|
|
250
|
+
*/
|
|
251
|
+
interface AgentDirectoryConfig {
|
|
252
|
+
/** Primary skills directory path */
|
|
253
|
+
skillsDir: string;
|
|
254
|
+
/** Config file that references skills */
|
|
255
|
+
configFile: string;
|
|
256
|
+
/** Alternative skills directories */
|
|
257
|
+
altSkillsDirs?: string[];
|
|
258
|
+
/** Global skills directory */
|
|
259
|
+
globalSkillsDir?: string;
|
|
260
|
+
/** Config format: xml, markdown, mdc, json, markdown-table */
|
|
261
|
+
configFormat: 'xml' | 'markdown' | 'mdc' | 'json' | 'markdown-table';
|
|
262
|
+
/** Whether agent uses YAML frontmatter in SKILL.md */
|
|
263
|
+
usesFrontmatter: boolean;
|
|
264
|
+
/** Agent-specific frontmatter fields */
|
|
265
|
+
frontmatterFields?: string[];
|
|
266
|
+
/** Whether agent supports skill auto-discovery */
|
|
267
|
+
supportsAutoDiscovery: boolean;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* Centralized agent configurations
|
|
271
|
+
*
|
|
272
|
+
* This is the ONLY source of truth for agent paths and formats.
|
|
273
|
+
* Do not define these values elsewhere.
|
|
274
|
+
*/
|
|
275
|
+
declare const AGENT_CONFIG: Record<AgentType, AgentDirectoryConfig>;
|
|
276
|
+
/**
|
|
277
|
+
* Get agent configuration
|
|
278
|
+
*/
|
|
279
|
+
declare function getAgentDirectoryConfig(agent: AgentType): AgentDirectoryConfig;
|
|
280
|
+
/**
|
|
281
|
+
* Get skills directory for an agent
|
|
282
|
+
*/
|
|
283
|
+
declare function getSkillsDir(agent: AgentType): string;
|
|
284
|
+
/**
|
|
285
|
+
* Get config file for an agent
|
|
286
|
+
*/
|
|
287
|
+
declare function getConfigFile(agent: AgentType): string;
|
|
288
|
+
/**
|
|
289
|
+
* Get all skills directories for an agent (including alternatives)
|
|
290
|
+
*/
|
|
291
|
+
declare function getAllSkillsDirs(agent: AgentType): string[];
|
|
292
|
+
/**
|
|
293
|
+
* Get global skills directory for an agent
|
|
294
|
+
*/
|
|
295
|
+
declare function getGlobalSkillsDir(agent: AgentType): string | undefined;
|
|
296
|
+
/**
|
|
297
|
+
* Check if agent supports auto-discovery
|
|
298
|
+
*/
|
|
299
|
+
declare function supportsAutoDiscovery(agent: AgentType): boolean;
|
|
300
|
+
/**
|
|
301
|
+
* Get config format for an agent
|
|
302
|
+
*/
|
|
303
|
+
declare function getConfigFormat(agent: AgentType): AgentDirectoryConfig['configFormat'];
|
|
304
|
+
|
|
241
305
|
declare const SKILL_DISCOVERY_PATHS: string[];
|
|
242
306
|
declare function discoverSkills(rootDir: string): Skill[];
|
|
243
307
|
declare function parseSkill(skillPath: string, location?: SkillLocation): Skill | null;
|
|
@@ -7749,8 +7813,11 @@ declare const AgentFrontmatter: z.ZodObject<{
|
|
|
7749
7813
|
version?: string | undefined;
|
|
7750
7814
|
author?: string | undefined;
|
|
7751
7815
|
tags?: string[] | undefined;
|
|
7752
|
-
|
|
7816
|
+
model?: string | undefined;
|
|
7753
7817
|
context?: "fork" | "inline" | undefined;
|
|
7818
|
+
'user-invocable'?: boolean | undefined;
|
|
7819
|
+
'argument-hint'?: string | undefined;
|
|
7820
|
+
skills?: string[] | undefined;
|
|
7754
7821
|
hooks?: {
|
|
7755
7822
|
type: "SessionStart" | "SessionEnd" | "PreToolUse" | "PostToolUse" | "Stop" | "SubagentStop";
|
|
7756
7823
|
command: string;
|
|
@@ -7758,20 +7825,20 @@ declare const AgentFrontmatter: z.ZodObject<{
|
|
|
7758
7825
|
matcher?: string | undefined;
|
|
7759
7826
|
once?: boolean | undefined;
|
|
7760
7827
|
}[] | undefined;
|
|
7761
|
-
model?: string | undefined;
|
|
7762
7828
|
permissionMode?: "default" | "plan" | "auto-edit" | "full-auto" | "bypassPermissions" | undefined;
|
|
7763
7829
|
disallowedTools?: string[] | undefined;
|
|
7764
7830
|
allowedTools?: string | string[] | undefined;
|
|
7765
|
-
'user-invocable'?: boolean | undefined;
|
|
7766
|
-
'argument-hint'?: string | undefined;
|
|
7767
7831
|
}, {
|
|
7768
7832
|
name: string;
|
|
7769
7833
|
description: string;
|
|
7770
7834
|
version?: string | undefined;
|
|
7771
7835
|
author?: string | undefined;
|
|
7772
7836
|
tags?: string[] | undefined;
|
|
7773
|
-
|
|
7837
|
+
model?: string | undefined;
|
|
7774
7838
|
context?: "fork" | "inline" | undefined;
|
|
7839
|
+
'user-invocable'?: boolean | undefined;
|
|
7840
|
+
'argument-hint'?: string | undefined;
|
|
7841
|
+
skills?: string[] | undefined;
|
|
7775
7842
|
hooks?: {
|
|
7776
7843
|
type: "SessionStart" | "SessionEnd" | "PreToolUse" | "PostToolUse" | "Stop" | "SubagentStop";
|
|
7777
7844
|
command: string;
|
|
@@ -7779,12 +7846,9 @@ declare const AgentFrontmatter: z.ZodObject<{
|
|
|
7779
7846
|
matcher?: string | undefined;
|
|
7780
7847
|
once?: boolean | undefined;
|
|
7781
7848
|
}[] | undefined;
|
|
7782
|
-
model?: string | undefined;
|
|
7783
7849
|
permissionMode?: "default" | "plan" | "auto-edit" | "full-auto" | "bypassPermissions" | undefined;
|
|
7784
7850
|
disallowedTools?: string[] | undefined;
|
|
7785
7851
|
allowedTools?: string | string[] | undefined;
|
|
7786
|
-
'user-invocable'?: boolean | undefined;
|
|
7787
|
-
'argument-hint'?: string | undefined;
|
|
7788
7852
|
}>;
|
|
7789
7853
|
type AgentFrontmatter = z.infer<typeof AgentFrontmatter>;
|
|
7790
7854
|
/**
|
|
@@ -7925,11 +7989,11 @@ interface AgentTranslationOptions {
|
|
|
7925
7989
|
outputFilename?: string;
|
|
7926
7990
|
}
|
|
7927
7991
|
/**
|
|
7928
|
-
* Agent discovery paths per AI coding agent
|
|
7992
|
+
* Agent discovery paths per AI coding agent (2026 updated)
|
|
7929
7993
|
*/
|
|
7930
7994
|
declare const AGENT_DISCOVERY_PATHS: Record<AgentType, string[]>;
|
|
7931
7995
|
/**
|
|
7932
|
-
* All agent discovery paths (union of all agent paths)
|
|
7996
|
+
* All agent discovery paths (union of all agent paths) - 2026 updated
|
|
7933
7997
|
*/
|
|
7934
7998
|
declare const ALL_AGENT_DISCOVERY_PATHS: string[];
|
|
7935
7999
|
/**
|
|
@@ -8077,4 +8141,103 @@ declare function isAgentCompatible(sourceFormat: AgentFormatCategory, targetForm
|
|
|
8077
8141
|
warnings: string[];
|
|
8078
8142
|
};
|
|
8079
8143
|
|
|
8080
|
-
|
|
8144
|
+
/**
|
|
8145
|
+
* Skill Translator
|
|
8146
|
+
*
|
|
8147
|
+
* Translates SKILL.md files between different AI coding agent formats.
|
|
8148
|
+
* This is the core functionality for SkillKit's cross-agent skill ecosystem.
|
|
8149
|
+
*/
|
|
8150
|
+
|
|
8151
|
+
/**
|
|
8152
|
+
* Extended skill format for translation (includes invokeCommand)
|
|
8153
|
+
*/
|
|
8154
|
+
interface AgentSkillFormat extends AgentDirectoryConfig {
|
|
8155
|
+
invokeCommand: string;
|
|
8156
|
+
}
|
|
8157
|
+
/**
|
|
8158
|
+
* Agent-specific skill format configurations
|
|
8159
|
+
* Extends AGENT_CONFIG with invokeCommand for all agents
|
|
8160
|
+
*/
|
|
8161
|
+
declare const AGENT_SKILL_FORMATS: Record<AgentType, AgentSkillFormat>;
|
|
8162
|
+
/**
|
|
8163
|
+
* Canonical skill representation for cross-agent translation
|
|
8164
|
+
*/
|
|
8165
|
+
interface CrossAgentSkill {
|
|
8166
|
+
name: string;
|
|
8167
|
+
description: string;
|
|
8168
|
+
content: string;
|
|
8169
|
+
frontmatter: Record<string, unknown>;
|
|
8170
|
+
sourcePath: string;
|
|
8171
|
+
sourceAgent?: AgentType;
|
|
8172
|
+
version?: string;
|
|
8173
|
+
author?: string;
|
|
8174
|
+
tags?: string[];
|
|
8175
|
+
allowedTools?: string[];
|
|
8176
|
+
/** Agent-specific fields preserved during translation */
|
|
8177
|
+
agentFields?: Record<string, unknown>;
|
|
8178
|
+
}
|
|
8179
|
+
/**
|
|
8180
|
+
* Skill translation result
|
|
8181
|
+
*/
|
|
8182
|
+
interface SkillTranslationResult {
|
|
8183
|
+
success: boolean;
|
|
8184
|
+
content: string;
|
|
8185
|
+
filename: string;
|
|
8186
|
+
targetDir: string;
|
|
8187
|
+
warnings: string[];
|
|
8188
|
+
incompatible: string[];
|
|
8189
|
+
targetAgent: AgentType;
|
|
8190
|
+
}
|
|
8191
|
+
/**
|
|
8192
|
+
* Skill translation options
|
|
8193
|
+
*/
|
|
8194
|
+
interface SkillTranslationOptions {
|
|
8195
|
+
/** Preserve original comments and formatting */
|
|
8196
|
+
preserveComments?: boolean;
|
|
8197
|
+
/** Add translation metadata comment */
|
|
8198
|
+
addMetadata?: boolean;
|
|
8199
|
+
/** Custom output filename */
|
|
8200
|
+
outputFilename?: string;
|
|
8201
|
+
/** Overwrite existing files */
|
|
8202
|
+
overwrite?: boolean;
|
|
8203
|
+
/** Write to disk */
|
|
8204
|
+
write?: boolean;
|
|
8205
|
+
/** Output directory override */
|
|
8206
|
+
outputDir?: string;
|
|
8207
|
+
}
|
|
8208
|
+
/**
|
|
8209
|
+
* Parse a SKILL.md file into canonical format
|
|
8210
|
+
*/
|
|
8211
|
+
declare function parseSkillToCanonical(skillPath: string, sourceAgent?: AgentType): CrossAgentSkill | null;
|
|
8212
|
+
/**
|
|
8213
|
+
* Parse skill content string into canonical format
|
|
8214
|
+
*/
|
|
8215
|
+
declare function parseSkillContentToCanonical(content: string, sourcePath: string, sourceAgent?: AgentType): CrossAgentSkill | null;
|
|
8216
|
+
/**
|
|
8217
|
+
* Translate a cross-agent skill to target agent format
|
|
8218
|
+
*/
|
|
8219
|
+
declare function translateSkillToAgent(canonical: CrossAgentSkill, targetAgent: AgentType, options?: SkillTranslationOptions): SkillTranslationResult;
|
|
8220
|
+
/**
|
|
8221
|
+
* Translate a skill file to multiple target agents
|
|
8222
|
+
*/
|
|
8223
|
+
declare function translateSkillToAll(skillPath: string, sourceAgent?: AgentType, options?: SkillTranslationOptions): Map<AgentType, SkillTranslationResult>;
|
|
8224
|
+
/**
|
|
8225
|
+
* Write translated skill to disk
|
|
8226
|
+
*/
|
|
8227
|
+
declare function writeTranslatedSkill(result: SkillTranslationResult, rootDir: string, options?: {
|
|
8228
|
+
overwrite?: boolean;
|
|
8229
|
+
}): {
|
|
8230
|
+
success: boolean;
|
|
8231
|
+
path: string;
|
|
8232
|
+
error?: string;
|
|
8233
|
+
skipped?: boolean;
|
|
8234
|
+
};
|
|
8235
|
+
/**
|
|
8236
|
+
* Generate config file content that references skills
|
|
8237
|
+
* This generates the agent-specific config format (AGENTS.md, .cursorrules, etc.)
|
|
8238
|
+
*/
|
|
8239
|
+
declare function generateSkillsConfig(skills: Skill[], targetAgent: AgentType): string;
|
|
8240
|
+
declare const getAgentSkillsDir: typeof getSkillsDir;
|
|
8241
|
+
declare const getAgentConfigFile: typeof getConfigFile;
|
|
8242
|
+
|
|
8243
|
+
export { AGENT_CLI_CONFIGS, AGENT_CONFIG, AGENT_DISCOVERY_PATHS, AGENT_FORMAT_MAP, AGENT_SKILL_FORMATS, type AIConfig, type AIGenerateOptions, AIManager, type AIProvider, AISearch, type AISearchOptions, type AISearchResult, AISkillGenerator, ALL_AGENT_DISCOVERY_PATHS, APIBasedCompressor, type APICompressionConfig, type ActivatedSkill, type AgentAdapterInfo, type AgentCLIConfig, type AgentCommandFormat, AgentConfig, type AgentDirectoryConfig, type AgentExecutionResult, type AgentFormatCategory, AgentFrontmatter, AgentHook, type AgentHookFormat, type AgentInstance, AgentLocation, AgentMetadata, AgentPermissionMode, type AgentSkillFormat, type AgentStatus, type AgentTranslationOptions, type AgentTranslationResult, AgentType, type AssertionResult, type AuditEvent, type AuditEventType, type AuditExportOptions, AuditLogger, type AuditQuery, type AuditStats, BaseAIProvider, BitbucketProvider, type BundleManifest, CIRCLECI_CONFIG_TEMPLATE, CONTEXT_DIR, CONTEXT_FILE, CUSTOM_AGENT_FORMAT_MAP, type CanonicalAgent, type CanonicalSkill, type CheckpointHandler, type CheckpointResponse, type CloneOptions, type CloneResult, type CommandArg, type CommandBundle, type CommandContext, type CommandEvent, type CommandEventListener, CommandGenerator, type CommandGeneratorOptions, type CommandHandler, type CommandPlugin, CommandRegistry, type CommandRegistryOptions, type CommandResult, type CommandSearchOptions, type CommandValidationResult, type CompressedLearning, type CompressionEngine, type CompressionOptions, type CompressionResult, type ContextCategory, type ContextExportOptions, type ContextImportOptions, type ContextLoadOptions, ContextLoader, ContextManager, ContextSync, type ContextSyncOptions, CopilotTranslator, type CrossAgentSkill, type CurrentExecution, CursorTranslator, type CustomAgent, DEFAULT_CACHE_TTL, DEFAULT_CONTEXT_CATEGORIES, DEFAULT_MEMORY_CONFIG, DEFAULT_SCORING_WEIGHTS, DEFAULT_SKILL_SOURCES, DependencyInfo, Detection, type DetectionSource, type DiscoveredSkill, type ExecutableSkill, type ExecutableTask, type ExecutableTaskType, type ExecutionHistory, type ExecutionOptions, type ExecutionProgressCallback, type ExecutionProgressEvent, type ExecutionStrategy, type ExecutionTaskStatus, type FormatCategory, type FormatTranslator, type FreshnessResult, GITHUB_ACTION_TEMPLATE, GITLAB_CI_TEMPLATE, type GenerateOptions, type GeneratedSkill, GitHubProvider, GitLabProvider, GitProvider, type GitProviderAdapter, type HookConfig, type HookContext, type HookError, type HookEvent, type HookEventListener, HookManager, type HookManagerOptions, type HookTriggerResult, INDEX_CACHE_HOURS, INDEX_PATH, type ImportOptions, type IndexSource, type InjectedMemory, type InjectionMode, type InjectionOptions, type InjectionResult, type InstallOptions, type InstallResult, type InstalledPackInfo, type InstalledSkillInfo, type IssueSeverity, KNOWN_SKILL_REPOS, type Learning, LearningConsolidator, LearningStore, type LearningStoreData, type LoadedContext, LocalProvider, MARKETPLACE_CACHE_FILE, MarketplaceAggregator, type MarketplaceConfig, type MarketplaceIndex, type MarketplaceSearchOptions, type MarketplaceSearchResult, type MarketplaceSkill, type MatchCategory, type MatchReason, type MatcherFunction, MemoryCompressor, type MemoryConfig, MemoryEnabledEngine, type MemoryEnabledEngineOptions, type MemoryFull, type MemoryIndex, MemoryIndexStore, MemoryInjector, MemoryObserver, type MemoryObserverConfig, type MemoryPaths, type MemoryPreview, type MemorySearchOptions, type MemorySearchResult, type MemoryStatus, type MemorySummary, type MessageHandler, type MessageType, MethodologyLoader, MethodologyManager, type MethodologyManagerOptions, type MethodologyPack, type MethodologySearchQuery, type MethodologySearchResult, type MethodologySkill, type MethodologySkillMetadata, type MethodologyState, type MethodologySyncResult, MockAIProvider, type ObservableEvent, type ObservableEventType, type Observation, type ObservationContent, ObservationStore, type ObservationStoreData, type ObservationType, type OrchestratorOptions, type OrchestratorTaskStatus, type OrchestratorTeamConfig, PRE_COMMIT_CONFIG_TEMPLATE, PRE_COMMIT_HOOK_TEMPLATE, PROJECT_TYPE_HINTS, type ParseOptions, type PlanEvent, type PlanEventListener, type PlanExecutionOptions, type PlanExecutionResult, PlanExecutor, PlanGenerator, PlanParser, type PlanResult, type PlanStatus, type PlanStep, type PlanTask, type PlanTaskFiles, type PlanTaskResult, type PlanValidationResult, PlanValidator, type Plugin, type PluginConfig, type PluginContext, type PluginHooks, PluginLoader, PluginManager, type PluginMetadata, ProjectContext, ProjectDetector, ProjectPatterns, type ProjectProfile, ProjectStack, type ProviderPlugin, type RecommendOptions, RecommendationEngine, type RecommendationResult, type RegisteredCommand, type RegistrySkill, type ReviewIssue, type ReviewResult, type ReviewStage, type ReviewStageName, RuleBasedCompressor, SESSION_FILE, SKILL_DISCOVERY_PATHS, type ScoredSkill, type ScoringWeights, type SearchOptions, type SearchResult, type SearchableSkill, type SessionDecision, SessionManager, type SessionState, type SessionTask, type ShareOptions, type SharedSkill, Skill, SkillBundle, type SkillExample, SkillExecutionEngine, type SkillExecutionEvent, type SkillExecutionResult, type SkillExecutor, type SkillExecutorOptions, SkillFrontmatter, type SkillHook, type SkillIndex, SkillLocation, SkillMdTranslator, SkillMetadata, SkillPreferences, type SkillSource, SkillSummary, type SkillTestCase, type SkillTestSuite, type SkillTranslationOptions, type SkillTranslationResult, SkillTriggerEngine, SkillkitConfig, type SlashCommand, type SlashCommandResult, type StepExecutor, type StepType, type StructuredPlan, type SyncOptions, type SyncReport, type SyncResult, TAG_TO_TECH, TASK_TEMPLATES, type Task, type TaskEvent, type TaskEventListener, type TaskExecutionResult, type TaskFiles, type TaskFilter, TaskManager, type TaskPlan, type TaskResult, type TaskStatus, type TaskStep, type TaskTemplate, type Team, type TeamConfig, type TeamEvent, type TeamEventListener, TeamManager, type TeamMember, type TeamMessage, TeamMessageBus, TeamOrchestrator, type TeamRegistry, type TeamStatus, type TestAssertion, type TestAssertionType, type TestCaseResult, type TestProgressEvent, type TestResult, type TestRunnerOptions, type TestSuiteResult, TranslatableSkillFrontmatter, type TranslationOptions, type TranslationPath, type TranslationResult, type TranslatorPlugin, TranslatorRegistry, type TriggerEngineOptions, type UpdateOptions, type ValidationError, type ValidationIssue, type ValidationResult, type ValidationWarning, type ValidatorOptions, type VerificationRule, WORKFLOWS_DIR, WORKFLOW_EXTENSION, type WaveExecutionStatus, WindsurfTranslator, type Workflow, type WorkflowExecution, type WorkflowExecutionStatus, WorkflowOrchestrator, type WorkflowProgressCallback, type WorkflowSkill, type WorkflowWave, agentExists, analyzeProject, buildSkillIndex, canTranslate, copilotTranslator, createAPIBasedCompressor, createCommandGenerator, createCommandRegistry, createContextLoader, createContextManager, createContextSync, createExecutionEngine, createHookManager, createMarketplaceAggregator, createMemoryCompressor, createMemoryEnabledEngine, createMemoryInjector, createMemoryObserver, createMessageBus, createMethodologyLoader, createMethodologyManager, createPlanExecutor, createPlanGenerator, createPlanParser, createPlanValidator, createPluginManager, createRecommendationEngine, createRuleBasedCompressor, createSessionManager, createSimulatedSkillExecutor, createSkillBundle, createSkillExecutor, createTaskManager, createTeamManager, createTeamOrchestrator, createTestSuiteFromFrontmatter, createTriggerEngine, createWorkflowOrchestrator, createWorkflowTemplate, cursorTranslator, detectProvider, detectSkillFormat, discoverAgents, discoverAgentsForAgent, discoverAgentsFromPath, discoverAgentsRecursive, discoverGlobalAgents, discoverSkills, dryRunExecutor, estimateTokens, executeWithAgent, exportBundle, extractAgentContent, extractAgentFrontmatter, extractField, extractFrontmatter, extractSkillMetadata, fetchSkillsFromRepo, findAgent, findAllAgents, findAllSkills, findSkill, formatSkillAsPrompt, fromCanonicalAgent, generateSkillsConfig, getAgentCLIConfig, getAgentConfigFile, getAgentConfigPath, getAgentDirectoryConfig, getAgentFilename, getAgentFormat, getAgentSkillsDir, getAgentStats, getAgentTargetDirectory, getAgentsDirectory, getAllProviders, getAllSkillsDirs, getAvailableCLIAgents, getBuiltinPacksDir, getCICDTemplate, getConfigFile, getConfigFormat, getExecutionStrategy, getGlobalConfigPath, getGlobalSkillsDir, getIndexStatus, getInstallDir, getManualExecutionInstructions, getMemoryPaths, getMemoryStatus, getProjectConfigPath, getProvider, getSearchDirs, getSkillsDir, getStackTags, getSupportedTranslationAgents, getTechTags, globalMemoryDirectoryExists, importBundle, initContext, initProject, initializeMemoryDirectory, isAgentCLIAvailable, isAgentCompatible, isGitUrl, isIndexStale, isLocalPath, isPathInside, listCICDTemplates, listWorkflows, loadAgentMetadata, loadConfig, loadContext, loadIndex, loadMetadata, loadPlugin, loadPluginsFromDirectory, loadSkillMetadata, loadWorkflow, loadWorkflowByName, memoryDirectoryExists, parseAgentDir, parseAgentFile, parseShorthand, parseSkill, parseSkillContent, parseSkillContentToCanonical, parseSkillToCanonical, parseSource, parseWorkflow, readAgentContent, readSkillContent, runTestSuite, saveConfig, saveIndex, saveSkillMetadata, saveWorkflow, serializeWorkflow, setSkillEnabled, shellExecutor, skillMdTranslator, supportsAutoDiscovery, supportsSlashCommands, syncToAgent, syncToAllAgents, toCanonicalAgent, translateAgent, translateAgentContent, translateAgents, translateCanonicalAgent, translateSkill, translateSkillFile, translateSkillToAgent, translateSkillToAll, translatorRegistry, validateAgent, validateBuiltinPacks, validatePackDirectory, validatePackManifest, validatePlan, validateSkill, validateSkillContent, validateWorkflow, windsurfTranslator, wrapProgressCallbackWithMemory, writeTranslatedSkill };
|