/** * `core/skill` public entry point. * * The Skill module owns V7 ยง2.5's crystallization + lifecycle. See * `README.md` for a tour and `ALGORITHMS.md` for the math. */ export { crystallizeDraft, defaultDraftValidator, type CrystallizeDeps, type CrystallizeInput, type CrystallizeResult, } from "./crystallize.js"; export { evaluateEligibility, type EligibilityDecision, type EligibilityInput, type EligibilityResult, } from "./eligibility.js"; export { gatherEvidence, type EvidenceDeps, type EvidenceResult, } from "./evidence.js"; export { applyFeedback, recomputeEta, shouldArchiveIdle, shouldPromoteCandidate, type LifecycleUpdate, } from "./lifecycle.js"; export { buildSkillRow, type PackagerDeps, type PackagerInput, type PackagerResult, } from "./packager.js"; export { applySkillFeedback, runSkill, type RunSkillDeps, } from "./skill.js"; export { attachSkillSubscriber, type SkillSubscriberDeps, type SkillSubscriberHandle } from "./subscriber.js"; export { createSkillEventBus } from "./events.js"; export { extractToolNames } from "./tool-names.js"; export { verifyDraft, type VerifyDeps, type VerifyInput, type VerifyResult, } from "./verifier.js"; export type { RunSkillInput, RunSkillResult, SkillConfig, SkillCrystallizationDraft, SkillEvent, SkillEventBus, SkillEventKind, SkillEventListener, SkillExampleDraft, SkillFeedbackKind, SkillFeedbackSignal, SkillLifecycleTransition, SkillParameterDraft, SkillProcedure, SkillStepDraft, SkillTrigger, SkillCandidate, } from "./types.js"; //# sourceMappingURL=index.d.ts.map