[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-9052a0ad-8084-46cb-ace7-1a7b86381d8e":3,"$foKFnKhzY-CiBMkbUMs-3jxMUdzwWbH1Yataz_fY-OuI":44},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"9052a0ad-8084-46cb-ace7-1a7b86381d8e","monday-automation","自动通过Rube MCP（Composio）管理Monday.com的工作，包括看板、条目、列、组、子条目和更新。始终首先搜索当前架构的工具。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: monday-automation\ndescription: \"Automate Monday.com work management including boards, items, columns, groups, subitems, and updates via Rube MCP (Composio). Always search tools first for current schemas.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# 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\u002Fcomment 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:\u002F\u002Frube.app\u002Fmcp` 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\u002Fitems 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\u002Fdropdown 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\u002Fdropdown\n\n**Pitfalls**:\n- Use `MONDAY_CHANGE_SIMPLE_COLUMN_VALUE` for simple text\u002Fstatus\u002Fdropdown 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\u002Fcolumn 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\u002Fdropdown 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\u002Fupdates 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\u002Fupdate 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\u002Fupdates 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\u002FNumbers**: 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\u002Fupdate | `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.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,144,1189,"2026-05-16 13:29:20",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"效率工具","productivity","mdi-lightning-bolt-outline","文档处理、数据分析、自动化工作流",4,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"自动化","automation","mdi-robot-outline","工作流自动化、批处理",3,101,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":43},"14b13334-f90f-459f-a9bb-e4c49ce43b28","1.0.0","monday-automation.zip",4312,"uploads\u002Fskills\u002F9052a0ad-8084-46cb-ace7-1a7b86381d8e\u002Fmonday-automation.zip","becde3da6ba53a1802052d01e8c913dd48ca0bc679ac23faa8fcb3acf3f789e4","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":12473}]","2026-05-16 13:29:21",{"code":45,"message":46,"data":47},200,"success",{"items":48,"stats":49,"page":52},[],{"averageRating":50,"totalRatings":50,"ratingCounts":51},0,[50,50,50,50,50],{"limit":53,"offset":50,"hasMore":54,"nextOffset":53,"ratedOnly":16},15,false]