init: technical-visualization-haness 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 14:02:50 +09:00
parent 09d7c594da
commit f43e909162
117 changed files with 10150 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
from __future__ import annotations
import shutil
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
SOURCE = ROOT / "skills" / "technical-visualizer"
TARGETS = [
ROOT / ".agents" / "skills" / "technical-visualizer",
ROOT / ".claude" / "skills" / "technical-visualizer",
]
def main() -> int:
for target in TARGETS:
if target.exists():
shutil.rmtree(target)
shutil.copytree(SOURCE, target)
print(f"SYNCED {target.relative_to(ROOT)}")
return 0
if __name__ == "__main__":
raise SystemExit(main())