{"id":"dd3bb07f-056b-4edc-9d10-82f071791500","shortId":"Uyfg4T","kind":"skill","title":"sentry-automation","tagline":"Automate Sentry tasks via Rube MCP (Composio): manage issues/events, configure alerts, track releases, monitor projects and teams. Always search tools first for current schemas.","description":"# Sentry Automation via Rube MCP\n\nAutomate Sentry error tracking and monitoring operations through Composio's Sentry toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Sentry connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `sentry`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.\n\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `sentry`\n3. If connection is not ACTIVE, follow the returned auth link to complete Sentry OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Investigate Issues\n\n**When to use**: User wants to find, inspect, or triage error issues\n\n**Tool sequence**:\n1. `SENTRY_LIST_AN_ORGANIZATIONS_ISSUES` - List issues across the organization [Required]\n2. `SENTRY_GET_ORGANIZATION_ISSUE_DETAILS` - Get detailed info on a specific issue [Optional]\n3. `SENTRY_LIST_AN_ISSUES_EVENTS` - View individual error events for an issue [Optional]\n4. `SENTRY_RETRIEVE_AN_ISSUE_EVENT` - Get full event details with stack trace [Optional]\n5. `SENTRY_RETRIEVE_ISSUE_TAG_DETAILS` - Inspect tag distribution for an issue [Optional]\n\n**Key parameters**:\n- `organization_id_or_slug`: Organization identifier\n- `issue_id`: Numeric issue ID\n- `query`: Search query (e.g., `is:unresolved`, `assigned:me`, `browser:Chrome`)\n- `sort`: Sort order (`date`, `new`, `freq`, `priority`)\n- `statsPeriod`: Time window for stats (`24h`, `14d`, etc.)\n\n**Pitfalls**:\n- `organization_id_or_slug` is the org slug (e.g., 'my-org'), not the display name\n- Issue IDs are numeric; do not confuse with event IDs which are UUIDs\n- Query syntax uses Sentry's search format: `is:unresolved`, `assigned:me`, `!has:release`\n- Events within an issue can have different stack traces; inspect individual events for details\n\n### 2. Manage Project Issues\n\n**When to use**: User wants to view issues scoped to a specific project\n\n**Tool sequence**:\n1. `SENTRY_RETRIEVE_ORGANIZATION_PROJECTS` - List projects to find project slug [Prerequisite]\n2. `SENTRY_RETRIEVE_PROJECT_ISSUES_LIST` - List issues for a specific project [Required]\n3. `SENTRY_RETRIEVE_ISSUE_EVENTS_BY_ID` - Get events for a specific issue [Optional]\n\n**Key parameters**:\n- `organization_id_or_slug`: Organization identifier\n- `project_id_or_slug`: Project identifier\n- `query`: Search filter string\n- `statsPeriod`: Stats time window\n\n**Pitfalls**:\n- Project slugs are different from project display names\n- Always resolve project names to slugs via RETRIEVE_ORGANIZATION_PROJECTS first\n- Project-scoped issue lists may have different pagination than org-scoped lists\n\n### 3. Configure Alert Rules\n\n**When to use**: User wants to create or manage alert rules for a project\n\n**Tool sequence**:\n1. `SENTRY_RETRIEVE_ORGANIZATION_PROJECTS` - Find project for the alert [Prerequisite]\n2. `SENTRY_RETRIEVE_PROJECT_RULES_BY_ORG_AND_PROJECT_ID` - List existing rules [Optional]\n3. `SENTRY_CREATE_PROJECT_RULE_FOR_ALERTS` - Create a new alert rule [Required]\n4. `SENTRY_CREATE_ORGANIZATION_ALERT_RULE` - Create org-level metric alert [Alternative]\n5. `SENTRY_UPDATE_ORGANIZATION_ALERT_RULES` - Update existing alert rules [Optional]\n6. `SENTRY_RETRIEVE_ALERT_RULE_DETAILS` - Inspect specific alert rule [Optional]\n7. `SENTRY_GET_PROJECT_RULE_DETAILS` - Get project-level rule details [Optional]\n\n**Key parameters**:\n- `name`: Alert rule name\n- `conditions`: Array of trigger conditions\n- `actions`: Array of actions to perform when triggered\n- `filters`: Array of event filters\n- `frequency`: How often to trigger (in minutes)\n- `actionMatch`: 'all', 'any', or 'none' for condition matching\n\n**Pitfalls**:\n- Project-level rules (CREATE_PROJECT_RULE) and org-level metric alerts (CREATE_ORGANIZATION_ALERT_RULE) are different\n- Conditions, actions, and filters use specific JSON schemas; check Sentry docs for valid types\n- `frequency` is in minutes; setting too low causes alert fatigue\n- `actionMatch` defaults may vary; explicitly set to avoid unexpected behavior\n\n### 4. Manage Releases\n\n**When to use**: User wants to create, track, or manage release versions\n\n**Tool sequence**:\n1. `SENTRY_LIST_ORGANIZATION_RELEASES` - List existing releases [Optional]\n2. `SENTRY_CREATE_RELEASE_FOR_ORGANIZATION` - Create a new release [Required]\n3. `SENTRY_UPDATE_RELEASE_DETAILS_FOR_ORGANIZATION` - Update release metadata [Optional]\n4. `SENTRY_CREATE_RELEASE_DEPLOY_FOR_ORG` - Record a deployment for a release [Optional]\n5. `SENTRY_UPLOAD_RELEASE_FILE_TO_ORGANIZATION` - Upload source maps or files [Optional]\n\n**Key parameters**:\n- `version`: Release version string (e.g., '1.0.0', commit SHA)\n- `projects`: Array of project slugs this release belongs to\n- `dateReleased`: Release timestamp (ISO 8601)\n- `environment`: Deployment environment name (e.g., 'production', 'staging')\n\n**Pitfalls**:\n- Release versions must be unique within an organization\n- Releases can span multiple projects; use the `projects` array\n- Deploying a release is separate from creating it; use CREATE_RELEASE_DEPLOY\n- Source map uploads require the release to exist first\n\n### 5. Monitor Organization and Teams\n\n**When to use**: User wants to view org structure, teams, or member lists\n\n**Tool sequence**:\n1. `SENTRY_GET_ORGANIZATION_DETAILS` or `SENTRY_GET_ORGANIZATION_BY_ID_OR_SLUG` - Get org info [Required]\n2. `SENTRY_LIST_TEAMS_IN_ORGANIZATION` - List all teams [Optional]\n3. `SENTRY_LIST_ORGANIZATION_MEMBERS` - List org members [Optional]\n4. `SENTRY_GET_PROJECT_LIST` - List all accessible projects [Optional]\n\n**Key parameters**:\n- `organization_id_or_slug`: Organization identifier\n- `cursor`: Pagination cursor for large result sets\n\n**Pitfalls**:\n- Organization slugs are URL-safe identifiers, not display names\n- Member lists may be paginated; follow cursor pagination\n- Team and member visibility depends on the authenticated user's permissions\n\n### 6. Manage Monitors (Cron Monitoring)\n\n**When to use**: User wants to update cron job monitoring configuration\n\n**Tool sequence**:\n1. `SENTRY_UPDATE_A_MONITOR` - Update monitor configuration [Required]\n\n**Key parameters**:\n- `organization_id_or_slug`: Organization identifier\n- `monitor_id_or_slug`: Monitor identifier\n- `name`: Monitor display name\n- `schedule`: Cron schedule expression or interval\n- `checkin_margin`: Grace period in minutes for late check-ins\n- `max_runtime`: Maximum expected runtime in minutes\n\n**Pitfalls**:\n- Monitor slugs are auto-generated from the name; use slug for API calls\n- Schedule changes take effect immediately\n- Missing check-ins trigger alerts after the margin period\n\n## Common Patterns\n\n### ID Resolution\n\n**Organization name -> Slug**:\n```\n1. Call SENTRY_GET_ORGANIZATION_DETAILS\n2. Extract slug field from response\n```\n\n**Project name -> Slug**:\n```\n1. Call SENTRY_RETRIEVE_ORGANIZATION_PROJECTS\n2. Find project by name, extract slug\n```\n\n### Pagination\n\n- Sentry uses cursor-based pagination with `Link` headers\n- Check response for cursor values\n- Pass cursor in next request until no more pages\n\n### Search Query Syntax\n\n- `is:unresolved` - Unresolved issues\n- `is:resolved` - Resolved issues\n- `assigned:me` - Assigned to current user\n- `assigned:team-slug` - Assigned to a team\n- `!has:release` - Issues without a release\n- `first-release:1.0.0` - Issues first seen in release\n- `times-seen:>100` - Seen more than 100 times\n- `browser:Chrome` - Filter by browser tag\n\n## Known Pitfalls\n\n**ID Formats**:\n- Organization: use slug (e.g., 'my-org'), not display name\n- Project: use slug (e.g., 'my-project'), not display name\n- Issue IDs: numeric integers\n- Event IDs: UUIDs (32-char hex strings)\n\n**Permissions**:\n- API token scopes must match the operations being performed\n- Organization-level operations require org-level permissions\n- Project-level operations require project access\n\n**Rate Limits**:\n- Sentry enforces per-organization rate limits\n- Implement backoff on 429 responses\n- Bulk operations should be staggered\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List org issues | SENTRY_LIST_AN_ORGANIZATIONS_ISSUES | organization_id_or_slug, query |\n| Get issue details | SENTRY_GET_ORGANIZATION_ISSUE_DETAILS | organization_id_or_slug, issue_id |\n| List issue events | SENTRY_LIST_AN_ISSUES_EVENTS | issue_id |\n| Get event details | SENTRY_RETRIEVE_AN_ISSUE_EVENT | organization_id_or_slug, event_id |\n| List project issues | SENTRY_RETRIEVE_PROJECT_ISSUES_LIST | organization_id_or_slug, project_id_or_slug |\n| List projects | SENTRY_RETRIEVE_ORGANIZATION_PROJECTS | organization_id_or_slug |\n| Get org details | SENTRY_GET_ORGANIZATION_DETAILS | organization_id_or_slug |\n| List teams | SENTRY_LIST_TEAMS_IN_ORGANIZATION | organization_id_or_slug |\n| List members | SENTRY_LIST_ORGANIZATION_MEMBERS | organization_id_or_slug |\n| Create alert rule | SENTRY_CREATE_PROJECT_RULE_FOR_ALERTS | organization_id_or_slug, project_id_or_slug |\n| Create metric alert | SENTRY_CREATE_ORGANIZATION_ALERT_RULE | organization_id_or_slug |\n| Create release | SENTRY_CREATE_RELEASE_FOR_ORGANIZATION | organization_id_or_slug, version |\n| Deploy release | SENTRY_CREATE_RELEASE_DEPLOY_FOR_ORG | organization_id_or_slug, version |\n| List releases | SENTRY_LIST_ORGANIZATION_RELEASES | organization_id_or_slug |\n| Update monitor | SENTRY_UPDATE_A_MONITOR | organization_id_or_slug, monitor_id_or_slug |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["sentry","automation","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-sentry-automation","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/sentry-automation","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34583 github stars · SKILL.md body (10,040 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T18:52:13.766Z","embedding":null,"createdAt":"2026-04-18T21:44:15.767Z","updatedAt":"2026-04-22T18:52:13.766Z","lastSeenAt":"2026-04-22T18:52:13.766Z","tsv":"'/mcp':86 '1':106,153,170,351,466,662,810,919,1007,1022 '1.0.0':727,1093 '100':1102,1106 '14d':273 '2':118,182,332,363,477,671,827,1013,1028 '24h':272 '3':126,196,376,446,491,682,837 '32':1145 '4':141,210,504,645,693,846 '429':1187 '5':224,517,707,790 '6':528,901 '7':539 '8601':743 'access':853,1174 'across':178 'action':563,566,612,1400 'actionmatch':583,635 'activ':58,131,146 'add':83,100 'alert':14,448,459,475,497,501,508,515,521,525,531,536,555,604,607,633,995,1311,1318,1329,1333 'altern':516 'alway':21,68,421 'api':96,983,1150 'applic':1394 'array':559,564,572,731,768 'ask':1438 'assign':256,314,1070,1072,1076,1080 'auth':135 'authent':897 'auto':975 'auto-gener':974 'autom':3,4,29,33 'avail':57,111 'avoid':642 'backoff':1185 'base':1040 'behavior':644 'belong':737 'boundari':1446 'browser':258,1108,1112 'bulk':1189 'call':69,119,984,1008,1023 'caus':632 'chang':986 'char':1146 'check':619,961,992,1045 'check-in':960,991 'checkin':952 'chrome':259,1109 'clarif':1440 'clear':1413 'client':93 'commit':728 'common':1000 'complet':138 'composio':10,41 'condit':558,562,589,611 'configur':13,94,447,916,926 'confirm':113,142 'confus':298 'connect':53,60,64,122,128,143 'core':151 'creat':456,493,498,506,510,596,605,654,673,677,695,775,778,1310,1314,1327,1331,1339,1342,1354 'criteria':1449 'cron':904,913,947 'current':26,76,1074 'cursor':864,866,888,1039,1048,1051 'cursor-bas':1038 'date':263 'datereleas':739 'default':636 'depend':894 'deploy':697,702,745,769,780,1351,1356 'describ':1401,1417 'detail':187,189,219,229,331,533,544,550,686,814,1012,1216,1221,1240,1280,1284 'differ':324,416,439,610 'display':290,419,880,944,1126,1136 'distribut':232 'doc':621 'e.g':253,284,726,748,1121,1131 'effect':988 'endpoint':102 'enforc':1178 'environ':744,746,1429 'environment-specif':1428 'error':35,166,204 'etc':274 'event':201,205,215,218,300,318,329,380,384,574,1142,1230,1235,1239,1245,1250 'execut':1396 'exist':488,524,668,788 'expect':966 'expert':1434 'explicit':639 'express':949 'extract':1014,1033 'fatigu':634 'field':1016 'file':711,718 'filter':406,571,575,614,1110 'find':162,359,471,1029 'first':24,73,431,789,1091,1095 'first-releas':1090 'follow':132,887 'format':311,1117 'freq':265 'frequenc':576,625 'full':217 'generat':976 'get':75,80,184,188,216,383,541,545,812,817,823,848,1010,1214,1218,1238,1278,1282 'grace':954 'header':1044 'hex':1147 'id':240,246,249,277,293,301,382,393,399,486,820,859,931,937,1002,1116,1139,1143,1210,1223,1227,1237,1247,1251,1261,1265,1275,1286,1297,1307,1320,1324,1336,1347,1360,1371,1381,1385 'identifi':244,397,403,863,878,935,941 'immedi':989 'implement':1184 'in':962,993 'individu':203,328 'info':190,825 'input':1443 'inspect':163,230,327,534 'integ':1141 'interv':951 'investig':154 'iso':742 'issu':155,167,175,177,186,194,200,208,214,227,235,245,248,292,321,335,343,367,370,379,388,435,1065,1069,1086,1094,1138,1203,1208,1215,1220,1226,1229,1234,1236,1244,1254,1258 'issues/events':12 'job':914 'json':617 'key':97,237,390,552,720,856,928,1199 'known':1114 'larg':868 'late':959 'level':513,548,594,602,1161,1166,1170 'limit':1176,1183,1405 'link':136,1043 'list':172,176,198,356,368,369,436,445,487,664,667,807,829,833,839,842,850,851,883,1201,1205,1228,1232,1252,1259,1268,1289,1292,1300,1303,1364,1367 'low':631 'manag':11,63,121,333,458,646,657,902 'map':716,782 'margin':953,998 'match':590,1154,1414 'max':963 'maximum':965 'may':437,637,884 'mcp':9,32,47,50,82,89,109 'member':806,841,844,882,892,1301,1305 'metadata':691 'metric':514,603,1328 'minut':582,628,957,969 'miss':990,1451 'monitor':17,38,791,903,905,915,923,925,936,940,943,971,1375,1379,1384 'multipl':763 'must':51,754,1153 'my-org':285,1122 'my-project':1132 'name':291,420,424,554,557,747,881,942,945,979,1005,1020,1032,1127,1137 'need':98 'new':264,500,679 'next':1053 'none':587 'numer':247,295,1140 'oauth':140 'often':578 'oper':39,1156,1162,1171,1190 'option':195,209,223,236,389,490,527,538,551,670,692,706,719,836,845,855 'order':262 'org':282,287,443,483,512,601,699,802,824,843,1124,1165,1202,1279,1358 'org-level':511,600,1164 'org-scop':442 'organ':174,180,185,239,243,276,354,392,396,429,469,507,520,606,665,676,688,713,759,792,813,818,832,840,858,862,872,930,934,1004,1011,1026,1118,1160,1181,1207,1209,1219,1222,1246,1260,1272,1274,1283,1285,1295,1296,1304,1306,1319,1332,1335,1345,1346,1359,1368,1370,1380 'organization-level':1159 'output':1423 'overview':1404 'page':1058 'pagin':440,865,886,889,1035,1041 'param':1200 'paramet':238,391,553,721,857,929 'pass':1050 'pattern':1001 'per':1180 'per-organ':1179 'perform':568,1158 'period':955,999 'permiss':900,1149,1167,1444 'pitfal':275,412,591,751,871,970,1115 'prerequisit':48,362,476 'prioriti':266 'product':749 'project':18,334,348,355,357,360,366,374,398,402,413,418,423,430,433,463,470,472,480,485,494,542,547,593,597,730,733,764,767,849,854,1019,1027,1030,1128,1134,1169,1173,1253,1257,1264,1269,1273,1315,1323 'project-level':546,592,1168 'project-scop':432 'queri':250,252,305,404,1060,1213 'quick':1194 'rate':1175,1182 'record':700 'refer':1195 'releas':16,317,647,658,666,669,674,680,685,690,696,705,710,723,736,740,752,760,771,779,786,1085,1089,1092,1098,1340,1343,1352,1355,1365,1369 'request':1054 'requir':181,375,503,681,784,826,927,1163,1172,1442 'resolut':1003 'resolv':422,1067,1068 'respond':117 'respons':1018,1046,1188 'result':869 'retriev':212,226,353,365,378,428,468,479,530,1025,1242,1256,1271 'return':134 'review':1435 'rube':8,31,46,49,54,62,70,81,108,114,120 'rube.app':85 'rube.app/mcp':84 'rule':449,460,481,489,495,502,509,522,526,532,537,543,549,556,595,598,608,1312,1316,1334 'run':148 'runtim':964,967 'safe':877 'safeti':1445 'schedul':946,948,985 'schema':27,78,618 'scope':344,434,444,1152,1416 'search':22,55,71,115,251,310,405,1059 'seen':1096,1101,1103 'sentri':2,5,28,34,43,59,67,125,139,171,183,197,211,225,308,352,364,377,467,478,492,505,518,529,540,620,663,672,683,694,708,811,816,828,838,847,920,1009,1024,1036,1177,1204,1217,1231,1241,1255,1270,1281,1291,1302,1313,1330,1341,1353,1366,1376 'sentry-autom':1 'separ':773 'sequenc':169,350,465,661,809,918 'server':90 'set':629,640,870 'setup':79 'sha':729 'show':145 'skill':1392,1408 'skill-sentry-automation' 'slug':242,279,283,361,395,401,414,426,734,822,861,873,933,939,972,981,1006,1015,1021,1034,1079,1120,1130,1198,1212,1225,1249,1263,1267,1277,1288,1299,1309,1322,1326,1338,1349,1362,1373,1383,1387 'sort':260,261 'sourc':715,781 'source-sickn33' 'span':762 'specif':193,347,373,387,535,616,1430 'stack':221,325 'stage':750 'stagger':1193 'stat':271,409 'statsperiod':267,408 'status':144 'stop':1436 'string':407,725,1148 'structur':803 'substitut':1426 'success':1448 'syntax':306,1061 'tag':228,231,1113 'take':987 'task':6,1196,1412 'team':20,794,804,830,835,890,1078,1083,1290,1293 'team-slug':1077 'test':1432 'time':268,410,1100,1107 'times-seen':1099 'timestamp':741 'token':1151 'tool':23,56,72,77,116,168,349,464,660,808,917,1197 'toolkit':44,66,124 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'trace':222,326 'track':15,36,655 'treat':1421 'triag':165 'trigger':561,570,580,994 'type':624 'unexpect':643 'uniqu':756 'unresolv':255,313,1063,1064 'updat':519,523,684,689,912,921,924,1374,1377 'upload':709,714,783 'url':876 'url-saf':875 'use':158,307,338,452,615,650,765,777,797,908,980,1037,1119,1129,1390,1406 'user':159,339,453,651,798,898,909,1075 'uuid':304,1144 'valid':623,1431 'valu':1049 'vari':638 'verifi':107 'version':659,722,724,753,1350,1363 'via':7,30,45,61,427 'view':202,342,801 'visibl':893 'want':160,340,454,652,799,910 'window':269,411 'within':319,757 'without':1087 'work':105 'workflow':150,152,1398","prices":[{"id":"bb99e675-de05-4907-ae1a-859baa9f01b3","listingId":"dd3bb07f-056b-4edc-9d10-82f071791500","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:44:15.767Z"}],"sources":[{"listingId":"dd3bb07f-056b-4edc-9d10-82f071791500","source":"github","sourceId":"sickn33/antigravity-awesome-skills/sentry-automation","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/sentry-automation","isPrimary":false,"firstSeenAt":"2026-04-18T21:44:15.767Z","lastSeenAt":"2026-04-22T18:52:13.766Z"}],"details":{"listingId":"dd3bb07f-056b-4edc-9d10-82f071791500","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"sentry-automation","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34583,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-22T06:40:00Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"193fa9a133d72c15f0359f2775e0ca38b5b2c716","skill_md_path":"skills/sentry-automation/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/sentry-automation"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"sentry-automation","description":"Automate Sentry tasks via Rube MCP (Composio): manage issues/events, configure alerts, track releases, monitor projects and teams. Always search tools first for current schemas."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/sentry-automation"},"updatedAt":"2026-04-22T18:52:13.766Z"}}