sentry-helper
Complete Sentry operations via sentry-cli and REST API - issues, releases, source maps, traces, events When user mentions Sentry, errors, issues, releases, source maps, error tracking, stack traces
What this skill does
# Sentry Helper Agent
## Overview
Complete Sentry operations via `sentry-cli` and REST API. This skill replaces Sentry MCP server functionality, providing CLI/API equivalents for all operations.
## MCP Tool Equivalents Reference
| MCP Tool | CLI/API Equivalent |
| ------------------------- | -------------------------------------------------------------------------- |
| `whoami` | `sentry-cli info` or `curl "$API/"` |
| `find_organizations` | `sentry-cli organizations list` or `curl "$API/organizations/"` |
| `find_teams` | `curl "$API/organizations/{org}/teams/"` |
| `find_projects` | `sentry-cli projects list` or `curl "$API/organizations/{org}/projects/"` |
| `find_releases` | `sentry-cli releases list` or `curl "$API/organizations/{org}/releases/"` |
| `get_issue_details` | `curl "$API/issues/{id}/"` |
| `get_trace_details` | `curl "$API/organizations/{org}/events-trace/{trace_id}/"` |
| `get_event_attachment` | `curl "$API/projects/{org}/{project}/events/{event_id}/attachments/"` |
| `search_events` | `curl "$API/organizations/{org}/events/"` |
| `search_issues` | `sentry-cli issues list` or `curl "$API/projects/{org}/{project}/issues/"` |
| `search_issue_events` | `curl "$API/issues/{id}/events/"` |
| `find_dsns` | `curl "$API/projects/{org}/{project}/keys/"` |
| `update_issue` | `curl -X PUT "$API/issues/{id}/"` |
| `create_team` | `curl -X POST "$API/organizations/{org}/teams/"` |
| `create_project` | `curl -X POST "$API/teams/{org}/{team}/projects/"` |
| `update_project` | `curl -X PUT "$API/projects/{org}/{project}/"` |
| `create_dsn` | `curl -X POST "$API/projects/{org}/{project}/keys/"` |
| `search_docs` | WebSearch or https://docs.sentry.io |
| `get_doc` | WebFetch from docs.sentry.io |
| `analyze_issue_with_seer` | Manual analysis + get_issue_details |
## Configuration
### CLI Installation
```bash
# macOS
brew install getsentry/tools/sentry-cli
# Linux/Windows
curl -sL https://sentry.io/get-cli/ | sh
# npm
npm install -g @sentry/cli
```
### Authentication
```bash
# Set environment variables
export SENTRY_AUTH_TOKEN="your-auth-token"
export SENTRY_ORG="your-org"
export SENTRY_PROJECT="your-project"
export API="https://sentry.io/api/0"
# Auth header
AUTH="Authorization: Bearer $SENTRY_AUTH_TOKEN"
# CLI login (interactive)
sentry-cli login
# Verify authentication
sentry-cli info
curl -H "$AUTH" "$API/"
```
### .sentryclirc File
```ini
[defaults]
url=https://sentry.io/
org=my-organization
project=my-project
[auth]
token=your-auth-token
[log]
level=info
```
---
## Organization Operations
### Get Current User (whoami)
```bash
# Via CLI
sentry-cli info
# Via API
curl -H "$AUTH" "$API/"
# Get user details
curl -H "$AUTH" "$API/users/me/"
```
### List Organizations
```bash
# Via CLI
sentry-cli organizations list
# Via API
curl -H "$AUTH" "$API/organizations/"
# JSON output
curl -H "$AUTH" "$API/organizations/" | \
jq '.[] | {slug, name, status}'
```
---
## Team Operations
### List Teams
```bash
curl -H "$AUTH" "$API/organizations/$ORG/teams/"
# JSON output
curl -H "$AUTH" "$API/organizations/$ORG/teams/" | \
jq '.[] | {slug, name, memberCount}'
```
### Create Team
```bash
curl -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$API/organizations/$ORG/teams/" \
-d '{
"name": "My Team",
"slug": "my-team"
}'
```
---
## Project Operations
### List Projects
```bash
# Via CLI
sentry-cli projects list
# Via API
curl -H "$AUTH" "$API/organizations/$ORG/projects/"
# JSON output
curl -H "$AUTH" "$API/organizations/$ORG/projects/" | \
jq '.[] | {slug, name, platform}'
```
### Create Project
```bash
# Create project under a team
curl -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$API/teams/$ORG/$TEAM/projects/" \
-d '{
"name": "My Project",
"slug": "my-project",
"platform": "javascript"
}'
```
### Update Project
```bash
curl -X PUT -H "$AUTH" -H "Content-Type: application/json" \
"$API/projects/$ORG/$PROJECT/" \
-d '{
"name": "Updated Project Name",
"slug": "updated-slug",
"platform": "python"
}'
```
---
## Issue Operations
### Search Issues
```bash
# Via CLI
sentry-cli issues list
sentry-cli issues list --query "is:unresolved"
# Via API
curl -H "$AUTH" "$API/projects/$ORG/$PROJECT/issues/"
# With query filters
curl -G -H "$AUTH" \
--data-urlencode "query=is:unresolved level:error" \
"$API/projects/$ORG/$PROJECT/issues/"
# Search across organization
curl -G -H "$AUTH" \
--data-urlencode "query=is:unresolved" \
"$API/organizations/$ORG/issues/"
# JSON output
curl -H "$AUTH" "$API/projects/$ORG/$PROJECT/issues/" | \
jq '.[] | {id, shortId, title, count, userCount}'
```
### Get Issue Details
```bash
# By issue ID
curl -H "$AUTH" "$API/issues/$ISSUE_ID/"
# With full details
curl -H "$AUTH" "$API/issues/$ISSUE_ID/" | \
jq '{
id,
shortId,
title,
status,
level,
count,
userCount,
firstSeen,
lastSeen,
platform,
project: .project.slug
}'
# Get latest event with stacktrace
curl -H "$AUTH" "$API/issues/$ISSUE_ID/events/latest/" | \
jq '.entries[] | select(.type == "exception")'
```
### Update Issue
```bash
# Resolve issue
curl -X PUT -H "$AUTH" -H "Content-Type: application/json" \
"$API/issues/$ISSUE_ID/" \
-d '{"status": "resolved"}'
# Ignore issue
curl -X PUT -H "$AUTH" -H "Content-Type: application/json" \
"$API/issues/$ISSUE_ID/" \
-d '{"status": "ignored"}'
# Assign to user
curl -X PUT -H "$AUTH" -H "Content-Type: application/json" \
"$API/issues/$ISSUE_ID/" \
-d '{"assignedTo": "user:123456"}'
# Assign to team
curl -X PUT -H "$AUTH" -H "Content-Type: application/json" \
"$API/issues/$ISSUE_ID/" \
-d '{"assignedTo": "team:789"}'
```
### Search Issue Events
```bash
# Get events for an issue
curl -H "$AUTH" "$API/issues/$ISSUE_ID/events/"
# With pagination
curl -H "$AUTH" "$API/issues/$ISSUE_ID/events/?cursor=0:0:1"
# Get specific event
curl -H "$AUTH" "$API/issues/$ISSUE_ID/events/$EVENT_ID/"
```
---
## Event Operations
### Search Events
```bash
# Events in organization (Discover)
curl -G -H "$AUTH" \
--data-urlencode "field=title" \
--data-urlencode "field=event.type" \
--data-urlencode "field=project" \
--data-urlencode "field=timestamp" \
--data-urlencode "query=level:error" \
--data-urlencode "statsPeriod=24h" \
"$API/organizations/$ORG/events/"
# Count events
curl -G -H "$AUTH" \
--data-urlencode "field=count()" \
--data-urlencode "query=level:error" \
--data-urlencode "statsPeriod=24h" \
"$API/organizations/$ORG/events/"
```
### Get Event Attachments
```bash
# List attachments for an event
curl -H "$AUTH" \
"$API/projects/$ORG/$PROJECT/events/$EVENT_ID/attachments/"
# Download specific attachment
curl -H "$AUTH" \
"$API/projects/$ORG/$PROJECT/events/$EVENT_ID/attachments/$ATTACHMENT_ID/?download=1"
```
---
## Trace Operations
### Get Trace Details
```bash
# Get full trace
curl -H "$AUTH" \
"$API/organizations/$ORG/events-trace/$TRACE_ID/"
# With specific project
curl -H "$AUTH" \
"$API/organizations/$ORG/events-trace/$TRACE_ID/?project=$PROJECT_ID"
```
---
## Release Operations
### List Releases
```bash
# Via CLI
sentry-cli rRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.