From caa4c473bb5c7f4bc9c22d84d37ac14d7c16ce9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20Randall=20Havens=20=E2=96=B3=20The=20Empathic=20Tec?= =?UTF-8?q?hnologist?= Date: Fri, 13 Feb 2026 22:25:04 -0600 Subject: [PATCH] docs(tools): add check-links.py to README --- tools/coherence/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/coherence/README.md b/tools/coherence/README.md index 8788017..54a6424 100644 --- a/tools/coherence/README.md +++ b/tools/coherence/README.md @@ -9,6 +9,7 @@ Tools for maintaining site coherence. | check-frontmatter.py | Validates YAML frontmatter exists | `python3 check-frontmatter.py ` | | check-metadata.py | Validates required fields | `python3 check-metadata.py ` | | fix-frontmatter.py | Adds missing frontmatter | `python3 fix-frontmatter.py ` | +| check-links.py | Finds broken internal links | `python3 check-links.py ` | ## Usage @@ -16,13 +17,15 @@ Tools for maintaining site coherence. # Check all fieldnotes python3 check-frontmatter.py ../public/fieldnotes/ python3 check-metadata.py ../public/fieldnotes/ +python3 check-links.py ../public/fieldnotes/ -# Fix missing frontmatter (dry run first!) +# Fix missing frontmatter python3 fix-frontmatter.py --dry-run ../public/fieldnotes/ python3 fix-frontmatter.py ../public/fieldnotes/ ``` ## Exit Codes -- 0: Success +- 0: Success / No issues +- 1: Issues found - 2: Invalid arguments