docs: strengthen thesis evidence and citations

This commit is contained in:
lda
2026-06-16 14:25:39 +07:00 Verified
parent e24f28929a
commit 94dac0b08b
7 changed files with 312 additions and 210 deletions
+4 -2
View File
@@ -11,14 +11,16 @@ def markdown_links(text: str) -> set[str]:
return set(re.findall(r"(?<!!)\[[^\]]+\]\(([^)]+)\)", text))
def test_big_doc_links_case_study_and_evidence_index() -> None:
def test_big_doc_links_case_study_and_embeds_evidence_index() -> None:
doc = (ROOT / "docs" / "add" / "system-design-implementation.md").read_text(
encoding="utf-8"
)
links = markdown_links(doc)
assert "evidence-index.md" in links
assert any(link.startswith("../../examples/report_workflow") for link in links)
assert "## Appendix B: Evidence Index" in doc
assert "### Core Workflow Lifecycle" in doc
assert "### Agent Challenge Evaluation Protocol" in doc
def test_project_map_links_big_doc() -> None: