thinkfleetai/thinkfleet-engine

monday

Manage Monday.com boards, items, and groups via the GraphQL API.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill monday

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,805 B
  • docs SUMMARY.md 78 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Monday.com

Manage Monday.com boards and items via the GraphQL API.

Environment Variables

List boards

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"{ boards(limit: 20) { id name state } }"}' | jq '.data.boards[] | {id, name, state}'

List items

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"{ boards(ids: [BOARD_ID]) { items_page(limit: 20) { items { id name state group { title } } } } }"}' | jq '.data.boards[0].items_page.items[] | {id, name, state, group: .group.title}'

Create item

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"mutation { create_item(board_id: BOARD_ID, group_id: \"GROUP_ID\", item_name: \"New item\") { id name } }"}' | jq '.data.create_item'

Update item

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"mutation { change_simple_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \"status\", value: \"Done\") { id } }"}' | jq '.data.change_simple_column_value'

List groups

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"{ boards(ids: [BOARD_ID]) { groups { id title color } } }"}' | jq '.data.boards[0].groups[] | {id, title, color}'

Get board

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"{ boards(ids: [BOARD_ID]) { id name description state columns { id title type } } }"}' | jq '.data.boards[0]'

Add update

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"mutation { create_update(item_id: ITEM_ID, body: \"Update text here\") { id body } }"}' | jq '.data.create_update'

List columns

curl -s -X POST -H "Authorization: $MONDAY_API_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.monday.com/v2" \
  -d '{"query":"{ boards(ids: [BOARD_ID]) { columns { id title type settings_str } } }"}' | jq '.data.boards[0].columns[] | {id, title, type}'