monday by membranedev/application-skills
npx skills add https://github.com/membranedev/application-skills --skill mondayMonday.com 是一个工作操作系统,团队可以在其中规划、跟踪和管理工作。项目经理、营销团队和销售团队使用它来改善协作和执行。
官方文档:https://developers.monday.com/
何时使用哪个操作:根据需要选择操作名称和参数。
此技能使用 Membrane CLI 与 Monday 交互。Membrane 自动处理身份验证和凭证刷新——因此您可以专注于集成逻辑,而无需处理身份验证的底层细节。
安装 Membrane CLI,以便您可以从终端运行 membrane 命令:
npm install -g @membranehq/cli
membrane login --tenant
浏览器窗口将打开以进行身份验证。
无头环境: 运行该命令,复制打印的 URL 供用户在浏览器中打开,然后使用 membrane login complete <code> 完成。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
创建新连接:
membrane search monday --elementType=connector --json
从 output.items[0].element?.id 获取连接器 ID,然后:
membrane connect --connectorId=CONNECTOR_ID --json
用户在浏览器中完成身份验证。输出包含新的连接 ID。
当您不确定连接是否已存在时:
检查现有连接:
membrane connection list --json
如果存在 Monday 连接,请记下其 connectionId。
当您知道要做什么但不知道确切的操作 ID 时:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
这将返回包含 id 和 inputSchema 的操作对象,以便您知道如何运行它。
| 名称 | 键 | 描述 |
|---|---|---|
| 列出看板 | list-boards | 从 Monday.com 检索看板列表 |
| 列出项目 | list-items | 从看板检索项目,支持分页 |
| 列出用户 | list-users | 检索帐户中的用户列表 |
| 列出更新 | list-updates | 列出特定项目或跨看板的更新(评论) |
| 获取看板 | get-board | 按 ID 检索特定看板及其组和列 |
| 获取项目 | get-item | 按 ID 检索特定项目 |
| 获取项目更新 | get-item-updates | 获取特定项目的更新(评论) |
| 获取当前用户 | get-current-user | 检索当前已认证用户的信息 |
| 创建看板 | create-board | 在 Monday.com 中创建新看板 |
| 创建项目 | create-item | 在看板上创建新项目 |
| 创建组 | create-group | 在看板上创建新组 |
| 创建更新 | create-update | 在项目上创建更新(评论) |
| 创建列 | create-column | 在看板上创建新列 |
| 更新看板 | update-board | 更新看板属性,如名称或描述 |
| 更新项目列值 | update-item-column-values | 更新项目上的多个列值 |
| 更新组 | update-group | 更新组的标题、颜色或位置 |
| 删除看板 | delete-board | 从 Monday.com 永久删除看板 |
| 删除项目 | delete-item | 从看板永久删除项目 |
| 删除组 | delete-group | 永久删除组及其所有项目 |
| 删除更新 | delete-update | 删除更新(评论) |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
传递 JSON 参数:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
当现有操作无法满足您的用例时,您可以通过 Membrane 的代理直接向 Monday API 发送请求。Membrane 会自动将您提供的路径附加到基础 URL,并注入正确的身份验证头——如果凭证过期,还会透明地刷新凭证。
membrane request CONNECTION_ID /path/to/endpoint
常用选项:
| 标志 | 描述 |
|---|---|
-X, --method | HTTP 方法(GET、POST、PUT、PATCH、DELETE)。默认为 GET |
-H, --header | 添加请求头(可重复),例如 -H "Accept: application/json" |
-d, --data | 请求体(字符串) |
--json | 发送 JSON 请求体并设置 Content-Type: application/json 的简写 |
--rawData | 按原样发送请求体,不做任何处理 |
--query | 查询字符串参数(可重复),例如 --query "limit=10" |
--pathParam | 路径参数(可重复),例如 --pathParam "id=123" |
membrane action list --intent=QUERY(将 QUERY 替换为您的意图)以查找现有操作。预构建的操作处理了原始 API 调用可能遗漏的分页、字段映射和边缘情况。每周安装数
215
代码仓库
GitHub 星标数
18
首次出现
14 天前
安全审计
安装于
opencode215
gemini-cli215
github-copilot215
codex215
kimi-cli215
cursor215
Monday.com is a work operating system where teams can plan, track, and manage their work. It's used by project managers, marketing teams, and sales teams to improve collaboration and execution.
Official docs: https://developers.monday.com/
When to use which actions: Use action names and parameters as needed.
This skill uses the Membrane CLI to interact with Monday. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.
Install the Membrane CLI so you can run membrane from the terminal:
npm install -g @membranehq/cli
membrane login --tenant
A browser window opens for authentication.
Headless environments: Run the command, copy the printed URL for the user to open in a browser, then complete with membrane login complete <code>.
Create a new connection:
membrane search monday --elementType=connector --json
Take the connector ID from output.items[0].element?.id, then:
membrane connect --connectorId=CONNECTOR_ID --json
The user completes authentication in the browser. The output contains the new connection id.
When you are not sure if connection already exists:
Check existing connections:
membrane connection list --json
If a Monday connection exists, note its connectionId
When you know what you want to do but not the exact action ID:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
This will return action objects with id and inputSchema in it, so you will know how to run it.
| Name | Key | Description |
|---|---|---|
| List Boards | list-boards | Retrieves a list of boards from Monday.com |
| List Items | list-items | Retrieves items from a board with pagination support |
| List Users | list-users | Retrieves a list of users in the account |
| List Updates | list-updates | List updates (comments) for a specific item or across boards |
| Get Board | get-board | Retrieves a specific board by ID with its groups and columns |
| Get Item | get-item | Retrieves a specific item by ID |
| Get Item Updates | get-item-updates | Get updates (comments) for a specific item |
| Get Current User | get-current-user | Retrieves the current authenticated user's information |
| Create Board | create-board |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
To pass JSON parameters:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
When the available actions don't cover your use case, you can send requests directly to the Monday API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.
membrane request CONNECTION_ID /path/to/endpoint
Common options:
| Flag | Description |
|---|---|
-X, --method | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
-H, --header | Add a request header (repeatable), e.g. -H "Accept: application/json" |
-d, --data | Request body (string) |
--json | Shorthand to send a JSON body and set Content-Type: application/json |
--rawData |
membrane action list --intent=QUERY (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.Weekly Installs
215
Repository
GitHub Stars
18
First Seen
14 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
opencode215
gemini-cli215
github-copilot215
codex215
kimi-cli215
cursor215
开源项目教练指南 - 诊断问题、制定行动计划、优化开源项目运营
31,600 周安装
| Creates a new board in Monday.com |
| Create Item | create-item | Creates a new item on a board |
| Create Group | create-group | Creates a new group on a board |
| Create Update | create-update | Create an update (comment) on an item |
| Create Column | create-column | Creates a new column on a board |
| Update Board | update-board | Updates board attributes like name or description |
| Update Item Column Values | update-item-column-values | Updates multiple column values on an item |
| Update Group | update-group | Updates a group's title, color, or position |
| Delete Board | delete-board | Permanently deletes a board from Monday.com |
| Delete Item | delete-item | Permanently deletes an item from a board |
| Delete Group | delete-group | Permanently deletes a group and all its items |
| Delete Update | delete-update | Delete an update (comment) |
| Send the body as-is without any processing |
--query | Query-string parameter (repeatable), e.g. --query "limit=10" |
--pathParam | Path parameter (repeatable), e.g. --pathParam "id=123" |