feat(skill-learning): add draft preservation checks

This commit is contained in:
2026-06-08 13:27:10 +08:00
parent 3a16dc283d
commit 6dc580ab26
3 changed files with 82 additions and 0 deletions

View File

@ -9,6 +9,7 @@ from .missing_skill import (
MissingSkillSynthesizer,
)
from .pipeline import SkillLearningPipelineService
from .preservation import check_preservation
from .service import RunReceiptContext, SkillLearningService
from .synthesizer import SkillDraftSynthesizer
from .worker import SkillLearningWorker, SkillLearningWorkerConfig, SkillLearningWorkerResult
@ -23,6 +24,7 @@ __all__ = [
"MissingSkillSynthesizer",
"RunReceiptContext",
"SkillLearningPipelineService",
"check_preservation",
"SkillDraftSynthesizer",
"SkillLearningService",
"SkillLearningWorker",