chore(env): pre-existing tier2 setup files (opencode config, mcp paths, project history)

This commit is contained in:
ed
2026-06-19 09:41:22 -04:00
parent 327b388800
commit 00e5a3f20d
9 changed files with 281 additions and 11 deletions
@@ -0,0 +1,13 @@
import os
files = ['tests/test_app_controller_offloading.py', 'tests/test_gui_paths.py', 'tests/test_gui_phase3.py', 'tests/test_paths.py', 'tests/test_project_paths.py']
for f in files:
with open(f, 'r', encoding='utf-8') as fh:
content = fh.read()
new_content = content.replace('paths.reset_resolved()', 'paths.reset_paths()')
new_content = new_content.replace("'src.paths.reset_resolved'", "'src.paths.reset_paths'")
if new_content != content:
with open(f, 'w', encoding='utf-8', newline='') as fh:
fh.write(new_content)
print(f'updated: {f}')
else:
print(f'no changes: {f}')