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

44
quick-push-skills.ps1 Normal file
View File

@@ -0,0 +1,44 @@
# Git代码推送脚本 - 快速执行
# Git配置
$ENV_XLSX = "C:\work\data\env.xlsx"
$GIT_SERVER = "git.alicorns.co.jp"
$GIT_USER = "aitest"
$GIT_PASSWORD = "Aitest123456"
# 技能路径
$SKILL1 = "C:\Users\ALC\.openclaw\skills\office-file-handler"
$SKILL2 = "~\.openclaw\skills\dingtalk-media-sender"
Write-Host "=== Git代码推送 ===" -ForegroundColor Green
Write-Host "Git服务器: $GIT_SERVER" -ForegroundColor Cyan
Write-Host "用户: $GIT_USER" -ForegroundColor Cyan
Write-Host ""
# 推送office-file-handler
Write-Host "=== 推送office-file-handler ===" -ForegroundColor Yellow
Set-Location $SKILL1
Write-Host "远程仓库: origin (https://$GIT_USER@$GIT_SERVER/office-file-handler.git)"
git push -u origin master
if ($?) {
Write-Host "✓ office-file-handler推送成功" -ForegroundColor Green
} else {
Write-Host "✗ office-file-handler推送失败" -ForegroundColor Red
}
Write-Host ""
# 推送dingtalk-media-sender
Write-Host "=== 推送dingtalk-media-sender ===" -ForegroundColor Yellow
Set-Location $SKILL2
Write-Host "远程仓库: origin (https://$GIT_USER@$GIT_SERVER/dingtalk-media-sender.git)"
git push -u origin master
if ($?) {
Write-Host "✓ dingtalk-media-sender推送成功" -ForegroundColor Green
} else {
Write-Host "✗ dingtalk-media-sender推送失败" -ForegroundColor Red
}
Write-Host ""
Write-Host "=== 推送完成 ===" -ForegroundColor Green
Write-Host "如果推送失败请确认远程仓库是否已在Git服务器上创建。" -ForegroundColor Yellow