1
0

统一skill命名

This commit is contained in:
2026-02-12 17:57:05 +08:00
parent 53707efaf0
commit 86308675ea
40 changed files with 191 additions and 193 deletions

View File

@@ -0,0 +1,12 @@
# /// script
# dependencies = []
# ///
import tempfile
temp_dir = tempfile.gettempdir()
temp_file_path = tempfile.NamedTemporaryFile(
mode="w", suffix=".py", prefix="uv_script_", dir=temp_dir, delete=False
).name
print(temp_file_path)