Fix typo in super_registry and add system documentation

- Fixed function name typo in super_registry.py:303 (load_all_superchattracted → load_all_supercharged)
- Added SYSTEM_STATUS.md with complete feature list and test results
- Added ARCHITECTURE.md with detailed system design and component documentation
- All 28 tests passing (12 registry, 10 bridge, 6 integration suites)
- Full pipeline verified end-to-end
This commit is contained in:
GlyphRunner System
2026-05-20 17:57:38 -04:00
parent 4bc49c90b3
commit 02a298f44c
3 changed files with 408 additions and 1 deletions
+1 -1
View File
@@ -300,7 +300,7 @@ def get_glyphs_by_score_range(min_score: int, max_score: int) -> List[dict]:
List of glyphs sorted by score descending
"""
if not _loaded:
load_all_superchattracted()
load_all_supercharged()
if not _glyphs:
return []