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

28
git-commit-template.sh Normal file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
# Git提交脚本 - 提交技能到远程仓库
# Git信息
GIT_SERVER="git.alicorns.co.jp"
GIT_USER="aitest"
GIT_PASSWORD="Aitest123456"
# 技能路径
SKILL1_PATH="C:/Users/ALC/.openclaw/skills/office-file-handler"
SKILL2_PATH="C:/Users/ALC/.openclaw/skills/dingtalk-media-sender"
# 仓库名称(需要确认)
REPO1_NAME="office-file-handler"
REPO2_NAME="dingtalk-media-sender"
echo "=== Git配置信息 ==="
echo "Git服务器: $GIT_SERVER"
echo "用户名: $GIT_USER"
echo ""
echo "=== 技能 ==="
echo "1. office-file-handler -> $REPO1_NAME"
echo "2. dingtalk-media-sender -> $REPO2_NAME"
echo ""
echo "请确认Git仓库URL格式"
echo "ssh://$GIT_USER@$GIT_SERVER/$REPO1_NAME.git"
echo "或"
echo "https://$GIT_USER:$GIT_PASSWORD@git.alicorns.co.jp/$REPO1_NAME.git"