Add OpenClaw workspace configuration and tools

- Add agent configuration files (AGENTS.md, USER.md, IDENTITY.md, SOUL.md)
- Add git configuration and skills management scripts
- Add frontend/backend analysis tools and reports
- Add DingTalk media sender utilities and documentation
- Fix OpenClaw runtime environment (Node.js and Python)
- Configure git remotes and push scripts
This commit is contained in:
aitest
2026-03-05 13:56:59 +09:00
parent 9be2d2daba
commit 15c4480db1
135 changed files with 7724 additions and 0 deletions

25
set-openclaw-python.ps1 Normal file
View File

@@ -0,0 +1,25 @@
# Set OpenClaw Python to fixed version
# This ensures OpenClaw uses Python 3.14.2 regardless of pyenv changes
$OpenclawPythonPath = "F:\pyenv\pyenv-win\pyenv-win\versions\3.14.2\python.exe"
# Check if Python exists
if (Test-Path $OpenclawPythonPath) {
Write-Host "Setting OpenClaw Python to: $OpenclawPythonPath" -ForegroundColor Green
# Set for current session
[System.Environment]::SetEnvironmentVariable("OPENCLAW_PYTHON", $OpenclawPythonPath, "Process")
$env:OPENCLAW_PYTHON = $OpenclawPythonPath
# Set for user (permanent)
[System.Environment]::SetEnvironmentVariable("OPENCLAW_PYTHON", $OpenclawPythonPath, "User")
Write-Host "OpenClaw Python version:" -ForegroundColor Cyan
& $OpenclawPythonPath --version
Write-Host "Environment variable OPENCLAW_PYTHON has been set permanently." -ForegroundColor Yellow
Write-Host "OpenClaw will now use Python 3.14.2 for all skill executions." -ForegroundColor Yellow
} else {
Write-Host "Error: Python not found at $OpenclawPythonPath" -ForegroundColor Red
Write-Host "Please check if Python 3.14.2 is installed." -ForegroundColor Red
}