一键导入
bet-sync
Sync betting data from agents/*/round-N/bets.md into the HTML file's AI_ROUNDS array. Parses each model's bets.md, extracts bet entries, deploys to Caddy.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Sync betting data from agents/*/round-N/bets.md into the HTML file's AI_ROUNDS array. Parses each model's bets.md, extracts bet entries, deploys to Caddy.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
把静态 HTML 站点部署到服务器对外访问的标准 SOP。覆盖 Caddy(Docker,:80/:443) 与 nginx(宿主,独立端口) 两条路径、端口约定、80 端口冲突坑、部署目录、reload 与 curl 验证。任何"部署/上线/开放访问一个 HTML 页面或静态站点"的请求都必须先读这里,不要自己瞎配。
Diagnose RL agent behavioral issues by analyzing reward structure. Use when the agent exhibits unwanted behavior (random skills, wandering, avoiding combat, etc.) to identify root causes in the reward function.
Author/validate/export Google's DESIGN.md token spec files.
Configure, troubleshoot, and operate the Feishu (Lark) gateway integration — group chats, @mention gating, permissions, message routing, and diagnostics.
Scrape training metrics from Tencent AI Arena (tencentarena.com) monitoring dashboard. Covers JWT auth, x-kaiwu-auth signature, API endpoints, and metric extraction.
Write and maintain Kaiwu_2026 答辩材料 (defense/presentation docs). Covers technical writing for innovation points, updating the main summary doc, and git workflow for doc commits.
| name | bet-sync |
| description | Sync betting data from agents/*/round-N/bets.md into the HTML file's AI_ROUNDS array. Parses each model's bets.md, extracts bet entries, deploys to Caddy. |
| version | 1.0.0 |
| author | QoobeeHermes |
| platforms | ["linux"] |
| metadata | {"hermes":{"tags":["world-cup","sync","bets","html"],"related_skills":["lottery-updater"]}} |
从各模型 agent 的 bets.md 文件同步投注方案到 HTML。
| 场景 | 触发方式 | 动作 |
|---|---|---|
| 新一轮投注方案就绪 | 主动/被动 | 解析 bets.md → 同步到 HTML |
| 用户说 "同步投注" | 主动 | 执行同步流程 |
| 用户说 "某模型的方案改了" | 主动 | 重新同步该模型 |
cd ~/world-cup && git pull origin main
python3 ~/world-cup/.hermes/skills/world-cup/lottery-updater/scripts/sync_bets.py --round N
当前架构(纯 HTML):
数据直接编辑 ~/world-cup/世界杯预测.html 中的 AI_ROUNDS JavaScript 数组(约第 2492 行)。
同步规则:
amount > 0,后续 legs 的 amount = 0过关: '单关'actualScore / result / prize 留空/'pending'/0,等赛后填cd ~/world-cup
cp 世界杯预测.html index.html
git -c user.name="QoobeeHermes" -c user.email="qoobeehermes@worldcup2026" \
add 世界杯预测.html index.html
git -c user.name="QoobeeHermes" -c user.email="qoobeehermes@worldcup2026" \
commit -m "sync(round-N): 同步各模型投注方案"
# git push 需要 GitHub 认证,当前服务器未配置,仅本地提交
# 部署到 Caddy(唯一可用 Web 服务)
docker cp ~/world-cup/index.html colosseum-caddy-1:/srv/world-cup/index.html
docker exec colosseum-caddy-1 caddy reload --config /etc/caddy/Caddyfile
cp 世界杯预测.html index.html + docker cp 到 Caddy 才对外生效patch() 工具逐条修改,避免覆盖整个文件