"""ww-agents:内置 Agent 声明(AgentSpec)+ 结构化输出 schema(C6)。 对齐 ARCH §5.1(AgentSpec)/ §5.4(I/O 契约)/ §6.1(冲突分类)/ §6.2 §6.4(伏笔/节奏)。 """ from __future__ import annotations from .schemas import ( Conflict, ConflictType, ContinuityReview, ForeshadowReview, ForeshadowSuggestion, ForeshadowWindow, OutlineChapter, OutlineResult, PaceIssue, PaceReview, ) from .specs import ( AgentSpec, continuity_spec, foreshadow_spec, outliner_spec, pace_spec, ) __all__ = [ "AgentSpec", "Conflict", "ConflictType", "ContinuityReview", "ForeshadowReview", "ForeshadowSuggestion", "ForeshadowWindow", "OutlineChapter", "OutlineResult", "PaceIssue", "PaceReview", "continuity_spec", "foreshadow_spec", "outliner_spec", "pace_spec", ]