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

29
auto-push-skills.ps1 Normal file
View File

@@ -0,0 +1,29 @@
# 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