| 43 | |
| 44 | @dataclass |
| 45 | class Section: |
| 46 | level: int |
| 47 | seq: int |
| 48 | anchor: str |
| 49 | title: str |
| 50 | line: int |
| 51 | char_start: int |
| 52 | char_end: int |
| 53 | preview: str |
| 54 | agent_summary: Optional[str] = None |
| 55 | children: List["Section"] = field(default_factory=list) |
| 56 | |
| 57 | |
| 58 | def strip_frontmatter(text: str) -> tuple[str, str]: |