Files
nanoclaw/skills-engine/index.ts

74 lines
1.7 KiB
TypeScript

export { applySkill } from './apply.js';
export { clearBackup, createBackup, restoreBackup } from './backup.js';
export {
BACKUP_DIR,
BASE_DIR,
SKILLS_SCHEMA_VERSION,
CUSTOM_DIR,
LOCK_FILE,
NANOCLAW_DIR,
STATE_FILE,
} from './constants.js';
export {
abortCustomize,
commitCustomize,
isCustomizeActive,
startCustomize,
} from './customize.js';
export { executeFileOps } from './file-ops.js';
export { initNanoclawDir } from './init.js';
export { acquireLock, isLocked, releaseLock } from './lock.js';
export {
checkConflicts,
checkCoreVersion,
checkDependencies,
checkSystemVersion,
readManifest,
} from './manifest.js';
export {
isGitRepo,
mergeFile,
} from './merge.js';
export {
loadPathRemap,
recordPathRemap,
resolvePathRemap,
} from './path-remap.js';
export { rebase } from './rebase.js';
export { findSkillDir, replaySkills } from './replay.js';
export type { ReplayOptions, ReplayResult } from './replay.js';
export { uninstallSkill } from './uninstall.js';
export { initSkillsSystem, migrateExisting } from './migrate.js';
export { applyUpdate, previewUpdate } from './update.js';
export {
compareSemver,
computeFileHash,
getAppliedSkills,
getCustomModifications,
readState,
recordCustomModification,
recordSkillApplication,
writeState,
} from './state.js';
export {
areRangesCompatible,
mergeDockerComposeServices,
mergeEnvAdditions,
mergeNpmDependencies,
runNpmInstall,
} from './structured.js';
export type {
AppliedSkill,
ApplyResult,
CustomModification,
FileOpsResult,
FileOperation,
MergeResult,
RebaseResult,
SkillManifest,
SkillState,
UninstallResult,
UpdatePreview,
UpdateResult,
} from './types.js';