7.9k★by mrgoodb
monday – OpenClaw Skill
monday is an OpenClaw Skills integration for coding workflows. Manage monday.com boards, items, and workflows via GraphQL API. Create tasks, update statuses, and automate work.
7.9k stars3.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | monday |
| description | Manage monday.com boards, items, and workflows via GraphQL API. Create tasks, update statuses, and automate work. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/monday |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/monday |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
265 BSKILL.md
1.8 KBSKILL.md
name: monday description: Manage monday.com boards, items, and workflows via GraphQL API. Create tasks, update statuses, and automate work. metadata: {"clawdbot":{"emoji":"📋","requires":{"env":["MONDAY_API_TOKEN"]}}}
Monday.com
Work management platform.
Environment
export MONDAY_API_TOKEN="xxxxxxxxxx"
List Boards
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ boards(limit:10) { id name } }"}'
Get Board Items
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ boards(ids: [BOARD_ID]) { items_page { items { id name column_values { id text } } } } }"}'
Create Item
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "mutation { create_item(board_id: BOARD_ID, item_name: \"New Task\") { id } }"}'
Update Item Column
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "mutation { change_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \"status\", value: \"{\\\"label\\\":\\\"Done\\\"}\") { id } }"}'
Add Update (Comment)
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "mutation { create_update(item_id: ITEM_ID, body: \"Task completed!\") { id } }"}'
Get User Info
curl "https://api.monday.com/v2" \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ me { id name email } }"}'
Links
- Dashboard: https://monday.com
- Docs: https://developer.monday.com/api-reference
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install monday?
Run openclaw add @mrgoodb/monday in your terminal. This installs monday into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/monday. Review commits and README documentation before installing.
