用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/crimsonblazezero/Zero-Tools --skill ai-sync命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
领星 ERP 数据拉取、周报/月报汇总、运营周会 Excel 表格自动填报并交王祎审核确认后自动提交运营周复盘日志(附件以钉盘链接贴正文)、六组周会纪要自动生成与推送工作流。
Use when generating, pulling, auditing, filling, or rolling monthly business review reports (月度运营复盘/月报/主管月复盘/当月销售分析) for LingXing ERP and Nanjing Europe Group (南京欧洲组KS) Amazon stores.
Use when the user wants to pull Amazon sales/ad profit data from LingXing ERP (跨境电商ERP), build a weekly/monthly business dashboard (经营周报/月报/数据看板/排名环比/父ASIN), or send the report to a DingTalk group (钉钉群). Triggers: "拉上周数据/拉上个月数据", "父ASIN销售广告利润", "经营周报看板", "BSR排名环比", "发送到钉钉/欧洲群", "lingxing周报", "lingxing看板", "月报/月度复盘/全年完成表/退款率/退货率/仓储费/库销比". Pulls order-profit reports at parent-ASIN granularity, cross-validates ads spend, enriches Chinese product names, optionally fetches BSR rank trends, builds a self-contained Chart.js HTML dashboard (monthly variant adds fee-structure/rating/refund-rate/annual-target columns), and sends it to a specified DingTalk group via the dws CLI.
基于 SOC 职业分类
| name | ai-sync |
| description | AI Tools 端到端同步工作流,同步 Hermes 配置、记忆、技能和 Python 文件到 GitHub。 |
| category | devops |
┌─────────────────────────────────────────────────────────────┐
│ GitHub (远程仓库) │
│ │
│ ┌─────────────────┐ ┌─────────────────┐ │
│ │ ai-sync │ │ Zero-Tools │ │
│ │ (配置 + 记忆) │ │ (技能 + 脚本) │ │
│ └─────────────────┘ └─────────────────┘ │
└─────────────────────────────────────────────────────────────┘
▲ ▲
│ │
~/Desktop/ai-sync/ D:/Zero Tools/
│ │
└────────┬───────────────┘
│
symlink │
│
~/AppData/Local/hermes/skills/
~/Desktop/ai-sync/crimsonblazezero/ai-synchermes/config.yaml - Hermes 配置hermes/SOUL.md - Hermes 人格定义MEMORY.md - 持久记忆USER.md - 用户信息sync-config.sh - 配置同步脚本sync-skills.sh - 技能同步脚本sync-all.sh - 一键同步脚本D:/Zero Tools/crimsonblazezero/Zero-Toolsskills/ - 126 个 Hermes 技能src/ - Python 脚本docs/ - 文档~/AppData/Local/hermes/skills/ → D:/Zero Tools/skills//d/AgentSystem/workbuddy-config/.workbuddy/ → workbuddy-config/# 查看同步状态
bash ~/Desktop/ai-sync/sync-all.sh status
# 拉取配置和记忆(从 GitHub 同步到本地)
bash ~/Desktop/ai-sync/sync-config.sh pull
# 推送配置和记忆(从本地同步到 GitHub)
bash ~/Desktop/ai-sync/sync-config.sh push
# 拉取技能(从 GitHub 同步到 Zero-Tools)
bash ~/Desktop/ai-sync/sync-skills.sh pull
# 推送技能(从本地同步到 GitHub)
bash ~/Desktop/ai-sync/sync-skills.sh push
# 一键同步所有(配置 + 技能)
bash ~/Desktop/ai-sync/sync-all.sh pull
bash ~/Desktop/ai-sync/sync-all.sh push
cd ~/Desktop/ai-sync
# 拉取(远程 → 本地)
bash sync-config.sh pull
# 推送(本地 → 远程)
bash sync-config.sh push
覆盖范围:
~/AppData/Local/hermes/config.yaml~/AppData/Local/hermes/SOUL.mdMEMORY.mdUSER.mdcd ~/Desktop/ai-sync
# 拉取(远程 → Zero-Tools)
bash sync-skills.sh pull
# 推送(Zero-Tools → 远程)
bash sync-skills.sh push
覆盖范围:
D:/Zero Tools/skills/D:/Zero Tools/src/D:/Zero Tools/docs/# 一键拉取(配置 + 技能)
bash ~/Desktop/ai-sync/sync-all.sh pull
# 一键推送(配置 + 技能)
bash ~/Desktop/ai-sync/sync-all.sh push
# 查看状态
bash ~/Desktop/ai-sync/sync-all.sh status
脚本已适配 Windows/MSYS2 环境,使用 cygpath 转换路径。
backups/ 目录backup-YYYYMMDD-HHMMSS~/AppData/Local/hermes/ 的权限D:/Zero Tools/ 的权限# 检查 SSH 状态
gh auth status
# 重新认证
gh auth login
脚本已内置 cygpath 转换,如果仍有问题,检查:
# 检查 Hermes 目录权限
ls -la ~/AppData/Local/hermes/
# 检查 Zero-Tools 目录权限
ls -la "D:/Zero Tools/"
# 检查本地技能数
ls ~/AppData/Local/hermes/skills/ | wc -l
# 检查远程技能数
cd ~/Desktop/ai-sync && bash sync-skills.sh status
# 只同步配置
cd ~/Desktop/ai-sync && git pull && bash sync-config.sh pull
# 只同步技能
cd "D:/Zero Tools" && git pull
# 只推送配置
cd ~/Desktop/ai-sync && bash sync-config.sh push && git push
# 只推送技能
cd "D:/Zero Tools" && git add -A && git commit -m "sync skills" && git push
# 查看同步日志
cat ~/Desktop/ai-sync/logs/sync-$(date +%Y%m%d).log
# 查看 Git 日志
cd ~/Desktop/ai-sync && git log --oneline -5
cd "D:/Zero Tools" && git log --oneline -5