docs: update surprising connections description, test count

style: replace all em dashes with hyphens

fix: explain hidden .graphify/ folder in skill output and README

fix: rename .graphify/ to graphify-out/ so output is visible by default
This commit is contained in:
Safi
2026-04-05 00:20:56 +01:00
parent 258eff3e9f
commit a7d1969f02
43 changed files with 748 additions and 734 deletions
+3 -3
View File
@@ -67,8 +67,8 @@ def test_cached_files(tmp_path, cache_root):
def test_clear_cache(tmp_file, cache_root):
"""clear_cache removes all .json files from .graphify/cache/."""
"""clear_cache removes all .json files from graphify-out/cache/."""
save_cached(tmp_file, {"nodes": [], "edges": []}, root=cache_root)
assert len(list((cache_root / ".graphify" / "cache").glob("*.json"))) > 0
assert len(list((cache_root / "graphify-out" / "cache").glob("*.json"))) > 0
clear_cache(cache_root)
assert len(list((cache_root / ".graphify" / "cache").glob("*.json"))) == 0
assert len(list((cache_root / "graphify-out" / "cache").glob("*.json"))) == 0