用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill sentry命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
基于 SOC 职业分类
| name | sentry |
| version | 1.0.0 |
| description | Monitor and resolve Sentry issues, view project stats, and manage error tracking. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["sentry","monitoring","errors","devops"] |
| env_needed | [{"name":"SENTRY_AUTH_TOKEN","description":"Auth token from sentry.io/settings/auth-tokens/","required":true},{"name":"SENTRY_ORG","description":"Organization slug","required":true},{"name":"SENTRY_PROJECT","description":"Project slug","required":false}] |
| metadata | {"zeptoclaw":{"emoji":"🐛","requires":{"anyBins":["curl","jq"]}}} |
Monitor errors, resolve issues, and check project health using the Sentry API.
project:read, event:read, org:readsentry.io/organizations/your-orgexport SENTRY_AUTH_TOKEN="sntrys_xxx..."
export SENTRY_ORG="your-org"
export SENTRY_PROJECT="your-project"
curl -s "https://sentry.io/api/0/projects/$SENTRY_ORG/$SENTRY_PROJECT/issues/?query=is:unresolved" \
-H "Authorization: Bearer $SENTRY_AUTH_TOKEN" \
| jq '.[] | {id, title, culprit, count, firstSeen, lastSeen}' | head -40
ISSUE_ID="issue-id-from-list"
curl -s "https://sentry.io/api/0/issues/$ISSUE_ID/" \
-H "Authorization: Bearer $SENTRY_AUTH_TOKEN" \
| jq '{id, title, status, count, userCount, firstSeen, lastSeen}'
ISSUE_ID="issue-id-from-list"
curl -s -X PUT "https://sentry.io/api/0/issues/$ISSUE_ID/" \
-H "Authorization: Bearer $SENTRY_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": "resolved"}' | jq '{id, status}'
curl -s \
-H \
| jq
?query=is:unresolved+level:error to filter by levelculprit field shows the function/method where the error occurredLink header for next page URL