chanpinhsd/agent/skills/mafia_agent_installer/SKILL.md
lidf 3e1f1b11b9 fix: Gitea 解压目录名修正(chanpinhsd 非 chanpinhsd-main)
端到端验证通过:curl → tar → install.sh → Agent 注册成功
2026-04-06 22:09:32 +08:00

40 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
name: mafia_agent_installer
description: "安装或更新「黑手党提案专家」Agent。当用户提到安装、更新、升级黑手党提案时激活。"
metadata:
copaw:
emoji: "🔧"
requires: {}
---
# 黑手党提案 Agent 安装与更新
当用户要求**安装、更新、升级「黑手党提案专家」Agent** 时,使用此 Skill。
## 安装(用户首次使用)
`execute_shell_command` 执行:
```bash
curl -fsSL https://git.brainwork.club/lidf/chanpinhsd/archive/main.tar.gz | tar xz -C /tmp && bash /tmp/chanpinhsd/agent/install.sh
```
## 更新(已安装过)
先检查是否有 Git 仓库:
```bash
if [ -d ~/mafia-proposal/.git ]; then
cd ~/mafia-proposal && git pull && bash agent/install.sh
else
curl -fsSL https://git.brainwork.club/lidf/chanpinhsd/archive/main.tar.gz | tar xz -C /tmp && bash /tmp/chanpinhsd/agent/install.sh
fi
```
## 安装完成后
告知用户:
> ✅ **黑手党提案专家**已就绪!
> 请刷新页面Cmd+R然后在左上角切换到「黑手党提案专家」开始使用。