docs: scaffold polisher-control foundation

This commit is contained in:
Nick Hermes
2026-05-26 16:23:04 +00:00
commit fa9c43fae8
52 changed files with 2224 additions and 0 deletions

11
scripts/print_tree.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
for path in sorted(ROOT.rglob("*")):
if ".git" in path.parts or "__pycache__" in path.parts:
continue
rel = path.relative_to(ROOT)
if len(rel.parts) > 4:
continue
print(rel)