213c0e0797
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
311 B
Python
Executable File
17 lines
311 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Compatibility entrypoint for the Claude Code session tool."""
|
|
|
|
from pathlib import Path
|
|
import runpy
|
|
|
|
|
|
TOOL = (
|
|
Path(__file__).resolve().parents[1]
|
|
/ "skills"
|
|
/ "claude-code-session"
|
|
/ "scripts"
|
|
/ "session_tool.py"
|
|
)
|
|
|
|
runpy.run_path(str(TOOL), run_name="__main__")
|