Files
workspace/auto-push-skills.ps1
aitest 15c4480db1 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
2026-03-05 13:56:59 +09:00

30 lines
998 B
PowerShell

# Auto-generated Git push script
$GIT_SERVER = "git.alicorns.co.jp"
$GIT_USER = "aitest"
$GIT_PASSWORD = "Aitest123456"
Write-Host "=== Pushing skills to Git server ===" -ForegroundColor Green
# Push office-file-handler
Write-Host "Processing office-file-handler..." -ForegroundColor Cyan
cd "C:\Users\ALC\.openclaw\skills\office-file-handler"
git push -u origin master
if ($?) {
Write-Host "[SUCCESS] office-file-handler pushed!" -ForegroundColor Green
} else {
Write-Host "[FAILED] office-file-handler push failed" -ForegroundColor Red
}
# Push dingtalk-media-sender
Write-Host "Processing dingtalk-media-sender..." -ForegroundColor Cyan
cd "$env:USERPROFILE\.openclaw\skills\dingtalk-media-sender"
git push -u origin master
if ($?) {
Write-Host "[SUCCESS] dingtalk-media-sender pushed!" -ForegroundColor Green
} else {
Write-Host "[FAILED] dingtalk-media-sender push failed" -ForegroundColor Red
}
Write-Host ""
Write-Host "=== Push Complete ===" -ForegroundColor Green