{"id":"4d5341b1-0f3f-46e9-8c5a-a08ce13062ec","shortId":"ayEgvM","kind":"skill","title":"monte-carlo-prevent","tagline":"Surfaces Monte Carlo data observability context (table health, alerts, lineage, blast radius) before SQL/dbt edits.","description":"# Monte Carlo Prevent Skill\n\nThis skill brings Monte Carlo's data observability context directly into your editor. When you're modifying a dbt model or SQL pipeline, use it to surface table health, lineage, active alerts, and to generate monitors-as-code without leaving Claude Code.\n\nReference files live next to this skill file. **Use the Read tool** (not MCP resources) to access them:\n\n- Full workflow step-by-step instructions: `references/workflows.md` (relative to this file)\n- MCP parameter details: `references/parameters.md` (relative to this file)\n- Troubleshooting: `references/TROUBLESHOOTING.md` (relative to this file)\n\n## When to activate this skill\n\n**Do not wait to be asked.** Run the appropriate workflow automatically whenever the user:\n\n- References or opens a `.sql` file or dbt model (files in `models/`) → run Workflow 1\n- Mentions a table name, dataset, or dbt model name in passing → run Workflow 1\n\n- Describes a planned change to a model (new column, join update, filter change, refactor) → **STOP — run Workflow 4 before writing any code**\n-\n- Adds a new column, metric, or output expression to an existing\n  model → run Workflow 4 first, then ALWAYS offer Workflow 2\n  regardless of risk tier — do not skip the monitor offer\n- Asks about data quality, freshness, row counts, or anomalies → run Workflow 1\n- Wants to triage or respond to a data quality alert → run Workflow 3\n\nPresent the results as context the engineer needs before proceeding — not as a response to a question.\n\n## When NOT to activate this skill\n\nDo not invoke Monte Carlo tools for:\n\n- Seed files (files in seeds/ directory)\n- Analysis files (files in analyses/ directory)\n- One-off or ad-hoc SQL scripts not part of a dbt project\n- Configuration files (dbt_project.yml, profiles.yml, packages.yml)\n- Test files unless the user is specifically asking about data quality\n\nIf uncertain whether a file is a dbt model, check for {{ ref() }} or {{ source() }}\nJinja references — if absent, do not activate.\n\n### Macros and snapshots — gate edits, skip auto-context\n\nMacro files (`macros/`) and snapshot files (`snapshots/`) are **not** models, so\ndo not auto-fetch Monte Carlo context (Workflow 1) when they are opened. However,\nmacros are inlined into every model that calls them at compile time — a one-line\nmacro change can silently alter dozens of models. Snapshots control historical\ntracking and are similarly sensitive.\n\n**The pre-edit hook gates these files.** If the hook fires for a macro or snapshot,\nidentify which models are affected and run the change impact assessment (Workflow 4)\nfor those models before proceeding with the edit.\n\n---\n\n## REQUIRED: Change impact assessment before any SQL edit\n\n**Before editing or writing any SQL for a dbt model or pipeline, you MUST run Workflow 4.**\n\nThis applies whenever the user expresses intent to modify a model — including phrases like:\n\n- \"I want to add a column…\"\n- \"Let me add / I'm adding…\"\n- \"I'd like to change / update / rename…\"\n- \"Can you add / modify / refactor…\"\n- \"Let's add…\" / \"Add a `<column>` column\"\n- Any other description of a planned schema or logic change\n- \"Exclude / filter out / remove [records/customers/rows]…\"\n- \"Adjust / increase / decrease [threshold/parameter/value]…\"\n- \"Fix / bugfix / patch [issue/bug]…\"\n- \"Revert / restore / undo [change/previous behavior]…\"\n- \"Disable / enable [feature/logic/flag]…\"\n- \"Clean up / remove [references/columns/code]…\"\n- \"Implement [backend/feature] for…\"\n- \"Create [models/dbt models] for…\" (when modifying existing referenced tables)\n- \"Increase / decrease / change [max_tokens/threshold/date constant/numeric parameter]…\"\n- Any change to a hardcoded value, constant, or configuration parameter within SQL\n- \"Drop / remove / delete [column/field/table]\"\n- \"Rename [column/field] to [new name]\"\n- \"Add [column]\" (short imperative form, e.g. \"add a created_at column\")\n- Any single-verb imperative command targeting a column, table, or model\n  (e.g. \"drop X\", \"rename Y\", \"add Z\", \"remove W\")\n\nParameter changes (threshold values, date constants, numeric limits) appear\nsafe but silently change model output. Treat them the same as logic changes\nfor impact assessment purposes.\n\n**Do not write or edit any SQL until the change impact assessment (Workflow 4) has been presented to the user.** The assessment must come first — not after the edit, not in parallel.\n\n---\n\n## Pre-edit gate — check before modifying any file\n\n**Before calling Edit, Write, or MultiEdit on any `.sql` or dbt model\nfile, you MUST check:**\n\n1. Has the synthesis step been run for THIS SPECIFIC CHANGE in the\n   current prompt?\n2. **If YES** → proceed with the edit\n3. **If NO** → stop immediately, run Workflow 4, present the full\n   report with synthesis connected to this specific change.\n   **If risk is High or Medium:** ask \"Do you want me to proceed\n   with the edit?\" and wait for explicit confirmation.\n   **If risk is Low:** use judgment — proceed if straightforward\n   and no concerns found, otherwise ask before editing.\n\n**Important: \"Workflow 4 already ran this session\" is NOT sufficient\nto proceed.** Each distinct change prompt requires its own synthesis\nstep connecting the MC findings to that specific change.\n\nThe synthesis must reference the specific columns, filters, or logic\nbeing changed in the current prompt — not just general table health.\n\nExample:\n\n- ✅ \"Given 34 downstream models depend on is_paying_workspace,\n  adding 'MC Internal' to the exclusion list will exclude these\n  workspaces from all downstream health scores and exports.\n  Confirm?\"\n- ❌ \"Workflow 4 already ran. Making the edit now.\"\n\nThe only exception: if the user explicitly acknowledges the risk\nand confirms they want to skip (e.g. \"I know the risks, just make\nthe change\") — proceed but note the skipped assessment.\n\n## Available MCP tools\n\nAll tools are available via the `monte-carlo` MCP server.\n\n| Tool                         | Purpose                                                              |\n| ---------------------------- | -------------------------------------------------------------------- |\n| `testConnection`             | Verify auth and connectivity                                         |\n| `search`                     | Find tables/assets by name                                           |\n| `getTable`                   | Schema, stats, metadata for a table                                  |\n| `getAssetLineage`            | Upstream/downstream dependencies (call with mcons array + direction) |\n| `getAlerts`                  | Active incidents and alerts                                          |\n| `getMonitors`                | Monitor configs — filter by table using mcons array                  |\n| `getQueriesForTable`         | Recent query history                                                 |\n| `getQueryData`               | Full SQL for a specific query                                        |\n| `createValidationMonitorMac` | Generate validation monitors-as-code YAML                            |\n| `createMetricMonitorMac`     | Generate metric monitors-as-code YAML                                |\n| `createComparisonMonitorMac` | Generate comparison monitors-as-code YAML                            |\n| `createCustomSqlMonitorMac`  | Generate custom SQL monitors-as-code YAML                            |\n| `getValidationPredicates`    | List available validation rule types                                 |\n| `updateAlert`                | Update alert status/severity                                         |\n| `setAlertOwner`              | Assign alert ownership                                               |\n| `createOrUpdateAlertComment` | Add comments to alerts                                               |\n| `getAudiences`               | List notification audiences                                          |\n| `getDomains`                 | List MC domains                                                      |\n| `getUser`                    | Current user info                                                    |\n| `getCurrentTime`             | ISO timestamp for API calls                                          |\n\n## Core workflows\n\nEach workflow has detailed step-by-step instructions in `references/workflows.md` (Read tool).\n\n### 1. Table health check\n\n**When:** User opens a dbt model or mentions a table.\n**What:** Surfaces health, lineage, alerts, and risk signals. Auto-escalates to Workflow 4 if change intent is detected and risk signals are present.\n\n### 2. Add a monitor\n\n**When:** New column, filter, or business rule is added to a model.\n**What:** Suggests and generates monitors-as-code YAML using the appropriate `create*MonitorMac` tool. Saves to `monitors/<table_name>.yml`.\n\n### 3. Alert triage\n\n**When:** User is investigating an active data quality incident.\n**What:** Lists open alerts, checks table state, traces lineage for root cause, reviews recent queries.\n\n### 4. Change impact assessment — REQUIRED before modifying a model\n\n**When:** Any intent to modify a dbt model's logic, columns, joins, or filters.\n**What:** Surfaces blast radius, downstream dependencies, active incidents, monitor coverage, and query exposure. Produces a risk-tiered report with synthesis connecting findings to specific code recommendations. See `references/workflows.md` for the full assessment sequence, report format, and synthesis rules.\n\n### 5. Change validation queries\n\n**When:** Explicit engineer request only (e.g. \"validate this change\", \"ready to commit\").\n**What:** Generates 3-5 targeted SQL queries to verify the change behaved as intended. Uses Workflow 4 context — requires both impact assessment and file edit in session.\n\n---\n\n## Post-synthesis confirmation rules\n\nAlways end the synthesis with one clear, specific recommendation in plain English:\n\"Given the above, I recommend: [specific action]\"\n\n**If the risk is High or Medium:** STOP and wait for confirmation before editing\nany file. You must ask the engineer and receive an explicit \"yes\", \"go ahead\",\n\"proceed\", or similar confirmation before making code changes.\nSay: \"Do you want me to proceed with the edit?\"\nDo NOT say: \"Proceeding with the edit.\" — that skips the engineer's decision.\n\n**If the risk is Low:** Use your judgment based on the synthesis findings. If\nthe change is straightforward and the synthesis found no concerns, you may\nproceed. If anything is surprising or worth flagging, ask before editing.\n\n---\n\n## Session markers\n\nThese markers coordinate between the skill and the plugin's hooks. Output each\non its own line when the condition is met.\n\n### Impact check complete\n\nAfter the engineer confirms (High/Medium) or after presenting the synthesis (Low),\noutput one marker per assessed table. **IMPORTANT: use only the table/model name, not the full MCON:**\n\n<!-- MC_IMPACT_CHECK_COMPLETE: <table_name> -->\n\n(Use the model filename without .sql extension — NOT \"acme.analytics.orders\" or \"prod.public.client_hub\")\n\nHow many markers to emit depends on how the assessment was triggered:\n\n**Hook-triggered** (the pre-edit hook blocked an edit and instructed you to run\nthe assessment): Be strict — only emit markers for tables whose lineage **and**\nmonitor coverage were fetched directly via Monte Carlo tools in this session. If\nthe engineer describes changes to multiple tables but only one was formally\nassessed, emit only one marker. The pre-edit hook will gate the other tables and\nprompt for their own Workflow 4 runs.\n\n**Voluntarily invoked** (the engineer proactively asked for an impact assessment):\nBe looser — emit markers for all tables the assessment meaningfully covered, even\nif some were assessed via lineage context rather than direct MC tool calls. The\nengineer is already safety-conscious; don't force redundant assessments for tables\nthey clearly considered.\n\n### Monitor coverage gap\n\nWhen Workflow 4 finds zero custom monitors on a table's affected columns, output:\n\n<!-- MC_MONITOR_GAP: <table_name> -->\n\nUse only the table/model name (NOT the full MCON). This allows the plugin's hooks\nto remind the engineer about monitor coverage at commit time. Only output this\nmarker when the gap is specifically about the columns or logic being changed —\nnot for general table-level monitor absence.\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":["monte","carlo","prevent","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding"],"capabilities":["skill","source-sickn33","skill-monte-carlo-prevent","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/monte-carlo-prevent","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 · 34666 github stars · SKILL.md body (12,601 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-23T06:51:35.471Z","embedding":null,"createdAt":"2026-04-18T21:41:01.464Z","updatedAt":"2026-04-23T06:51:35.471Z","lastSeenAt":"2026-04-23T06:51:35.471Z","tsv":"'-5':1224 '1':144,158,223,360,695,1043 '2':201,710,1081 '3':236,717,1116,1223 '34':826 '4':176,195,427,460,651,724,776,854,1070,1143,1237,1520,1579 '5':1205 'absenc':1639 'absent':327 'access':83 'acknowledg':868 'acme.analytics.orders':1430 'action':1271 'activ':54,113,257,330,934,1124,1172 'ad':284,486,834,1093 'ad-hoc':283 'add':181,478,483,496,501,502,580,586,608,1006,1082 'adjust':520 'affect':419,1588 'ahead':1299 'alert':13,55,233,937,999,1003,1009,1061,1117,1131 'allow':1601 'alreadi':777,855,1560 'alter':386 'alway':198,1253 'analys':277 'analysi':273 'anomali':220 'anyth':1359 'api':1026 'appear':620 'appli':462 'appropri':124,1108 'array':931,946 'ask':121,212,306,742,771,1290,1365,1527,1673 'assess':425,439,636,649,659,891,1146,1198,1242,1410,1443,1463,1499,1531,1540,1547,1568 'assign':1002 'audienc':1013 'auth':910 'auto':338,354,1066 'auto-context':337 'auto-escal':1065 'auto-fetch':353 'automat':126 'avail':892,898,993 'backend/feature':541 'base':1339 'behav':1232 'behavior':532 'blast':15,1168 'block':1454 'boundari':1681 'bring':26 'bugfix':525 'busi':1090 'call':373,680,928,1027,1556 'carlo':3,7,21,28,264,357,903,1481 'caus':1139 'chang':162,171,383,423,437,491,514,554,560,613,624,633,647,705,735,788,802,814,885,1072,1144,1206,1217,1231,1307,1346,1490,1631 'change/previous':531 'check':319,674,694,1046,1132,1393 'clarif':1675 'claud':65 'clean':536 'clear':1259,1572,1648 'code':62,66,180,964,972,980,989,1104,1191,1306 'column':167,184,480,504,581,590,599,809,1087,1162,1589,1627 'column/field':576 'column/field/table':574 'come':661 'command':596 'comment':1007 'commit':1220,1614 'comparison':976 'compil':376 'complet':1394 'concern':768,1354 'condit':1389 'config':940 'configur':294,567 'confirm':756,852,872,1251,1283,1303,1398 'connect':731,795,912,1187 'conscious':1563 'consid':1573 'constant':565,617 'constant/numeric':557 'context':10,32,241,339,358,1238,1550 'control':391 'coordin':1372 'core':1028 'count':218 'cover':1542 'coverag':1175,1475,1575,1612 'creat':543,588,1109 'createcomparisonmonitormac':974 'createcustomsqlmonitormac':982 'createmetricmonitormac':966 'createorupdatealertcom':1005 'createvalidationmonitormac':958 'criteria':1684 'current':708,817,1019 'custom':984,1582 'd':488 'data':8,30,214,231,308,1125 'dataset':149 'date':616 'dbt':42,137,151,292,317,452,689,1051,1158 'dbt_project.yml':296 'decis':1330 'decreas':522,553 'delet':573 'depend':829,927,1171,1439 'describ':159,1489,1652 'descript':507 'detail':99,1033 'detect':1075 'direct':33,932,1478,1553 'directori':272,278 'disabl':533 'distinct':787 'domain':1017 'downstream':827,847,1170 'dozen':387 'drop':571,604 'e.g':585,603,877,1214 'edit':19,335,401,435,443,445,642,666,672,681,716,751,773,859,1245,1285,1317,1324,1367,1452,1456,1507 'editor':36 'emit':1438,1467,1500,1534 'enabl':534 'end':1254 'engin':243,1211,1292,1328,1397,1488,1525,1558,1609 'english':1264 'environ':1664 'environment-specif':1663 'escal':1067 'even':1543 'everi':370 'exampl':824 'except':863 'exclud':515,842 'exclus':839 'exist':191,549 'expert':1669 'explicit':755,867,1210,1296 'export':851 'exposur':1178 'express':188,466 'extens':1428 'feature/logic/flag':535 'fetch':355,1477 'file':68,74,96,104,110,135,139,268,269,274,275,295,300,314,341,345,405,678,691,1244,1287 'filenam':1425 'filter':170,516,810,941,1088,1165 'find':798,914,1188,1343,1580 'fire':409 'first':196,662 'fix':524 'flag':1364 'forc':1566 'form':584 'formal':1498 'format':1201 'found':769,1352 'fresh':216 'full':85,727,952,1197,1420,1598 'gap':1576,1622 'gate':334,403,673,1510 'general':821,1634 'generat':58,959,967,975,983,1100,1222 'getalert':933 'getassetlineag':925 'getaudi':1010 'getcurrenttim':1022 'getdomain':1014 'getmonitor':938 'getqueriesfort':947 'getquerydata':951 'gettabl':918 'getus':1018 'getvalidationpred':991 'given':825,1265 'go':1298 'hardcod':563 'health':12,52,823,848,1045,1059 'high':739,1276 'high/medium':1399 'histor':392 'histori':950 'hoc':285 'hook':402,408,1380,1447,1453,1508,1605 'hook-trigg':1446 'howev':365 'hub':1433 'identifi':415 'immedi':721 'impact':424,438,635,648,1145,1241,1392,1530 'imper':583,595 'implement':540 'import':774,1412 'incid':935,1127,1173 'includ':472 'increas':521,552 'info':1021 'inlin':368 'input':1678 'instruct':91,1038,1458 'intend':1234 'intent':467,1073,1154 'intern':836 'investig':1122 'invok':262,1523 'iso':1023 'issue/bug':527 'jinja':324 'join':168,1163 'judgment':762,1338 'know':879 'leav':64 'let':481,499 'level':1637 'like':474,489 'limit':619,1640 'line':381,1386 'lineag':14,53,1060,1136,1472,1549 'list':840,992,1011,1015,1129 'live':69 'logic':513,632,812,1161,1629 'looser':1533 'low':760,1335,1405 'm':485 'macro':331,340,342,366,382,412 'make':857,883,1305 'mani':1435 'marker':1369,1371,1408,1436,1468,1503,1535,1619 'match':1649 'max':555 'may':1356 'mc':797,835,1016,1554 'mcon':930,945,1421,1599 'mcp':80,97,893,904 'meaning':1541 'medium':741,1278 'mention':145,1054 'met':1391 'metadata':921 'metric':185,968 'miss':1686 'model':43,138,141,152,165,192,318,349,371,389,417,430,453,471,545,602,625,690,828,1052,1096,1151,1159,1424 'models/dbt':544 'modifi':40,469,497,548,676,1149,1156 'monitor':60,210,939,962,970,978,987,1084,1102,1114,1174,1474,1574,1583,1611,1638 'monitormac':1110 'monitors-as-cod':59,961,969,977,986,1101 'mont':2,6,20,27,263,356,902,1480 'monte-carlo':901 'monte-carlo-prev':1 'multiedit':684 'multipl':1492 'must':457,660,693,805,1289 'name':148,153,579,917,1417,1595 'need':244 'new':166,183,578,1086 'next':70 'note':888 'notif':1012 'numer':618 'observ':9,31 'offer':199,211 'one':280,380,1258,1407,1496,1502 'one-lin':379 'one-off':279 'open':132,364,1049,1130 'otherwis':770 'output':187,626,1381,1406,1590,1617,1658 'ownership':1004 'packages.yml':298 'parallel':669 'paramet':98,558,568,612 'part':289 'pass':155 'patch':526 'pay':832 'per':1409 'permiss':1679 'phrase':473 'pipelin':46,455 'plain':1263 'plan':161,510 'plugin':1378,1603 'post':1249 'post-synthesi':1248 'pre':400,671,1451,1506 'pre-edit':399,670,1450,1505 'present':237,654,725,1080,1402 'prevent':4,22 'proactiv':1526 'proceed':246,432,713,748,763,785,886,1300,1314,1321,1357 'prod.public.client':1432 'produc':1179 'profiles.yml':297 'project':293 'prompt':709,789,818,1515 'purpos':637,907 'qualiti':215,232,309,1126 'queri':949,957,1142,1177,1208,1227 'question':253 'radius':16,1169 'ran':778,856 'rather':1551 're':39 'read':77,1041 'readi':1218 'receiv':1294 'recent':948,1141 'recommend':1192,1261,1269 'records/customers/rows':519 'redund':1567 'ref':321 'refactor':172,498 'refer':67,130,325,806 'referenc':550 'references/columns/code':539 'references/parameters.md':100 'references/troubleshooting.md':106 'references/workflows.md':92,1040,1194 'regardless':202 'relat':93,101,107 'remind':1607 'remov':518,538,572,610 'renam':493,575,606 'report':728,1184,1200 'request':1212 'requir':436,790,1147,1239,1677 'resourc':81 'respond':228 'respons':250 'restor':529 'result':239 'revert':528 'review':1140,1670 'risk':204,737,758,870,881,1063,1077,1182,1274,1333 'risk-tier':1181 'root':1138 'row':217 'rule':995,1091,1204,1252 'run':122,142,156,174,193,221,234,421,458,701,722,1461,1521 'safe':621 'safeti':1562,1680 'safety-consci':1561 'save':1112 'say':1308,1320 'schema':511,919 'scope':1651 'score':849 'script':287 'search':913 'see':1193 'seed':267,271 'sensit':397 'sequenc':1199 'server':905 'session':780,1247,1368,1485 'setalertown':1001 'short':582 'signal':1064,1078 'silent':385,623 'similar':396,1302 'singl':593 'single-verb':592 'skill':23,25,73,115,259,1375,1643 'skill-monte-carlo-prevent' 'skip':208,336,876,890,1326 'snapshot':333,344,346,390,414 'sourc':323 'source-sickn33' 'specif':305,704,734,801,808,956,1190,1260,1270,1624,1665 'sql':45,134,286,442,449,570,644,687,953,985,1226,1427 'sql/dbt':18 'stat':920 'state':1134 'status/severity':1000 'step':88,90,699,794,1035,1037 'step-by-step':87,1034 'stop':173,720,1279,1671 'straightforward':765,1348 'strict':1465 'substitut':1661 'success':1683 'suffici':783 'suggest':1098 'surfac':5,50,1058,1167 'surpris':1361 'synthesi':698,730,793,804,1186,1203,1250,1256,1342,1351,1404 'tabl':11,51,147,551,600,822,924,943,1044,1056,1133,1411,1470,1493,1513,1538,1570,1586,1636 'table-level':1635 'table/model':1416,1594 'tables/assets':915 'target':597,1225 'task':1647 'test':299,1667 'testconnect':908 'threshold':614 'threshold/parameter/value':523 'tier':205,1183 'time':377,1615 'timestamp':1024 'tokens/threshold/date':556 'tool':78,265,894,896,906,1042,1111,1482,1555 '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':1135 'track':393 'treat':627,1656 'triag':226,1118 'trigger':1445,1448 'troubleshoot':105 'type':996 'uncertain':311 'undo':530 'unless':301 'updat':169,492,998 'updatealert':997 'upstream/downstream':926 'use':47,75,761,944,1106,1235,1336,1413,1422,1591,1641 'user':129,303,465,657,866,1020,1048,1120 'valid':960,994,1207,1215,1666 'valu':564,615 'verb':594 'verifi':909,1229 'via':899,1479,1548 'voluntarili':1522 'w':611 'wait':118,753,1281 'want':224,476,745,874,1311 'whenev':127,463 'whether':312 'whose':1471 'within':569 'without':63,1426 'workflow':86,125,143,157,175,194,200,222,235,359,426,459,650,723,775,853,1029,1031,1069,1236,1519,1578 'workspac':833,844 'worth':1363 'write':178,447,640,682 'x':605 'y':607 'yaml':965,973,981,990,1105 'yes':712,1297 'yml':1115 'z':609 'zero':1581","prices":[{"id":"a21fcf63-6cc3-40ee-b2bb-d4a2fcf0644d","listingId":"4d5341b1-0f3f-46e9-8c5a-a08ce13062ec","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:41:01.464Z"}],"sources":[{"listingId":"4d5341b1-0f3f-46e9-8c5a-a08ce13062ec","source":"github","sourceId":"sickn33/antigravity-awesome-skills/monte-carlo-prevent","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/monte-carlo-prevent","isPrimary":false,"firstSeenAt":"2026-04-18T21:41:01.464Z","lastSeenAt":"2026-04-23T06:51:35.471Z"}],"details":{"listingId":"4d5341b1-0f3f-46e9-8c5a-a08ce13062ec","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"monte-carlo-prevent","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34666,"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-23T06:41:03Z","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":"3c3ac0e3b2b888bda274f966b4ae5ed0643b5295","skill_md_path":"skills/monte-carlo-prevent/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/monte-carlo-prevent"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"monte-carlo-prevent","description":"Surfaces Monte Carlo data observability context (table health, alerts, lineage, blast radius) before SQL/dbt edits."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/monte-carlo-prevent"},"updatedAt":"2026-04-23T06:51:35.471Z"}}