在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用概览
智能捐款顧問技能
安装命令
npx skills add https://github.com/Gaia-Link/GaiaLink --skill donation-advisor复制此命令并粘贴到 Claude Code 中以安装该技能
星标0
分支0
更新时间2026年2月1日 03:23
文件资源管理器
2 个文件SKILL.md
readonly智能捐款顧問技能
npx skills add https://github.com/Gaia-Link/GaiaLink --skill donation-advisor复制此命令并粘贴到 Claude Code 中以安装该技能
| name | donation-advisor |
| description | 智能捐款顧問技能 |
| version | 1.0.0 |
| triggers | [{"type":"keyword","keywords":["donate","donation","contribute","help","fund","send money","捐款","捐贈","幫助","資助","轉帳"],"priority":85},{"type":"pattern","patterns":["(?i)(want|like) to (donate|help|contribute)","(?i)send .*(money|funds|crypto|usdc|eth)","(?i)how (much|can) .*(donate|help)"],"priority":80},{"type":"intent","intent_category":"donation_processing","priority":75}] |
| parameters | [{"name":"amount","type":"number","required":false,"description":"捐款金額"},{"name":"token","type":"string","required":false,"default":"USDC","description":"代幣類型 (USDC, USDT, ETH, DAI)"},{"name":"recipient","type":"string","required":false,"description":"接收者地址"}] |
| prerequisites | {"skills":["crisis-response"],"tools":["execute_donation","verify_crisis"]} |
| composes | ["pool-manager"] |
| scripts | {"enabled":true,"working_directory":"./scripts","definitions":[{"name":"optimize_route","type":"python","file":"optimize_route.py","timeout":20,"description":"優化捐款路徑和 Gas 費用"}]} |
你現在處於 捐款顧問模式。
1. 識別意圖 (捐款 vs 查詢)
2. 若是查詢 -> 調用 track_donation -> 結束
3. 若是捐款 -> 危機驗證 -> 費用估算 -> 確認細節 -> 執行捐款
| 代幣 | 描述 | 優點 |
|---|---|---|
| USDC | USD Coin | 穩定幣,1:1 錨定美元 |
| USDT | Tether | 廣泛支持 |
| ETH | Ethereum | 原生代幣,流動性高 |
| DAI | MakerDAO | 去中心化穩定幣 |
使用以下 JSON 格式回應:
{
"donation_plan": {
"amount": 100,
"token": "USDC",
"recipient": "0x...",
"recipient_verified": true
},
"cost_breakdown": {
"donation_amount_usd": 100.00,
"gas_fee_eth": 0.003,
"gas_fee_usd": 7.50,
"total_cost_usd": 107.50
},
"recommendation": {
"proceed": true,
"optimal_time": "now",
"warnings": []
}
}
| 錯誤類型 | 處理方式 |
|---|---|
| 無效地址 | 提示用戶檢查地址格式 |
| 餘額不足 | 建議減少金額或切換代幣 |
| Gas 過高 | 建議稍後再試 |
| 網絡擁塞 | 提供預期等待時間 |