{"id":"fc22ff52-5dfd-435e-9c9a-6f0cd9d74d52","shortId":"XBcZEa","kind":"skill","title":"wrike-automation","tagline":"Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas.","description":"# Wrike Automation via Rube MCP\n\nAutomate Wrike project management operations through Composio's Wrike toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Wrike connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `wrike`\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 `wrike`\n3. If connection is not ACTIVE, follow the returned auth link to complete Wrike OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Create and Manage Tasks\n\n**When to use**: User wants to create, assign, or update tasks in Wrike\n\n**Tool sequence**:\n1. `WRIKE_GET_FOLDERS` - Find the target folder/project [Prerequisite]\n2. `WRIKE_GET_ALL_CUSTOM_FIELDS` - Get custom field IDs if needed [Optional]\n3. `WRIKE_CREATE_TASK` - Create a new task [Required]\n4. `WRIKE_MODIFY_TASK` - Update task properties [Optional]\n\n**Key parameters**:\n- `folderId`: Parent folder ID where the task will be created\n- `title`: Task title\n- `description`: Task description (supports HTML)\n- `responsibles`: Array of user IDs to assign\n- `status`: 'Active', 'Completed', 'Deferred', 'Cancelled'\n- `importance`: 'High', 'Normal', 'Low'\n- `customFields`: Array of {id, value} objects\n- `dates`: Object with type, start, due, duration\n\n**Pitfalls**:\n- folderId is required; tasks must belong to a folder\n- responsibles requires Wrike user IDs, not emails or names\n- Custom field IDs must be obtained from GET_ALL_CUSTOM_FIELDS\n- priorityBefore and priorityAfter are mutually exclusive\n- Status field may not be available on Team plan\n- dates.start and dates.due use 'YYYY-MM-DD' format\n\n### 2. Manage Folders and Projects\n\n**When to use**: User wants to create, modify, or organize folders and projects\n\n**Tool sequence**:\n1. `WRIKE_GET_FOLDERS` - List existing folders [Required]\n2. `WRIKE_CREATE_FOLDER` - Create a new folder/project [Optional]\n3. `WRIKE_MODIFY_FOLDER` - Update folder properties [Optional]\n4. `WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID` - List subfolders [Optional]\n5. `WRIKE_DELETE_FOLDER` - Delete a folder permanently [Optional]\n\n**Key parameters**:\n- `folderId`: Parent folder ID for creation; target folder ID for modification\n- `title`: Folder name\n- `description`: Folder description\n- `customItemTypeId`: Set to create as a project instead of a folder\n- `shareds`: Array of user IDs or emails to share with\n- `project`: Filter for projects (true) or folders (false) in GET_FOLDERS\n\n**Pitfalls**:\n- DELETE_FOLDER is permanent and removes ALL contents (tasks, subfolders, documents)\n- Cannot modify rootFolderId or recycleBinId as parents\n- Folder creation auto-shares with the creator\n- customItemTypeId converts a folder into a project\n- GET_FOLDERS with descendants=true returns folder tree (may be large)\n\n### 3. Retrieve and Track Tasks\n\n**When to use**: User wants to find tasks, check status, or monitor progress\n\n**Tool sequence**:\n1. `WRIKE_FETCH_ALL_TASKS` - List tasks with optional filters [Required]\n2. `WRIKE_GET_TASK_BY_ID` - Get detailed info for a specific task [Optional]\n\n**Key parameters**:\n- `status`: Filter by task status ('Active', 'Completed', etc.)\n- `dueDate`: Filter by due date range (start/end/equal)\n- `fields`: Additional response fields to include\n- `page_size`: Results per page (1-100)\n- `taskId`: Specific task ID for detailed retrieval\n- `resolve_user_names`: Auto-resolve user IDs to names (default true)\n\n**Pitfalls**:\n- FETCH_ALL_TASKS paginates at max 100 items per page\n- dueDate filter supports 'equal', 'start', and 'end' fields\n- Date format: 'yyyy-MM-dd' or 'yyyy-MM-ddTHH:mm:ss'\n- GET_TASK_BY_ID returns read-only detailed information\n- customFields are returned by default for single task queries\n\n### 4. Launch Task Blueprints\n\n**When to use**: User wants to create tasks from predefined templates\n\n**Tool sequence**:\n1. `WRIKE_LIST_TASK_BLUEPRINTS` - List available blueprints [Prerequisite]\n2. `WRIKE_LIST_SPACE_TASK_BLUEPRINTS` - List blueprints in a specific space [Alternative]\n3. `WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC` - Launch a blueprint [Required]\n\n**Key parameters**:\n- `task_blueprint_id`: ID of the blueprint to launch\n- `title`: Title for the root task\n- `parent_id`: Parent folder/project ID (OR super_task_id)\n- `super_task_id`: Parent task ID (OR parent_id)\n- `reschedule_date`: Target date for task rescheduling\n- `reschedule_mode`: 'RescheduleStartDate' or 'RescheduleFinishDate'\n- `entry_limit`: Max tasks to copy (1-250)\n\n**Pitfalls**:\n- Either parent_id or super_task_id is required, not both\n- Blueprint launch is asynchronous; tasks may take time to appear\n- reschedule_date requires reschedule_mode to be set\n- entry_limit caps at 250 tasks/folders per blueprint launch\n- copy_descriptions defaults to false; set true to include task descriptions\n\n### 5. Manage Workspace and Members\n\n**When to use**: User wants to manage spaces, members, or invitations\n\n**Tool sequence**:\n1. `WRIKE_GET_SPACE` - Get space details [Optional]\n2. `WRIKE_GET_CONTACTS` - List workspace contacts/members [Optional]\n3. `WRIKE_CREATE_INVITATION` - Invite a user to the workspace [Optional]\n4. `WRIKE_DELETE_SPACE` - Delete a space permanently [Optional]\n\n**Key parameters**:\n- `spaceId`: Space identifier\n- `email`: Email for invitation\n- `role`: User role ('Admin', 'Regular User', 'External User')\n- `firstName`/`lastName`: Invitee name\n\n**Pitfalls**:\n- DELETE_SPACE is irreversible and removes all space contents\n- userTypeId and role/external are mutually exclusive in invitations\n- Custom email subjects/messages require a paid Wrike plan\n- GET_CONTACTS returns workspace-level contacts, not task-specific assignments\n\n## Common Patterns\n\n### Folder ID Resolution\n\n```\n1. Call WRIKE_GET_FOLDERS (optionally with project=true for projects only)\n2. Navigate folder tree to find target\n3. Extract folder id (e.g., 'IEAGKVLFK4IHGQOI')\n4. Use as folderId in task/folder creation\n```\n\n### Custom Field Setup\n\n```\n1. Call WRIKE_GET_ALL_CUSTOM_FIELDS to get definitions\n2. Find field by name, extract id and type\n3. Format value according to type (text, dropdown, number, date)\n4. Include as {id: 'FIELD_ID', value: 'VALUE'} in customFields array\n```\n\n### Task Assignment\n\n```\n1. Call WRIKE_GET_CONTACTS to find user IDs\n2. Use user IDs in responsibles array when creating tasks\n3. Or use addResponsibles/removeResponsibles when modifying tasks\n```\n\n### Pagination\n\n- FETCH_ALL_TASKS: Use page_size (max 100) and check for more results\n- GET_FOLDERS: Use nextPageToken when descendants=false and pageSize is set\n- LIST_TASK_BLUEPRINTS: Use next_page_token and page_size (default 100)\n\n## Known Pitfalls\n\n**ID Formats**:\n- Wrike IDs are opaque alphanumeric strings (e.g., 'IEAGTXR7I4IHGABC')\n- Task IDs, folder IDs, space IDs, and user IDs all use this format\n- Custom field IDs follow the same pattern\n- Never guess IDs; always resolve from list/search operations\n\n**Permissions**:\n- Operations depend on user role and sharing settings\n- Shared folders/tasks are visible only to shared users\n- Admin operations require appropriate role\n- Some features (custom statuses, billing types) are plan-dependent\n\n**Deletion Safety**:\n- DELETE_FOLDER removes ALL contents permanently\n- DELETE_SPACE removes the entire space and contents\n- Consider using MODIFY_FOLDER to move to recycle bin instead\n- Restore from recycle bin is possible via MODIFY_FOLDER with restore=true\n\n**Date Handling**:\n- Dates use 'yyyy-MM-dd' format\n- DateTime uses 'yyyy-MM-ddTHH:mm:ssZ' or with timezone offset\n- Task dates include type ('Planned', 'Actual'), start, due, duration\n- Duration is in minutes\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| Create task | WRIKE_CREATE_TASK | folderId, title, responsibles, status |\n| Modify task | WRIKE_MODIFY_TASK | taskId, title, status, addResponsibles |\n| Get task by ID | WRIKE_GET_TASK_BY_ID | taskId |\n| Fetch all tasks | WRIKE_FETCH_ALL_TASKS | status, dueDate, page_size |\n| Get folders | WRIKE_GET_FOLDERS | project, descendants |\n| Create folder | WRIKE_CREATE_FOLDER | folderId, title |\n| Modify folder | WRIKE_MODIFY_FOLDER | folderId, title, addShareds |\n| Delete folder | WRIKE_DELETE_FOLDER | folderId |\n| List subfolders | WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID | folderId |\n| Get custom fields | WRIKE_GET_ALL_CUSTOM_FIELDS | (none) |\n| List blueprints | WRIKE_LIST_TASK_BLUEPRINTS | limit, page_size |\n| Launch blueprint | WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC | task_blueprint_id, title, parent_id |\n| Get space | WRIKE_GET_SPACE | spaceId |\n| Delete space | WRIKE_DELETE_SPACE | spaceId |\n| Get contacts | WRIKE_GET_CONTACTS | (none) |\n| Invite user | WRIKE_CREATE_INVITATION | email, role |\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":["wrike","automation","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-wrike-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/wrike-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 · 34404 github stars · SKILL.md body (9,414 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-22T00:52:00.324Z","embedding":null,"createdAt":"2026-04-18T21:47:46.606Z","updatedAt":"2026-04-22T00:52:00.324Z","lastSeenAt":"2026-04-22T00:52:00.324Z","tsv":"'-100':547 '-250':721 '/mcp':84 '1':104,151,171,333,493,546,635,720,790,890,925,967 '100':574,1001,1029 '2':116,180,313,341,504,644,798,902,935,976 '250':756 '3':124,193,350,473,657,806,909,944,986 '4':139,202,358,618,817,915,954 '5':368,772 'accord':947 'action':1325 'activ':56,129,144,238,525 'actual':1166 'add':81,98 'addit':536 'addrespons':1198 'addresponsibles/removeresponsibles':989 'addshar':1241 'admin':838,1087 'alphanumer':1038 'altern':656 'alway':21,66,1065 'api':94 'appear':743 'applic':1319 'appropri':1090 'array':231,247,408,964,982 'ask':1363 'assign':16,163,236,884,966 'async':662,1281 'asynchron':737 'auth':133 'auto':450,559 'auto-resolv':558 'auto-shar':449 'autom':3,4,29,33 'avail':55,109,300,641 'belong':265 'bill':1096 'bin':1126,1131 'blueprint':621,639,642,649,651,661,665,670,675,734,759,1020,1267,1271,1276,1280,1283 'boundari':1371 'call':67,117,891,926,968 'cancel':241 'cannot':440 'cap':754 'check':486,1003 'clarif':1365 'clear':1338 'client':91 'common':885 'complet':136,239,526 'composio':11,39 'configur':92 'confirm':111,140 'connect':51,58,62,120,126,141 'consid':1118 'contact':801,874,879,971,1301,1304 'contacts/members':804 'content':436,856,1108,1117 'convert':456 'copi':719,761 'core':149 'creat':12,152,162,195,197,221,324,343,345,399,628,808,984,1181,1184,1227,1230,1309 'creation':384,448,921 'creator':454 'criteria':1374 'current':26,74 'custom':184,187,278,287,865,922,930,1055,1094,1258,1263 'customfield':246,609,963 'customitemtypeid':396,455 'date':252,532,586,703,705,745,953,1140,1142,1162 'dates.due':306 'dates.start':304 'datetim':1149 'dd':311,591,1147 'ddthh':596,1154 'default':565,613,763,1028 'defer':240 'definit':934 'delet':370,372,429,819,821,848,1102,1104,1110,1242,1245,1294,1297 'depend':1072,1101 'descend':465,1012,1226 'describ':1326,1342 'descript':225,227,393,395,762,771 'detail':511,553,607,796 'document':439 'dropdown':951 'due':257,531,1168 'duedat':528,578,1217 'durat':258,1169,1170 'e.g':913,1040 'either':723 'email':275,413,831,832,866,1311 'end':584 'endpoint':100 'entir':1114 'entri':714,752 'environ':1354 'environment-specif':1353 'equal':581 'etc':527 'exclus':294,862 'execut':1321 'exist':338 'expert':1359 'extern':841 'extract':910,940 'fals':424,765,1013 'featur':1093 'fetch':495,568,994,1209,1213 'field':185,188,279,288,296,535,538,585,923,931,937,958,1056,1259,1264 'filter':418,502,521,529,579 'find':175,484,907,936,973 'first':24,71 'firstnam':843 'folder':174,214,268,315,328,336,339,344,353,355,363,371,374,381,386,391,394,406,423,427,430,447,458,463,468,887,894,904,911,1008,1044,1105,1121,1136,1221,1224,1228,1231,1235,1238,1243,1246,1254 'folder/project':178,348,687 'folderid':212,260,379,918,1186,1232,1239,1247,1256 'folders/tasks':1080 'follow':130,1058 'format':312,587,945,1033,1054,1148 'get':73,78,173,182,186,285,335,426,462,506,510,599,792,794,800,873,893,928,933,970,1007,1199,1204,1220,1223,1257,1261,1288,1291,1300,1303 'guess':1063 'handl':1141 'high':243 'html':229 'id':189,215,234,249,273,280,364,382,387,411,509,551,562,602,671,672,685,688,692,695,698,701,725,729,888,912,941,957,959,975,979,1032,1035,1043,1045,1047,1050,1057,1064,1202,1207,1255,1284,1287 'identifi':830 'ieagkvlfk4ihgqoi':914 'ieagtxr7i4ihgabc':1041 'import':242 'includ':540,769,955,1163 'info':512 'inform':608 'input':1368 'instead':403,1127 'invit':787,809,810,834,864,1306,1310 'invite':845 'irrevers':851 'item':575 'key':95,210,377,518,667,826,1179 'known':1030 'larg':472 'lastnam':844 'launch':619,659,663,677,735,760,1275,1278 'level':878 'limit':715,753,1272,1330 'link':134 'list':337,360,365,498,637,640,646,650,802,1018,1248,1251,1266,1269 'list/search':1068 'low':245 'manag':7,14,36,61,119,154,314,773,783 'match':1339 'max':573,716,1000 'may':297,470,739 'mcp':10,32,45,48,80,87,107 'member':776,785 'minut':1173 'miss':1376 'mm':310,590,595,597,1146,1153,1155 'mode':710,748 'modif':389 'modifi':204,325,352,441,991,1120,1135,1190,1193,1234,1237 'monitor':489 'move':1123 'must':49,264,281 'mutual':293,861 'name':277,392,557,564,846,939 'navig':903 'need':96,191 'never':1062 'new':199,347 'next':1022 'nextpagetoken':1010 'none':1265,1305 'normal':244 'number':952 'oauth':138 'object':251,253 'obtain':283 'offset':1160 'opaqu':1037 'oper':37,1069,1071,1088 'option':192,209,349,357,367,376,501,517,797,805,816,825,895 'organ':327 'output':1348 'overview':1329 'page':541,545,577,998,1023,1026,1218,1273 'pages':1015 'pagin':571,993 'paid':870 'param':1180 'paramet':211,378,519,668,827 'parent':213,380,446,684,686,696,700,724,1286 'pattern':886,1061 'per':544,576,758 'perman':375,432,824,1109 'permiss':1070,1369 'pitfal':259,428,567,722,847,1031 'plan':303,872,1100,1165 'plan-depend':1099 'possibl':1133 'predefin':631 'prerequisit':46,179,643 'priorityaft':291 'prioritybefor':289 'progress':20,490 'project':6,15,35,317,330,402,417,420,461,897,900,1225 'properti':208,356 'queri':617 'quick':1174 'rang':533 'read':605 'read-on':604 'recycl':1125,1130 'recyclebinid':444 'refer':1175 'regular':839 'remov':434,853,1106,1112 'requir':201,262,270,340,503,666,731,746,868,1089,1367 'reschedul':702,708,709,744,747 'reschedulefinishd':713 'reschedulestartd':711 'resolut':889 'resolv':555,560,1066 'respond':115 'respons':230,269,537,981,1188 'restor':1128,1138 'result':543,1006 'retriev':474,554 'return':132,467,603,611,875 'review':1360 'role':835,837,1075,1091,1312 'role/external':859 'root':682 'rootfolderid':442 'rube':9,31,44,47,52,60,68,79,106,112,118 'rube.app':83 'rube.app/mcp':82 'run':146 'safeti':1103,1370 'schema':27,76 'scope':1341 'search':22,53,69,113 'sequenc':170,332,492,634,789 'server':88 'set':397,751,766,1017,1078 'setup':77,924 'share':407,415,451,1077,1079,1085 'show':143 'singl':615 'size':542,999,1027,1219,1274 'skill':1317,1333 'skill-wrike-automation' 'slug':1178 'source-sickn33' 'space':647,655,784,793,795,820,823,829,849,855,1046,1111,1115,1289,1292,1295,1298 'spaceid':828,1293,1299 'specif':515,549,654,883,1355 'ss':598 'ssz':1156 'start':256,582,1167 'start/end/equal':534 'status':142,237,295,487,520,524,1095,1189,1197,1216 'stop':1361 'string':1039 'subfold':361,366,438,1249,1252 'subjects/messages':867 'substitut':1351 'success':1373 'super':690,693,727 'support':228,580 'take':740 'target':177,385,704,908 'task':155,166,196,200,205,207,218,223,226,263,437,477,485,497,499,507,516,523,550,570,600,616,620,629,638,648,660,669,683,691,694,697,707,717,728,738,770,882,965,985,992,996,1019,1042,1161,1176,1182,1185,1191,1194,1200,1205,1211,1215,1270,1279,1282,1337 'task-specif':881 'task/folder':920 'taskid':548,1195,1208 'tasks/folders':13,757 'team':302 'templat':632 'test':1357 'text':950 'time':741 'timezon':1159 'titl':222,224,390,678,679,1187,1196,1233,1240,1285 'token':1024 'tool':23,54,70,75,114,169,331,491,633,788,1177 'toolkit':42,64,122 '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' 'track':19,476 'treat':1346 'tree':469,905 'true':421,466,566,767,898,1139 'type':255,943,949,1097,1164 'updat':165,206,354 'use':158,307,320,480,624,779,916,977,988,997,1009,1021,1052,1119,1143,1150,1315,1331 'user':159,233,272,321,410,481,556,561,625,780,812,836,840,842,974,978,1049,1074,1086,1307 'usertypeid':857 'valid':1356 'valu':250,946,960,961 'verifi':105 'via':8,30,43,59,1134 'visibl':1082 'want':160,322,482,626,781 'work':17,103 'workflow':148,150,1323 'workspac':774,803,815,877 'workspace-level':876 'wrike':2,5,28,34,41,57,65,123,137,168,172,181,194,203,271,334,342,351,359,369,494,505,636,645,658,791,799,807,818,871,892,927,969,1034,1183,1192,1203,1212,1222,1229,1236,1244,1250,1260,1268,1277,1290,1296,1302,1308 'wrike-autom':1 'yyyi':309,589,594,1145,1152 'yyyy-mm-dd':308,588,1144 'yyyy-mm-ddthh':593,1151","prices":[{"id":"ceeda37f-f9fe-4321-9631-79c81f9e11ef","listingId":"fc22ff52-5dfd-435e-9c9a-6f0cd9d74d52","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:47:46.606Z"}],"sources":[{"listingId":"fc22ff52-5dfd-435e-9c9a-6f0cd9d74d52","source":"github","sourceId":"sickn33/antigravity-awesome-skills/wrike-automation","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/wrike-automation","isPrimary":false,"firstSeenAt":"2026-04-18T21:47:46.606Z","lastSeenAt":"2026-04-22T00:52:00.324Z"}],"details":{"listingId":"fc22ff52-5dfd-435e-9c9a-6f0cd9d74d52","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"wrike-automation","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34404,"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-21T16:43:40Z","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":"a8805267875d4a9382a8575789d1250056eab1d6","skill_md_path":"skills/wrike-automation/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/wrike-automation"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"wrike-automation","description":"Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/wrike-automation"},"updatedAt":"2026-04-22T00:52:00.324Z"}}