personal memory agent
1# SPDX-License-Identifier: AGPL-3.0-only
2# Copyright (c) 2026 sol pbc
3
4
5def test_no_stray_test_talent_files():
6 from solstone.think.talent import TALENT_DIR
7
8 stray = sorted(p.name for p in TALENT_DIR.glob("test_*.md"))
9 assert stray == [], f"Stray test talent file(s) under {TALENT_DIR}: {stray}"