@assemblyline-agents/monday 2.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 OpenEve contributors
3
+ Copyright (c) 2026 Assembly Line contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Official Assembly Line monday.com connection plugin.
4
4
 
5
- It connects agents to monday.com, exposing work-management tools through monday.com's MCP server. The package exports `defineMondayConnection(options)` to declare the connection in an agent definition and an `assemblyLinePlugin` module so the Assembly Line CLI and compiler can discover the plugin's connection metadata. A bundled skill under `skills/` teaches agents how to use the connection's tools.
5
+ It connects agents to monday.com, exposing work-management tools through monday.com's MCP server. The package exports `defineMondayConnection(options)` to declare the connection in an agent definition and an `assemblyLinePlugin` module so the Assembly Line CLI and compiler can discover the plugin's connection metadata.
6
6
 
7
7
  ## Install
8
8
 
@@ -0,0 +1,3 @@
1
+ import { type ConnectionPluginEventAdapter } from "@assemblyline-agents/core";
2
+ export declare const mondayEvents: ConnectionPluginEventAdapter;
3
+ //# sourceMappingURL=events.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"AACA,OAAO,EAML,KAAK,4BAA4B,EAElC,MAAM,2BAA2B,CAAC;AAInC,eAAO,MAAM,YAAY,EAAE,4BAgC1B,CAAC"}
package/dist/events.js ADDED
@@ -0,0 +1,58 @@
1
+ import { createHmac, timingSafeEqual } from "node:crypto";
2
+ import { ConnectionEventError, headerValue, parseConnectionEventJson, requireEnvironmentValue, stringField } from "@assemblyline-agents/core";
3
+ const API = "https://api.monday.com/v2";
4
+ export const mondayEvents = {
5
+ async reconcile(context) {
6
+ requireEnvironmentValue(context.env, "MONDAY_SIGNING_SECRET");
7
+ const boardIds = context.resources.map((resource) => stringField(resource, "boardId")).filter((value) => Boolean(value));
8
+ if (!boardIds.length)
9
+ return { status: "needs_setup", instructions: "Add monday.com event resources with boardId." };
10
+ const token = (await context.getToken()).token;
11
+ for (const id of webhookIds(context.state))
12
+ await graphql(context.fetch, token, `mutation { delete_webhook(id: ${JSON.stringify(id)}) { id } }`);
13
+ const ids = [];
14
+ for (const boardId of boardIds)
15
+ for (const event of context.selectedEvents) {
16
+ const value = await graphql(context.fetch, token, `mutation { create_webhook(board_id: ${Number(boardId)}, url: ${JSON.stringify(context.callbackUrl)}, event: ${event}) { id } }`);
17
+ const data = value.data && typeof value.data === "object" && !Array.isArray(value.data) ? value.data : {};
18
+ const hook = data.create_webhook && typeof data.create_webhook === "object" && !Array.isArray(data.create_webhook) ? data.create_webhook : {};
19
+ const id = hook.id;
20
+ if (typeof id !== "string" && typeof id !== "number")
21
+ throw new Error("monday.com create_webhook omitted id.");
22
+ ids.push(String(id));
23
+ }
24
+ return { status: "active", externalId: ids.join(","), state: { webhookIds: ids }, detail: `${ids.length} monday.com webhook${ids.length === 1 ? " is" : "s are"} active.` };
25
+ },
26
+ async remove(context) { const token = (await context.getToken()).token; for (const id of webhookIds(context.state))
27
+ await graphql(context.fetch, token, `mutation { delete_webhook(id: ${JSON.stringify(id)}) { id } }`); },
28
+ check(context) { const ids = webhookIds(context.state); return ids.length ? { status: "active", detail: `${ids.length} monday.com webhook${ids.length === 1 ? " is" : "s are"} configured.` } : { status: "needs_setup", detail: "No monday.com webhooks are configured." }; },
29
+ ingress(request, context) {
30
+ const payload = parseConnectionEventJson(request.body);
31
+ const challenge = stringField(payload, "challenge");
32
+ if (challenge)
33
+ return { events: [], response: { status: 200, body: { challenge } }, audit: { challenge: true } };
34
+ const secret = requireEnvironmentValue(context.env, "MONDAY_SIGNING_SECRET");
35
+ if (!verifyJwt(headerValue(request.headers, "authorization"), secret))
36
+ throw new ConnectionEventError("monday.com webhook authorization is invalid.", 401);
37
+ const nested = payload.event && typeof payload.event === "object" && !Array.isArray(payload.event) ? payload.event : {};
38
+ const event = stringField(nested, "type");
39
+ if (!event)
40
+ throw new ConnectionEventError("monday.com webhook omitted event.type.");
41
+ const id = nested.pulseId ?? nested.updateId ?? nested.boardId ?? "unknown";
42
+ const occurredAt = stringField(nested, "triggerTime");
43
+ const eventId = `${event}:${String(id)}:${occurredAt ?? String(nested.subscriptionId ?? "")}`;
44
+ return { events: [{ event, eventId, payload: payload, ...(occurredAt ? { occurredAt } : {}) }], response: { status: 200, body: { ok: true } }, audit: { event } };
45
+ }
46
+ };
47
+ async function graphql(fetchImpl, token, query) { const response = await fetchImpl(API, { method: "POST", headers: { authorization: token, "content-type": "application/json", "api-version": "2025-10" }, body: JSON.stringify({ query }) }); const value = await response.json(); if (!response.ok || (Array.isArray(value.errors) && value.errors.length))
48
+ throw new Error(`monday.com GraphQL request failed: ${JSON.stringify(value.errors ?? value)}`); return value; }
49
+ function webhookIds(state) { return Array.isArray(state?.webhookIds) ? state.webhookIds.filter((value) => typeof value === "string") : []; }
50
+ function verifyJwt(value, secret) { const token = value?.replace(/^Bearer\s+/iu, ""); if (!token)
51
+ return false; const parts = token.split("."); if (parts.length !== 3)
52
+ return false; let payload; try {
53
+ payload = JSON.parse(Buffer.from(parts[1], "base64url").toString("utf8"));
54
+ }
55
+ catch {
56
+ return false;
57
+ } const expected = createHmac("sha256", secret).update(`${parts[0]}.${parts[1]}`).digest(); const actual = Buffer.from(parts[2], "base64url"); const exp = Number(payload.exp); return actual.length === expected.length && timingSafeEqual(actual, expected) && (!Number.isFinite(exp) || exp > Date.now() / 1_000); }
58
+ //# sourceMappingURL=events.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"events.js","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqE,KAAK,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AAE/I,MAAM,MAAM,uBAAuB,GAAG,0BAA0B,CAAC;AACjE,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,yEAAwD;AAC/H,eAAO,MAAM,kBAAkB,kDAA0C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmG,KAAK,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AAG7K,MAAM,MAAM,uBAAuB,GAAG,0BAA0B,CAAC;AACjE,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,yEAAkN;AACzR,eAAO,MAAM,kBAAkB,kDAA0C,CAAC"}
package/dist/index.js CHANGED
@@ -1,5 +1,7 @@
1
- import { connectionPluginMetadata, defineMcpPluginConnection, definePlugin } from "@assemblyline-agents/core";
1
+ import { connectionPluginMetadata, defineConnectionPluginEvents, defineMcpPluginConnection, definePlugin } from "@assemblyline-agents/core";
2
+ import { mondayEvents } from "./events.js";
2
3
  const PLUGIN = connectionPluginMetadata("monday");
3
- export function defineMondayConnection(options) { return defineMcpPluginConnection(PLUGIN, options); }
4
+ export function defineMondayConnection(options) { const definition = defineMcpPluginConnection(PLUGIN, options); const events = defineConnectionPluginEvents(PLUGIN, options.events, mondayEvents); if (events)
5
+ definition.events = events; return definition; }
4
6
  export const assemblyLinePlugin = definePlugin({ connections: [PLUGIN] });
5
7
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,YAAY,EAAmC,MAAM,2BAA2B,CAAC;AAC/I,MAAM,MAAM,GAAG,wBAAwB,CAAC,QAAQ,CAAE,CAAC;AAEnD,MAAM,UAAU,sBAAsB,CAAC,OAAgC,IAAI,OAAO,yBAAyB,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,kBAAkB,GAAG,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,yBAAyB,EAAE,YAAY,EAAmC,MAAM,2BAA2B,CAAC;AAC7K,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,MAAM,MAAM,GAAG,wBAAwB,CAAC,QAAQ,CAAE,CAAC;AAEnD,MAAM,UAAU,sBAAsB,CAAC,OAAgC,IAAI,MAAM,UAAU,GAAG,yBAAyB,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,MAAM,MAAM,GAAG,4BAA4B,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC,CAAC,IAAI,MAAM;IAAE,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,OAAO,UAAU,CAAC,CAAC,CAAC;AACzR,MAAM,CAAC,MAAM,kBAAkB,GAAG,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assemblyline-agents/monday",
3
- "version": "2.0.0",
3
+ "version": "3.1.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -9,12 +9,11 @@
9
9
  }
10
10
  },
11
11
  "dependencies": {
12
- "@assemblyline-agents/core": "2.0.0"
12
+ "@assemblyline-agents/core": "3.1.0"
13
13
  },
14
14
  "description": "Official Assembly Line monday.com connection plugin.",
15
15
  "files": [
16
- "dist",
17
- "skills"
16
+ "dist"
18
17
  ],
19
18
  "engines": {
20
19
  "node": ">=22.19.0"
@@ -1,8 +0,0 @@
1
- ---
2
- name: monday
3
- description: Use configured monday.com tools for boards, items, workspaces, docs, and dashboards.
4
- ---
5
- # monday.com
6
- Use bounded workspace and board queries before loading large item collections.
7
-
8
- The deployment owner configures monday.com authorization. The scaffold is read-only; board, item, doc, dashboard, automation, notification, or upload mutations require writes to be enabled with the configured approval gate.