用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill moltgate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
正在显示 SKILL.md
基于 SOC 职业分类
| name | moltgate |
| description | Fetch and process paid inbound messages from Moltgate using the REST API. |
| metadata | {"openclaw":{"requires":{"env":["MOLTGATE_API_KEY"]},"primaryEnv":"MOLTGATE_API_KEY","homepage":"https://moltgate.com"}} |
Use this skill when the user asks to check paid Moltgate inbox messages, triage them, or mark them handled.
Required environment variable:
export MOLTGATE_API_KEY="mg_key_your_key_here"
Optional environment variable:
export MOLTGATE_BASE_URL="https://moltgate.com"
If MOLTGATE_BASE_URL is not set, default to https://moltgate.com.
All authenticated requests require:
Authorization: Bearer $MOLTGATE_API_KEY
List new messages:
curl -s -H "Authorization: Bearer $MOLTGATE_API_KEY" \
"$MOLTGATE_BASE_URL/api/inbox/messages/?status=NEW"
Get message detail:
curl -s -H "Authorization: Bearer $MOLTGATE_API_KEY" \
"$MOLTGATE_BASE_URL/api/inbox/messages/{id}/"
Mark message processed:
curl -s -X PATCH \
-H "Authorization: Bearer $MOLTGATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"inbox_status":"PROCESSED"}' \
"$MOLTGATE_BASE_URL/api/inbox/messages/{id}/update_status/"
Archive message:
curl -s -X PATCH \
-H "Authorization: Bearer $MOLTGATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"inbox_status":"ARCHIVED"}' \
"$MOLTGATE_BASE_URL/api/inbox/messages/{id}/update_status/"
List lanes:
curl -s -H "Authorization: Bearer $MOLTGATE_API_KEY" \
"$MOLTGATE_BASE_URL/api/lanes/"
GET /api/inbox/messages/ returns a JSON array.id, subject, sender_name, sender_email, lane_name, amount_cents, status, inbox_status, is_read, triage_output, created_at.sanitized_body, lane, and receipt.GET /api/inbox/messages/?status=NEW.PATCH /api/inbox/messages/{id}/update_status/ with PROCESSED.ARCHIVED.[MOLTGATE MESSAGE]
id: {id}
from: {sender_name} ({sender_email or "guest"})
lane: {lane_name}
paid: ${amount_cents/100}
subject: {subject}
created_at: {created_at}
triage: {triage_output or "none"}