From 7e915725058bf11d4a7d969f19310265c50bc2fe 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:20:16 -0600 Subject: [PATCH] docs(tools): update README with check-metadata --- tools/coherence/README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/tools/coherence/README.md b/tools/coherence/README.md index b28f0f3..66e2ac3 100644 --- a/tools/coherence/README.md +++ b/tools/coherence/README.md @@ -7,25 +7,21 @@ Tools for maintaining site coherence. | Tool | Purpose | Usage | |------|---------|-------| | check-frontmatter.py | Validates YAML frontmatter exists | `python3 check-frontmatter.py ` | +| check-metadata.py | Validates required fields | `python3 check-metadata.py ` | ## Usage ```bash # Check all fieldnotes python3 check-frontmatter.py ../public/fieldnotes/ +python3 check-metadata.py ../public/fieldnotes/ # Check single file -python3 check-frontmatter.py file.md +python3 check-metadata.py file.md ``` ## Exit Codes -- 0: All files have frontmatter -- 1: Some files missing frontmatter +- 0: All files pass +- 1: Some files have issues - 2: Invalid arguments - -## Adding New Tools - -1. Create new tool in this directory -2. Add entry to this README -3. Document usage and exit codes