Files
openclaw/workspace/scripts/session_tool.py
T
hyowons 213c0e0797 auto: 일일 백업 2026-07-02 02:00
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-02 02:00:02 +09:00

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__")