- 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
29 lines
796 B
Bash
29 lines
796 B
Bash
#!/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"
|