Mercury Genesys Token Calculator

This commit is contained in:
2026-08-07 14:49:39 -04:00
parent 22a5d907d6
commit 89b835d681
35 changed files with 14105 additions and 2912 deletions

View File

@@ -28,6 +28,7 @@ REPO = Path(__file__).resolve().parent.parent
# full check set, including the tagged-cell taxonomy.
NOTEBOOK_FIRST = {
"assessments/CX_Discovery_Workshop/notebooks/cx_discovery.ipynb",
"calculators/Genesys_Token_Calculator/notebooks/genesys_token_calculator.ipynb",
}
# Structural tier only, each with its recorded reason (see CLAUDE.md,
@@ -63,7 +64,7 @@ UNIQUE_TAGS = ("topic-bank", "engagement-data", "gate", "data-appendix")
def discover() -> list[str]:
"""Every notebook on disk under the master roots (repo-relative)."""
found: list[str] = []
for base in ("studies", "assessments", "template"):
for base in ("studies", "assessments", "calculators", "template"):
root = REPO / base
if not root.is_dir():
continue