在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用概览
捐款追蹤與狀態查詢技能
安装命令
npx skills add https://github.com/Gaia-Link/GaiaLink --skill donation-tracker复制此命令并粘贴到 Claude Code 中以安装该技能
星标0
分支0
更新时间2026年2月1日 03:23
文件资源管理器
2 个文件SKILL.md
readonly捐款追蹤與狀態查詢技能
npx skills add https://github.com/Gaia-Link/GaiaLink --skill donation-tracker复制此命令并粘贴到 Claude Code 中以安装该技能
| name | donation-tracker |
| description | 捐款追蹤與狀態查詢技能 |
| version | 1.0.0 |
| triggers | [{"type":"keyword","keywords":["track","status","history","transaction","追蹤","狀態","歷史","交易"],"priority":80},{"type":"pattern","patterns":["(?i)(check|view|get) .*(donation|transaction|status)","(?i)(my|our) .*(donations|history)"],"priority":75}] |
| parameters | [{"name":"transaction_id","type":"string","required":false,"description":"交易 ID 或哈希"},{"name":"wallet_address","type":"string","required":false,"description":"錢包地址"}] |
| prerequisites | {"skills":["donation-advisor"]} |
| scripts | {"enabled":true,"working_directory":"./scripts","definitions":[{"name":"track_donation","type":"python","file":"track_donation.py","timeout":15,"description":"追蹤捐款交易狀態或查詢歷史"}]} |
你現在處於 捐款追蹤模式。
當用戶提供交易哈希時,你可以:
當用戶提供錢包地址時,你可以:
提供捐款活動的綜合報告:
用戶輸入 -> 參數解析 -> 追蹤/查詢 -> 格式化結果 -> 回應
{
"tx_hash": "0x..."
}
{
"wallet_address": "0x...",
"time_range": "30d" // 可選,默認 all
}
{
"success": true,
"transaction": {
"tx_hash": "0x...",
"status": "confirmed",
"block_number": 12345678,
"timestamp": "2024-01-15T10:30:00Z",
"amount": 100,
"token": "USDC",
"recipient": "0x...",
"gas_used": 21000
},
"explorer_url": "https://etherscan.io/tx/0x..."
}
{
"success": true,
"donations": [
{
"tx_hash": "0x...",
"timestamp": "2024-01-15T10:30:00Z",
"amount": 100,
"token": "USDC",
"recipient": "Red Cross",
"status": "confirmed"
}
],
"summary": {
"total_donations": 5,
"total_amount_usd": 500.00,
"average_amount_usd": 100.00,
"first_donation": "2024-01-01T00:00:00Z",
"last_donation": "2024-01-15T10:30:00Z"
}
}
| 格式 | 含義 |
|---|---|
7d | 過去 7 天 |
30d | 過去 30 天 |
90d | 過去 90 天 |
1y | 過去 1 年 |
all | 所有記錄 |
| 錯誤類型 | 處理方式 |
|---|---|
| 無效交易哈希 | 返回錯誤提示,說明正確格式 |
| 無效錢包地址 | 返回錯誤提示,說明正確格式 |
| 交易未找到 | 返回 pending 狀態,建議稍後重試 |
| 無捐款記錄 | 返回空列表,說明無歷史記錄 |