# # File: profile.ps1 # Description: PowerShell Profile,启动时自动加载 # Created: 2026-01-21 16:00:00 # Updated: 2026-01-21 16:46:00 # # 获取脚本所在目录 $scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path # 加载 claude 脚本 $claudeScript = Join-Path $scriptDir "claude.ps1" if (Test-Path $claudeScript) { . $claudeScript }