{"id":"1dd15a46-5e80-481d-b161-12f77259e687","shortId":"MTB9Uu","kind":"skill","title":"datadog-automation","tagline":"Automate Datadog tasks via Rube MCP (Composio): query metrics, search logs, manage monitors/dashboards, create events and downtimes. Always search tools first for current schemas.","description":"# Datadog Automation via Rube MCP\n\nAutomate Datadog monitoring and observability operations through Composio's Datadog toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Datadog connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `datadog`\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 `datadog`\n3. If connection is not ACTIVE, follow the returned auth link to complete Datadog authentication\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Query and Explore Metrics\n\n**When to use**: User wants to query metric data or list available metrics\n\n**Tool sequence**:\n1. `DATADOG_LIST_METRICS` - List available metric names [Optional]\n2. `DATADOG_QUERY_METRICS` - Query metric time series data [Required]\n\n**Key parameters**:\n- `query`: Datadog metric query string (e.g., `avg:system.cpu.user{host:web01}`)\n- `from`: Start timestamp (Unix epoch seconds)\n- `to`: End timestamp (Unix epoch seconds)\n- `q`: Search string for listing metrics\n\n**Pitfalls**:\n- Query syntax follows Datadog's metric query format: `aggregation:metric_name{tag_filters}`\n- `from` and `to` are Unix epoch timestamps in seconds, not milliseconds\n- Valid aggregations: `avg`, `sum`, `min`, `max`, `count`\n- Tag filters use curly braces: `{host:web01,env:prod}`\n- Time range should not exceed Datadog's retention limits for the metric type\n\n### 2. Search and Analyze Logs\n\n**When to use**: User wants to search log entries or list log indexes\n\n**Tool sequence**:\n1. `DATADOG_LIST_LOG_INDEXES` - List available log indexes [Optional]\n2. `DATADOG_SEARCH_LOGS` - Search logs with query and filters [Required]\n\n**Key parameters**:\n- `query`: Log search query using Datadog log query syntax\n- `from`: Start time (ISO 8601 or Unix timestamp)\n- `to`: End time (ISO 8601 or Unix timestamp)\n- `sort`: Sort order ('asc' or 'desc')\n- `limit`: Number of log entries to return\n\n**Pitfalls**:\n- Log queries use Datadog's log search syntax: `service:web status:error`\n- Search is limited to retained logs within the configured retention period\n- Large result sets require pagination; check for cursor/page tokens\n- Log indexes control routing and retention; filter by index if known\n\n### 3. Manage Monitors\n\n**When to use**: User wants to create, update, mute, or inspect monitors\n\n**Tool sequence**:\n1. `DATADOG_LIST_MONITORS` - List all monitors with filters [Required]\n2. `DATADOG_GET_MONITOR` - Get specific monitor details [Optional]\n3. `DATADOG_CREATE_MONITOR` - Create a new monitor [Optional]\n4. `DATADOG_UPDATE_MONITOR` - Update monitor configuration [Optional]\n5. `DATADOG_MUTE_MONITOR` - Silence a monitor temporarily [Optional]\n6. `DATADOG_UNMUTE_MONITOR` - Re-enable a muted monitor [Optional]\n\n**Key parameters**:\n- `monitor_id`: Numeric monitor ID\n- `name`: Monitor display name\n- `type`: Monitor type ('metric alert', 'service check', 'log alert', 'query alert', etc.)\n- `query`: Monitor query defining the alert condition\n- `message`: Notification message with @mentions\n- `tags`: Array of tag strings\n- `thresholds`: Alert threshold values (`critical`, `warning`, `ok`)\n\n**Pitfalls**:\n- Monitor `type` must match the query type; mismatches cause creation failures\n- `message` supports @mentions for notifications (e.g., `@slack-channel`, `@pagerduty`)\n- Thresholds vary by monitor type; metric monitors need `critical` at minimum\n- Muting a monitor suppresses notifications but the monitor still evaluates\n- Monitor IDs are numeric integers\n\n### 4. Manage Dashboards\n\n**When to use**: User wants to list, view, update, or delete dashboards\n\n**Tool sequence**:\n1. `DATADOG_LIST_DASHBOARDS` - List all dashboards [Required]\n2. `DATADOG_GET_DASHBOARD` - Get full dashboard definition [Optional]\n3. `DATADOG_UPDATE_DASHBOARD` - Update dashboard layout or widgets [Optional]\n4. `DATADOG_DELETE_DASHBOARD` - Remove a dashboard (irreversible) [Optional]\n\n**Key parameters**:\n- `dashboard_id`: Dashboard identifier string\n- `title`: Dashboard title\n- `layout_type`: 'ordered' (grid) or 'free' (freeform positioning)\n- `widgets`: Array of widget definition objects\n- `description`: Dashboard description\n\n**Pitfalls**:\n- Dashboard IDs are alphanumeric strings (e.g., 'abc-def-ghi'), not numeric\n- `layout_type` cannot be changed after creation; must recreate the dashboard\n- Widget definitions are complex nested objects; get existing dashboard first to understand structure\n- DELETE is permanent; there is no undo\n\n### 5. Create Events and Manage Downtimes\n\n**When to use**: User wants to post events or schedule maintenance downtimes\n\n**Tool sequence**:\n1. `DATADOG_LIST_EVENTS` - List existing events [Optional]\n2. `DATADOG_CREATE_EVENT` - Post a new event [Required]\n3. `DATADOG_CREATE_DOWNTIME` - Schedule a maintenance downtime [Optional]\n\n**Key parameters for events**:\n- `title`: Event title\n- `text`: Event body text (supports markdown)\n- `alert_type`: Event severity ('error', 'warning', 'info', 'success')\n- `tags`: Array of tag strings\n\n**Key parameters for downtimes**:\n- `scope`: Tag scope for the downtime (e.g., `host:web01`)\n- `start`: Start time (Unix epoch)\n- `end`: End time (Unix epoch; omit for indefinite)\n- `message`: Downtime description\n- `monitor_id`: Specific monitor to downtime (optional, omit for scope-based)\n\n**Pitfalls**:\n- Event `text` supports Datadog's markdown format including @mentions\n- Downtimes scope uses tag syntax: `host:web01`, `env:staging`\n- Omitting `end` creates an indefinite downtime; always set an end time for maintenance\n- Downtime `monitor_id` narrows to a single monitor; scope applies to all matching monitors\n\n### 6. Manage Hosts and Traces\n\n**When to use**: User wants to list infrastructure hosts or inspect distributed traces\n\n**Tool sequence**:\n1. `DATADOG_LIST_HOSTS` - List all reporting hosts [Required]\n2. `DATADOG_GET_TRACE_BY_ID` - Get a specific distributed trace [Optional]\n\n**Key parameters**:\n- `filter`: Host search filter string\n- `sort_field`: Sort hosts by field (e.g., 'name', 'apps', 'cpu')\n- `sort_dir`: Sort direction ('asc' or 'desc')\n- `trace_id`: Distributed trace ID for trace lookup\n\n**Pitfalls**:\n- Host list includes all hosts reporting to Datadog within the retention window\n- Trace IDs are long numeric strings; ensure exact match\n- Hosts that stop reporting are retained for a configured period before removal\n\n## Common Patterns\n\n### Monitor Query Syntax\n\n**Metric alerts**:\n```\navg(last_5m):avg:system.cpu.user{env:prod} > 90\n```\n\n**Log alerts**:\n```\nlogs(\"service:web status:error\").index(\"main\").rollup(\"count\").last(\"5m\") > 10\n```\n\n### Tag Filtering\n\n- Tags use `key:value` format: `host:web01`, `env:prod`, `service:api`\n- Multiple tags: `{host:web01,env:prod}` (AND logic)\n- Wildcard: `host:web*`\n\n### Pagination\n\n- Use `page` and `page_size` or offset-based pagination depending on endpoint\n- Check response for total count to determine if more pages exist\n- Continue until all results are retrieved\n\n## Known Pitfalls\n\n**Timestamps**:\n- Most endpoints use Unix epoch seconds (not milliseconds)\n- Some endpoints accept ISO 8601; check tool schema\n- Time ranges should be reasonable (not years of data)\n\n**Query Syntax**:\n- Metric queries: `aggregation:metric{tags}`\n- Log queries: `field:value` pairs\n- Monitor queries vary by type; check Datadog documentation\n\n**Rate Limits**:\n- Datadog API has per-endpoint rate limits\n- Implement backoff on 429 responses\n- Batch operations where possible\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| Query metrics | DATADOG_QUERY_METRICS | query, from, to |\n| List metrics | DATADOG_LIST_METRICS | q |\n| Search logs | DATADOG_SEARCH_LOGS | query, from, to, limit |\n| List log indexes | DATADOG_LIST_LOG_INDEXES | (none) |\n| List monitors | DATADOG_LIST_MONITORS | tags |\n| Get monitor | DATADOG_GET_MONITOR | monitor_id |\n| Create monitor | DATADOG_CREATE_MONITOR | name, type, query, message |\n| Update monitor | DATADOG_UPDATE_MONITOR | monitor_id |\n| Mute monitor | DATADOG_MUTE_MONITOR | monitor_id |\n| Unmute monitor | DATADOG_UNMUTE_MONITOR | monitor_id |\n| List dashboards | DATADOG_LIST_DASHBOARDS | (none) |\n| Get dashboard | DATADOG_GET_DASHBOARD | dashboard_id |\n| Update dashboard | DATADOG_UPDATE_DASHBOARD | dashboard_id, title, widgets |\n| Delete dashboard | DATADOG_DELETE_DASHBOARD | dashboard_id |\n| List events | DATADOG_LIST_EVENTS | start, end |\n| Create event | DATADOG_CREATE_EVENT | title, text, alert_type |\n| Create downtime | DATADOG_CREATE_DOWNTIME | scope, start, end |\n| List hosts | DATADOG_LIST_HOSTS | filter, sort_field |\n| Get trace | DATADOG_GET_TRACE_BY_ID | trace_id |\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":["datadog","automation","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-datadog-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/datadog-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 · 34831 github stars · SKILL.md body (9,388 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-24T06:51:01.581Z","embedding":null,"createdAt":"2026-04-18T21:35:43.761Z","updatedAt":"2026-04-24T06:51:01.581Z","lastSeenAt":"2026-04-24T06:51:01.581Z","tsv":"'/mcp':85 '1':105,152,172,295,417,585,712,871 '10':986 '2':117,181,275,305,427,593,720,880 '3':125,400,436,602,729 '4':140,445,568,612 '429':1103 '5':453,692 '5m':967,985 '6':462,851 '8601':331,339,1057 '90':972 'abc':656 'abc-def-ghi':655 'accept':1055 'action':1272 'activ':57,130,145 'add':82,99 'aggreg':230,247,1074 'alert':488,492,494,501,514,751,964,974,1233 'alphanumer':652 'alway':21,67,830 'analyz':278 'api':95,999,1093 'app':907 'appli':846 'applic':1266 'array':509,640,760 'asc':346,913 'ask':1310 'auth':134 'authent':139 'autom':3,4,29,33 'avail':56,110,168,177,301 'avg':199,248,965,968 'backoff':1101 'base':804,1020 'batch':1105 'bodi':747 'boundari':1318 'brace':257 'call':68,118 'cannot':663 'caus':529 'chang':665 'channel':540 'check':385,490,1025,1058,1087 'clarif':1312 'clear':1285 'client':92 'common':958 'complet':137 'complex':675 'composio':10,40 'condit':502 'configur':93,377,451,954 'confirm':112,141 'connect':52,59,63,121,127,142 'continu':1036 'control':391 'core':150 'count':252,983,1029 'cpu':908 'creat':17,409,438,440,693,722,731,826,1160,1163,1226,1229,1235,1238 'creation':530,667 'criteria':1321 'critic':517,550 'cur':256 'current':26,75 'cursor/page':387 'dashboard':570,582,588,591,596,599,605,607,615,618,623,625,629,646,649,671,680,1191,1194,1197,1200,1201,1204,1207,1208,1213,1216,1217 'data':165,189,1069 'datadog':2,5,28,34,42,58,66,124,138,173,182,194,225,267,296,306,323,360,418,428,437,446,454,463,586,594,603,613,713,721,730,809,872,881,932,1088,1092,1118,1126,1132,1142,1149,1155,1162,1171,1178,1185,1192,1198,1205,1214,1221,1228,1237,1245,1253 'datadog-autom':1 'def':657 'defin':499 'definit':600,643,673 'delet':581,614,685,1212,1215 'depend':1022 'desc':348,915 'describ':1273,1289 'descript':645,647,792 'detail':434 'determin':1031 'dir':910 'direct':912 'display':482 'distribut':867,889,918 'document':1089 'downtim':20,697,709,732,736,767,773,791,798,815,829,837,1236,1239 'e.g':198,537,654,774,905 'enabl':468 'end':210,336,782,783,825,833,1225,1242 'endpoint':101,1024,1046,1054,1097 'ensur':943 'entri':288,353 'env':260,822,970,996,1004 'environ':1301 'environment-specif':1300 'epoch':207,213,240,781,786,1049 'error':368,755,979 'etc':495 'evalu':562 'event':18,694,705,715,718,723,727,741,743,746,753,806,1220,1223,1227,1230 'exact':944 'exceed':266 'execut':1268 'exist':679,717,1035 'expert':1306 'explor':155 'failur':531 'field':900,904,1079,1250 'filter':234,254,314,395,425,894,897,988,1248 'first':24,72,681 'follow':131,224 'format':229,812,993 'free':636 'freeform':637 'full':598 'get':74,79,429,431,595,597,678,882,886,1153,1156,1196,1199,1251,1254 'ghi':658 'grid':634 'host':201,258,775,820,853,864,874,878,895,902,925,929,946,994,1002,1009,1244,1247 'id':476,479,564,624,650,794,839,885,917,920,938,1159,1175,1182,1189,1202,1209,1218,1257,1259 'identifi':626 'implement':1100 'includ':813,927 'indefinit':789,828 'index':292,299,303,390,397,980,1141,1145 'info':757 'infrastructur':863 'input':1315 'inspect':413,866 'integ':567 'irrevers':619 'iso':330,338,1056 'key':96,191,316,473,621,738,764,892,991,1114 'known':399,1042 'larg':380 'last':966,984 'layout':608,631,661 'limit':270,349,371,1091,1099,1138,1277 'link':135 'list':167,174,176,219,290,297,300,419,421,577,587,589,714,716,862,873,875,926,1124,1127,1139,1143,1147,1150,1190,1193,1219,1222,1243,1246 'log':14,279,287,291,298,302,308,310,319,324,352,357,362,374,389,491,973,975,1077,1131,1134,1140,1144 'logic':1007 'long':940 'lookup':923 'main':981 'mainten':708,735,836 'manag':15,62,120,401,569,696,852 'markdown':750,811 'match':524,849,945,1286 'max':251 'mcp':9,32,46,49,81,88,108 'mention':507,534,814 'messag':503,505,532,790,1168 'metric':12,156,164,169,175,178,184,186,195,220,227,231,273,487,547,963,1072,1075,1117,1120,1125,1128 'millisecond':245,1052 'min':250 'minimum':552 'mismatch':528 'miss':1323 'monitor':35,402,414,420,423,430,433,439,443,448,450,456,459,465,471,475,478,481,485,497,521,545,548,555,560,563,793,796,838,844,850,960,1082,1148,1151,1154,1157,1158,1161,1164,1170,1173,1174,1177,1180,1181,1184,1187,1188 'monitors/dashboards':16 'multipl':1000 'must':50,523,668 'mute':411,455,470,553,1176,1179 'name':179,232,480,483,906,1165 'narrow':840 'need':97,549 'nest':676 'new':442,726 'none':1146,1195 'notif':504,536,557 'number':350 'numer':477,566,660,941 'object':644,677 'observ':37 'offset':1019 'offset-bas':1018 'ok':519 'omit':787,800,824 'oper':38,1106 'option':180,304,435,444,452,461,472,601,611,620,719,737,799,891 'order':345,633 'output':1295 'overview':1276 'page':1013,1015,1034 'pagerduti':541 'pagin':384,1011,1021 'pair':1081 'param':1115 'paramet':192,317,474,622,739,765,893 'pattern':959 'per':1096 'per-endpoint':1095 'period':379,955 'perman':687 'permiss':1316 'pitfal':221,356,520,648,805,924,1043 'posit':638 'possibl':1108 'post':704,724 'prerequisit':47 'prod':261,971,997,1005 'q':215,1129 'queri':11,153,163,183,185,193,196,222,228,312,318,321,325,358,493,496,498,526,961,1070,1073,1078,1083,1116,1119,1121,1135,1167 'quick':1109 'rang':263,1062 'rate':1090,1098 're':467 're-en':466 'reason':1065 'recreat':669 'refer':1110 'remov':616,957 'report':877,930,949 'requir':190,315,383,426,592,728,879,1314 'respond':116 'respons':1026,1104 'result':381,1039 'retain':373,951 'retent':269,378,394,935 'retriev':1041 'return':133,355 'review':1307 'rollup':982 'rout':392 'rube':8,31,45,48,53,61,69,80,107,113,119 'rube.app':84 'rube.app/mcp':83 'run':147 'safeti':1317 'schedul':707,733 'schema':27,77,1060 'scope':768,770,803,816,845,1240,1288 'scope-bas':802 'search':13,22,54,70,114,216,276,286,307,309,320,363,369,896,1130,1133 'second':208,214,243,1050 'sequenc':171,294,416,584,711,870 'seri':188 'server':89 'servic':365,489,976,998 'set':382,831 'setup':78 'sever':754 'show':144 'silenc':457 'singl':843 'size':1016 'skill':1264,1280 'skill-datadog-automation' 'slack':539 'slack-channel':538 'slug':1113 'sort':343,344,899,901,909,911,1249 'source-sickn33' 'specif':432,795,888,1302 'stage':823 'start':204,328,777,778,1224,1241 'status':143,367,978 'still':561 'stop':948,1308 'string':197,217,512,627,653,763,898,942 'structur':684 'substitut':1298 'success':758,1320 'sum':249 'support':533,749,808 'suppress':556 'syntax':223,326,364,819,962,1071 'system.cpu.user':200,969 'tag':233,253,508,511,759,762,769,818,987,989,1001,1076,1152 'task':6,1111,1284 'temporarili':460 'test':1304 'text':745,748,807,1232 'threshold':513,515,542 'time':187,262,329,337,779,784,834,1061 'timestamp':205,211,241,334,342,1044 'titl':628,630,742,744,1210,1231 'token':388 'tool':23,55,71,76,115,170,293,415,583,710,869,1059,1112 'toolkit':43,65,123 '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' 'total':1028 'trace':855,868,883,890,916,919,922,937,1252,1255,1258 'treat':1293 'type':274,484,486,522,527,546,632,662,752,1086,1166,1234 'understand':683 'undo':691 'unix':206,212,239,333,341,780,785,1048 'unmut':464,1183,1186 'updat':410,447,449,579,604,606,1169,1172,1203,1206 'use':159,255,282,322,359,405,573,700,817,858,990,1012,1047,1262,1278 'user':160,283,406,574,701,859 'valid':246,1303 'valu':516,992,1080 'vari':543,1084 'verifi':106 'via':7,30,44,60 'view':578 'want':161,284,407,575,702,860 'warn':518,756 'web':366,977,1010 'web01':202,259,776,821,995,1003 'widget':610,639,642,672,1211 'wildcard':1008 'window':936 'within':375,933 'work':104 'workflow':149,151,1270 'year':1067","prices":[{"id":"a8d8d6ec-6d02-41d0-a9c8-61eabc5086a8","listingId":"1dd15a46-5e80-481d-b161-12f77259e687","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:35:43.761Z"}],"sources":[{"listingId":"1dd15a46-5e80-481d-b161-12f77259e687","source":"github","sourceId":"sickn33/antigravity-awesome-skills/datadog-automation","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/datadog-automation","isPrimary":false,"firstSeenAt":"2026-04-18T21:35:43.761Z","lastSeenAt":"2026-04-24T06:51:01.581Z"}],"details":{"listingId":"1dd15a46-5e80-481d-b161-12f77259e687","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"datadog-automation","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34831,"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-24T06:41:17Z","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":"ce8435e4b488d0fdf6ab1bae11a391f1302a2b3b","skill_md_path":"skills/datadog-automation/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/datadog-automation"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"datadog-automation","description":"Automate Datadog tasks via Rube MCP (Composio): query metrics, search logs, manage monitors/dashboards, create events and downtimes. Always search tools first for current schemas."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/datadog-automation"},"updatedAt":"2026-04-24T06:51:01.581Z"}}