{"id":"71bb56a6-16aa-4f2b-a324-fd6a7c5f4e0b","shortId":"6Y54Nn","kind":"skill","title":"monday-automation","tagline":"Automate Monday.com work management including boards, items, columns, groups, subitems, and updates via Rube MCP (Composio). Always search tools first for current schemas.","description":"# Monday.com Automation via Rube MCP\n\nAutomate Monday.com work management workflows including board creation, item management, column value updates, group organization, subitems, and update/comment threads through Composio's Monday toolkit.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Monday.com connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `monday`\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\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `monday`\n3. If connection is not ACTIVE, follow the returned auth link to complete Monday.com OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Create and Manage Boards\n\n**When to use**: User wants to create a new board, list existing boards, or set up workspace structure.\n\n**Tool sequence**:\n1. `MONDAY_GET_WORKSPACES` - List available workspaces and resolve workspace ID [Prerequisite]\n2. `MONDAY_LIST_BOARDS` - List existing boards to check for duplicates [Optional]\n3. `MONDAY_CREATE_BOARD` - Create a new board with name, kind, and workspace [Required]\n4. `MONDAY_CREATE_COLUMN` - Add columns to the new board [Optional]\n5. `MONDAY_CREATE_GROUP` - Add groups to organize items [Optional]\n6. `MONDAY_BOARDS` - Retrieve detailed board metadata [Optional]\n\n**Key parameters**:\n- `board_name`: Name for the new board (required)\n- `board_kind`: \"public\", \"private\", or \"share\" (required)\n- `workspace_id`: Numeric workspace ID; omit for default workspace\n- `folder_id`: Folder ID; must be within `workspace_id` if both provided\n- `template_id`: ID of accessible template to clone\n\n**Pitfalls**:\n- `board_kind` is required and must be one of: \"public\", \"private\", \"share\"\n- If both `workspace_id` and `folder_id` are provided, the folder must exist within that workspace\n- `template_id` must reference a template the authenticated user can access\n- Board IDs are large integers; always use the exact value from API responses\n\n### 2. Create and Manage Items\n\n**When to use**: User wants to add tasks/items to a board, list existing items, or move items between groups.\n\n**Tool sequence**:\n1. `MONDAY_LIST_BOARDS` - Resolve board name to board ID [Prerequisite]\n2. `MONDAY_LIST_GROUPS` - List groups on the board to get group_id [Prerequisite]\n3. `MONDAY_LIST_COLUMNS` - Get column IDs and types for setting values [Prerequisite]\n4. `MONDAY_CREATE_ITEM` - Create a new item with name and column values [Required]\n5. `MONDAY_LIST_BOARD_ITEMS` - List all items on the board [Optional]\n6. `MONDAY_MOVE_ITEM_TO_GROUP` - Move an item to a different group [Optional]\n7. `MONDAY_ITEMS_PAGE` - Paginated item retrieval with filtering [Optional]\n\n**Key parameters**:\n- `board_id`: Board ID (required, integer)\n- `item_name`: Item name, max 256 characters (required)\n- `group_id`: Group ID string to place the item in (optional)\n- `column_values`: JSON object or string mapping column IDs to values\n\n**Pitfalls**:\n- `column_values` must use column IDs (not titles); get them from `MONDAY_LIST_COLUMNS`\n- Column value formats vary by type: status uses `{\"index\": 0}` or `{\"label\": \"Done\"}`, date uses `{\"date\": \"YYYY-MM-DD\"}`, people uses `{\"personsAndTeams\": [{\"id\": 123, \"kind\": \"person\"}]}`\n- `item_name` has a 256-character maximum\n- Subitem boards are NOT supported by `MONDAY_CREATE_ITEM`; use GraphQL via `MONDAY_CREATE_OBJECT`\n\n### 3. Update Item Column Values\n\n**When to use**: User wants to change status, date, text, or other column values on existing items.\n\n**Tool sequence**:\n1. `MONDAY_LIST_COLUMNS` or `MONDAY_COLUMNS` - Get column IDs and types [Prerequisite]\n2. `MONDAY_LIST_BOARD_ITEMS` or `MONDAY_ITEMS_PAGE` - Find the target item ID [Prerequisite]\n3. `MONDAY_CHANGE_SIMPLE_COLUMN_VALUE` - Update text, status, or dropdown with a string value [Required]\n4. `MONDAY_UPDATE_ITEM` - Update complex column types (timeline, people, date) with JSON [Required]\n\n**Key parameters for MONDAY_CHANGE_SIMPLE_COLUMN_VALUE**:\n- `board_id`: Board ID (integer, required)\n- `item_id`: Item ID (integer, required)\n- `column_id`: Column ID string (required)\n- `value`: Simple string value (e.g., \"Done\", \"Working on it\")\n- `create_labels_if_missing`: true to auto-create status/dropdown labels (default true)\n\n**Key parameters for MONDAY_UPDATE_ITEM**:\n- `board_id`: Board ID (integer, required)\n- `item_id`: Item ID (integer, required)\n- `column_id`: Column ID string (required)\n- `value`: JSON object matching the column type schema\n- `create_labels_if_missing`: false by default; set true for status/dropdown\n\n**Pitfalls**:\n- Use `MONDAY_CHANGE_SIMPLE_COLUMN_VALUE` for simple text/status/dropdown updates (string value)\n- Use `MONDAY_UPDATE_ITEM` for complex types like timeline, people, date (JSON value)\n- Column IDs are lowercase strings with underscores (e.g., \"status_1\", \"date_2\", \"text\"); get them from `MONDAY_LIST_COLUMNS`\n- Status values can be set by label name (\"Done\") or index number (\"1\")\n- `create_labels_if_missing` defaults differ: true for CHANGE_SIMPLE, false for UPDATE_ITEM\n\n### 4. Work with Groups and Board Structure\n\n**When to use**: User wants to organize items into groups, add columns, or inspect board structure.\n\n**Tool sequence**:\n1. `MONDAY_LIST_BOARDS` - Resolve board ID [Prerequisite]\n2. `MONDAY_LIST_GROUPS` - List all groups on a board [Required]\n3. `MONDAY_CREATE_GROUP` - Create a new group [Optional]\n4. `MONDAY_LIST_COLUMNS` or `MONDAY_COLUMNS` - Inspect column structure [Required]\n5. `MONDAY_CREATE_COLUMN` - Add a new column to the board [Optional]\n6. `MONDAY_MOVE_ITEM_TO_GROUP` - Reorganize items across groups [Optional]\n\n**Key parameters**:\n- `board_id`: Board ID (required for all group/column operations)\n- `group_name`: Name for new group (CREATE_GROUP)\n- `column_type`: Must be a valid GraphQL enum token in snake_case (e.g., \"status\", \"text\", \"long_text\", \"numbers\", \"date\", \"dropdown\", \"people\")\n- `title`: Column display title\n- `defaults`: JSON string for status/dropdown labels, e.g., `'{\"labels\": [\"To Do\", \"In Progress\", \"Done\"]}'`\n\n**Pitfalls**:\n- `column_type` must be exact snake_case values; \"person\" is NOT valid, use \"people\"\n- Group IDs are strings (e.g., \"topics\", \"new_group_12345\"), not integers\n- `MONDAY_COLUMNS` accepts an array of `board_ids` and returns column metadata including settings\n- `MONDAY_LIST_COLUMNS` is simpler and takes a single `board_id`\n\n### 5. Manage Subitems and Updates\n\n**When to use**: User wants to view subitems of a task or add comments/updates to items.\n\n**Tool sequence**:\n1. `MONDAY_LIST_BOARD_ITEMS` - Find parent item IDs [Prerequisite]\n2. `MONDAY_LIST_SUBITEMS_BY_PARENT` - Retrieve subitems with column values [Required]\n3. `MONDAY_CREATE_UPDATE` - Add a comment/update to an item [Optional]\n4. `MONDAY_CREATE_OBJECT` - Create subitems via GraphQL mutation [Optional]\n\n**Key parameters for MONDAY_LIST_SUBITEMS_BY_PARENT**:\n- `parent_item_ids`: Array of parent item IDs (integer array, required)\n- `include_column_values`: true to include column data (default true)\n- `include_parent_fields`: true to include parent item info (default true)\n\n**Key parameters for MONDAY_CREATE_OBJECT** (GraphQL):\n- `query`: Full GraphQL mutation string\n- `variables`: Optional variables object\n\n**Pitfalls**:\n- Subitems can only be queried through their parent items\n- To create subitems, use `MONDAY_CREATE_OBJECT` with a `create_subitem` GraphQL mutation\n- `MONDAY_CREATE_UPDATE` is for adding comments/updates to items (Monday's \"updates\" feature), not for modifying item values\n- `MONDAY_CREATE_OBJECT` is a raw GraphQL endpoint; ensure correct mutation syntax\n\n## Common Patterns\n\n### ID Resolution\nAlways resolve display names to IDs before operations:\n- **Board name -> board_id**: `MONDAY_LIST_BOARDS` and match by name\n- **Group name -> group_id**: `MONDAY_LIST_GROUPS` with `board_id`\n- **Column title -> column_id**: `MONDAY_LIST_COLUMNS` with `board_id`\n- **Workspace name -> workspace_id**: `MONDAY_GET_WORKSPACES` and match by name\n- **Item name -> item_id**: `MONDAY_LIST_BOARD_ITEMS` or `MONDAY_ITEMS_PAGE`\n\n### Pagination\nMonday.com uses cursor-based pagination for items:\n- `MONDAY_ITEMS_PAGE` returns a `cursor` in the response for the next page\n- Pass the `cursor` to the next call; `board_id` and `query_params` are ignored when cursor is provided\n- Cursors are cached for 60 minutes\n- Maximum `limit` is 500 per page\n- `MONDAY_LIST_BOARDS` and `MONDAY_GET_WORKSPACES` use page-based pagination with `page` and `limit`\n\n### Column Value Formatting\nDifferent column types require different value formats:\n- **Status**: `{\"index\": 0}` or `{\"label\": \"Done\"}` or simple string \"Done\"\n- **Date**: `{\"date\": \"YYYY-MM-DD\"}`\n- **People**: `{\"personsAndTeams\": [{\"id\": 123, \"kind\": \"person\"}]}`\n- **Text/Numbers**: Plain string or number\n- **Timeline**: `{\"from\": \"YYYY-MM-DD\", \"to\": \"YYYY-MM-DD\"}`\n\n## Known Pitfalls\n\n### ID Formats\n- Board IDs and item IDs are large integers (e.g., 1234567890)\n- Group IDs are strings (e.g., \"topics\", \"new_group_12345\")\n- Column IDs are short strings (e.g., \"status_1\", \"date4\", \"text\")\n- Workspace IDs are integers\n\n### Rate Limits\n- Monday.com GraphQL API has complexity-based rate limits\n- Large boards with many columns increase query complexity\n- Use `limit` parameter to reduce items per request if hitting limits\n\n### Parameter Quirks\n- `column_type` for CREATE_COLUMN must be exact snake_case enum values; \"people\" not \"person\"\n- `column_values` in CREATE_ITEM accepts both JSON string and object formats\n- `MONDAY_CHANGE_SIMPLE_COLUMN_VALUE` auto-creates missing labels by default; `MONDAY_UPDATE_ITEM` does not\n- `MONDAY_CREATE_OBJECT` is a raw GraphQL interface; use it for operations without dedicated tools (e.g., create_subitem, delete_item, archive_board)\n\n### Response Structure\n- Board items are returned as arrays with `id`, `name`, and `state` fields\n- Column values include both raw `value` (JSON) and rendered `text` (display string)\n- Subitems are nested under parent items and cannot be queried independently\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List workspaces | `MONDAY_GET_WORKSPACES` | `kind`, `state`, `limit` |\n| Create workspace | `MONDAY_CREATE_WORKSPACE` | `name`, `kind` |\n| List boards | `MONDAY_LIST_BOARDS` | `limit`, `page`, `state` |\n| Create board | `MONDAY_CREATE_BOARD` | `board_name`, `board_kind`, `workspace_id` |\n| Get board metadata | `MONDAY_BOARDS` | `board_ids`, `board_kind` |\n| List groups | `MONDAY_LIST_GROUPS` | `board_id` |\n| Create group | `MONDAY_CREATE_GROUP` | `board_id`, `group_name` |\n| List columns | `MONDAY_LIST_COLUMNS` | `board_id` |\n| Get column metadata | `MONDAY_COLUMNS` | `board_ids`, `column_types` |\n| Create column | `MONDAY_CREATE_COLUMN` | `board_id`, `column_type`, `title` |\n| Create item | `MONDAY_CREATE_ITEM` | `board_id`, `item_name`, `column_values` |\n| List board items | `MONDAY_LIST_BOARD_ITEMS` | `board_id` |\n| Paginated items | `MONDAY_ITEMS_PAGE` | `board_id`, `limit`, `query_params` |\n| Update column (simple) | `MONDAY_CHANGE_SIMPLE_COLUMN_VALUE` | `board_id`, `item_id`, `column_id`, `value` |\n| Update column (complex) | `MONDAY_UPDATE_ITEM` | `board_id`, `item_id`, `column_id`, `value` |\n| Move item to group | `MONDAY_MOVE_ITEM_TO_GROUP` | `item_id`, `group_id` |\n| List subitems | `MONDAY_LIST_SUBITEMS_BY_PARENT` | `parent_item_ids` |\n| Add comment/update | `MONDAY_CREATE_UPDATE` | `item_id`, `body` |\n| Raw GraphQL mutation | `MONDAY_CREATE_OBJECT` | `query`, `variables` |\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":["monday","automation","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-monday-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/monday-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 · 34666 github stars · SKILL.md body (12,192 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:34.986Z","embedding":null,"createdAt":"2026-04-18T21:40:57.747Z","updatedAt":"2026-04-23T06:51:34.986Z","lastSeenAt":"2026-04-23T06:51:34.986Z","tsv":"'/mcp':94 '0':528,1329 '1':114,161,186,378,592,776,798,838,1031,1395 '123':543,1346 '12345':980,1387 '1234567890':1378 '2':126,198,352,389,605,778,846,1041 '256':479,550 '3':134,210,403,568,620,857,1053 '4':149,224,416,636,813,866,1064 '5':235,430,877,1008 '500':1298 '6':245,442,889 '60':1293 '7':456 'accept':985,1454 'access':295,338 'across':897 'action':1738 'activ':66,139,154 'ad':1158 'add':91,108,228,239,363,830,881,1025,1057,1710 'alway':20,76,344,1187 'api':104,350,1406 'applic':1732 'archiv':1498 'array':987,1085,1091,1507 'ask':1776 'auth':143 'authent':335 'auto':692,1467 'auto-cr':691,1466 'autom':3,4,28,32 'avail':65,119,191 'base':1254,1311,1410 'board':9,38,165,175,178,201,204,213,217,233,247,250,255,261,263,300,339,367,381,383,386,397,433,440,468,470,554,608,658,660,704,706,818,834,841,843,855,887,902,904,989,1006,1034,1195,1197,1201,1214,1224,1243,1278,1303,1369,1414,1499,1502,1560,1563,1568,1571,1572,1574,1579,1582,1583,1585,1592,1599,1608,1615,1624,1634,1641,1645,1647,1654,1667,1680 'bodi':1717 'boundari':1784 'cach':1291 'call':77,127,1277 'cannot':1533 'case':930,964,1443 'chang':579,622,654,744,807,1462,1663 'charact':480,551 'check':206 'clarif':1778 'clear':1751 'client':101 'clone':298 'column':11,42,227,229,406,408,427,493,500,505,509,518,519,571,585,595,598,600,624,642,656,670,672,716,718,727,746,767,785,831,869,872,874,880,884,919,941,958,984,993,999,1050,1094,1099,1216,1218,1222,1317,1321,1388,1417,1434,1438,1449,1464,1514,1604,1607,1611,1614,1617,1620,1623,1626,1638,1660,1665,1671,1675,1684 'comment/update':1059,1711 'comments/updates':1026,1159 'common':1183 'complet':146 'complex':641,759,1409,1420,1676 'complexity-bas':1408 'composio':19,52 'configur':102 'confirm':121,150 'connect':61,68,72,130,136,151 'core':159 'correct':1180 'creat':162,172,212,214,226,237,353,418,420,560,566,685,693,730,799,859,861,879,917,1055,1066,1068,1118,1141,1145,1149,1154,1172,1437,1452,1468,1479,1494,1552,1555,1567,1570,1594,1597,1619,1622,1629,1632,1713,1722 'creation':39 'criteria':1787 'current':25,84 'cursor':1253,1263,1273,1286,1289 'cursor-bas':1252 'data':1100 'date':532,534,581,646,764,777,937,1337,1338 'date4':1396 'dd':538,1342,1359,1364 'dedic':1491 'default':277,696,736,803,944,1101,1112,1472 'delet':1496 'describ':1739,1755 'detail':249 'differ':453,804,1320,1324 'display':942,1189,1524 'done':531,681,794,956,1332,1336 'dropdown':630,938 'duplic':208 'e.g':680,774,931,950,976,1377,1383,1393,1493 'endpoint':110,1178 'ensur':1179 'enum':926,1444 'environ':1767 'environment-specif':1766 'exact':347,962,1441 'execut':1734 'exist':177,203,324,369,588 'expert':1772 'fals':734,809 'featur':1165 'field':1105,1513 'filter':464 'find':614,1036 'first':23,81 'folder':279,281,317,322 'follow':140 'format':521,1319,1326,1368,1460 'full':1122 'get':83,88,188,399,407,513,599,780,1231,1306,1547,1578,1610 'graphql':563,925,1071,1120,1123,1151,1177,1405,1484,1719 'group':12,45,238,240,375,392,394,400,447,454,482,484,816,829,849,852,860,864,894,898,911,916,918,972,979,1206,1208,1212,1379,1386,1588,1591,1595,1598,1601,1690,1695,1698 'group/column':909 'hit':1430 'id':196,271,274,280,282,287,292,293,315,318,329,340,387,401,409,469,471,483,485,501,510,542,601,618,659,661,665,667,671,673,705,707,711,713,717,719,768,844,903,905,973,990,1007,1039,1084,1089,1185,1192,1198,1209,1215,1219,1225,1229,1240,1279,1345,1367,1370,1373,1380,1389,1399,1509,1577,1584,1593,1600,1609,1616,1625,1635,1648,1655,1668,1670,1672,1681,1683,1685,1697,1699,1709,1716 'ignor':1284 'includ':8,37,995,1093,1098,1103,1108,1516 'increas':1418 'independ':1536 'index':527,796,1328 'info':1111 'input':1781 'inspect':833,873 'integ':343,473,662,668,708,714,982,1090,1376,1401 'interfac':1485 'item':10,40,243,356,370,373,419,423,434,437,445,450,458,461,474,476,490,546,561,570,589,609,612,617,639,664,666,703,710,712,757,812,827,892,896,1028,1035,1038,1062,1083,1088,1110,1139,1161,1169,1237,1239,1244,1247,1257,1259,1372,1426,1453,1475,1497,1503,1531,1630,1633,1636,1642,1646,1650,1652,1669,1679,1682,1688,1693,1696,1708,1715 'json':495,648,723,765,945,1456,1520 'key':105,253,466,650,698,900,1074,1114,1542 'kind':220,264,301,544,1347,1549,1558,1575,1586 'known':1365 'label':530,686,695,731,792,800,949,951,1331,1470 'larg':342,1375,1413 'like':761 'limit':1296,1316,1403,1412,1422,1431,1551,1564,1656,1743 'link':144 'list':176,190,200,202,368,380,391,393,405,432,435,517,594,607,784,840,848,850,868,998,1033,1043,1078,1200,1211,1221,1242,1302,1544,1559,1562,1587,1590,1603,1606,1640,1644,1700,1703 'long':934 'lowercas':770 'manag':7,35,41,71,129,164,355,1009 'mani':1416 'map':499 'match':725,1203,1234,1752 'max':478 'maximum':552,1295 'mcp':18,31,58,90,97,117 'metadata':251,994,1580,1612 'minut':1294 'miss':688,733,802,1469,1789 'mm':537,1341,1358,1363 'modifi':1168 'monday':2,54,75,133,187,199,211,225,236,246,379,390,404,417,431,443,457,516,559,565,593,597,606,611,621,637,653,701,743,755,783,839,847,858,867,871,878,890,983,997,1032,1042,1054,1065,1077,1117,1144,1153,1162,1171,1199,1210,1220,1230,1241,1246,1258,1301,1305,1461,1473,1478,1546,1554,1561,1569,1581,1589,1596,1605,1613,1621,1631,1643,1651,1662,1677,1691,1702,1712,1721 'monday-autom':1 'monday.com':5,27,33,67,147,1250,1404 'move':372,444,448,891,1687,1692 'must':59,283,305,323,330,507,921,960,1439 'mutat':1072,1124,1152,1181,1720 'name':219,256,257,384,425,475,477,547,793,912,913,1190,1196,1205,1207,1227,1236,1238,1510,1557,1573,1602,1637 'need':106 'nest':1528 'new':174,216,232,260,422,863,883,915,978,1385 'next':1269,1276 'number':797,936,1353 'numer':272 'oauth':148 'object':496,567,724,1067,1119,1129,1146,1173,1459,1480,1723 'omit':275 'one':307 'oper':910,1194,1489 'option':209,234,244,252,441,455,465,492,865,888,899,1063,1073,1127 'organ':46,242,826 'output':1761 'overview':1742 'page':459,613,1248,1260,1270,1300,1310,1314,1565,1653 'page-bas':1309 'pagin':460,1249,1255,1312,1649 'param':1282,1543,1658 'paramet':254,467,651,699,901,1075,1115,1423,1432 'parent':1037,1046,1081,1082,1087,1104,1109,1138,1530,1706,1707 'pass':1271 'pattern':1184 'peopl':539,645,763,939,971,1343,1446 'per':1299,1427 'permiss':1782 'person':545,966,1348,1448 'personsandteam':541,1344 'pitfal':299,504,741,957,1130,1366 'place':488 'plain':1350 'prerequisit':56,197,388,402,415,604,619,845,1040 'privat':266,310 'progress':955 'provid':290,320,1288 'public':265,309 'queri':1121,1135,1281,1419,1535,1657,1724 'quick':1537 'quirk':1433 'rate':1402,1411 'raw':1176,1483,1518,1718 'reduc':1425 'refer':331,1538 'render':1522 'reorgan':895 'request':1428 'requir':223,262,269,303,429,472,481,635,649,663,669,675,709,715,721,856,876,906,1052,1092,1323,1780 'resolut':1186 'resolv':194,382,842,1188 'respond':125 'respons':351,1266,1500 'retriev':248,462,1047 'return':142,992,1261,1505 'review':1773 'rube':17,30,57,62,70,78,89,116,122,128 'rube.app':93 'rube.app/mcp':92 'run':156 'safeti':1783 'schema':26,86,729 'scope':1754 'search':21,63,79,123 'sequenc':185,377,591,837,1030 'server':98 'set':180,413,737,790,996 'setup':87 'share':268,311 'short':1391 'show':153 'simpl':623,655,677,745,749,808,1334,1463,1661,1664 'simpler':1001 'singl':1005 'skill':1730,1746 'skill-monday-automation' 'slug':1541 'snake':929,963,1442 'source-sickn33' 'specif':1768 'state':1512,1550,1566 'status':152,525,580,628,775,786,932,1327,1394 'status/dropdown':694,740,948 'stop':1774 'string':486,498,633,674,678,720,752,771,946,975,1125,1335,1351,1382,1392,1457,1525 'structur':183,819,835,875,1501 'subitem':13,47,553,1010,1020,1044,1048,1069,1079,1131,1142,1150,1495,1526,1701,1704 'substitut':1764 'success':1786 'support':557 'syntax':1182 'take':1003 'target':616 'task':1023,1539,1750 'tasks/items':364 'templat':291,296,328,333 'test':1770 'text':582,627,779,933,935,1397,1523 'text/numbers':1349 'text/status/dropdown':750 'thread':50 'timelin':644,762,1354 'titl':512,940,943,1217,1628 'token':927 'tool':22,64,80,85,124,184,376,590,836,1029,1492,1540 'toolkit':55,74,132 'topic':977,1384 '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' 'treat':1759 'true':689,697,738,805,1096,1102,1106,1113 'type':411,524,603,643,728,760,920,959,1322,1435,1618,1627 'underscor':773 'updat':15,44,569,626,638,640,702,751,756,811,1012,1056,1155,1164,1474,1659,1674,1678,1714 'update/comment':49 'use':168,345,359,508,526,533,540,562,575,742,754,822,970,1015,1143,1251,1308,1421,1486,1728,1744 'user':169,336,360,576,823,1016 'valid':924,969,1769 'valu':43,348,414,428,494,503,506,520,572,586,625,634,657,676,679,722,747,753,766,787,965,1051,1095,1170,1318,1325,1445,1450,1465,1515,1519,1639,1666,1673,1686 'vari':522 'variabl':1126,1128,1725 'verifi':115 'via':16,29,69,564,1070 'view':1019 'want':170,361,577,824,1017 'within':285,325 'without':1490 'work':6,34,113,682,814 'workflow':36,158,160,1736 'workspac':182,189,192,195,222,270,273,278,286,314,327,1226,1228,1232,1307,1398,1545,1548,1553,1556,1576 'yyyi':536,1340,1357,1362 'yyyy-mm-dd':535,1339,1356,1361","prices":[{"id":"99ad7b94-f1ec-4d00-a58c-7f47a8e5aa5d","listingId":"71bb56a6-16aa-4f2b-a324-fd6a7c5f4e0b","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:40:57.747Z"}],"sources":[{"listingId":"71bb56a6-16aa-4f2b-a324-fd6a7c5f4e0b","source":"github","sourceId":"sickn33/antigravity-awesome-skills/monday-automation","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/monday-automation","isPrimary":false,"firstSeenAt":"2026-04-18T21:40:57.747Z","lastSeenAt":"2026-04-23T06:51:34.986Z"}],"details":{"listingId":"71bb56a6-16aa-4f2b-a324-fd6a7c5f4e0b","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"monday-automation","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":"5d692ed4e4d99f4a35e3d43fbb4feb7a8e8632c8","skill_md_path":"skills/monday-automation/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/monday-automation"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"monday-automation","description":"Automate Monday.com work management including boards, items, columns, groups, subitems, and updates via Rube MCP (Composio). Always search tools first for current schemas."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/monday-automation"},"updatedAt":"2026-04-23T06:51:34.986Z"}}