feat(scripts): 添加批量生成 YouTube Studio 内容管理器 URL 的脚本

This commit is contained in:
2026-08-21 18:21:03 +08:00
commit c1b39e9466
29 changed files with 4020 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
@echo off
rem Trae CN skill installer launcher - double click to run
rem Actual logic lives in install-skills.ps1 (same folder)
cd /d "%~dp0"
if not exist "install-skills.ps1" (
echo [ERROR] install-skills.ps1 not found in %~dp0
pause
exit /b 1
)
powershell -NoProfile -ExecutionPolicy Bypass -File "install-skills.ps1"
echo.
pause