@assemblyline-agents/monday 0.1.0 → 1.0.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/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 `openevePlugin` 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. A bundled skill under `skills/` teaches agents how to use the connection's tools.
6
6
 
7
7
  ## Install
8
8
 
@@ -12,7 +12,7 @@ npm install @assemblyline-agents/monday
12
12
 
13
13
  ## Part of Assembly Line
14
14
 
15
- This package is part of [Assembly Line](https://github.com/jasonbadeaux/openeve), a vendor-neutral, filesystem-first framework for durable AI agents. See the developer documentation in [docs/developers/](https://github.com/jasonbadeaux/openeve/tree/main/docs/developers) for setup, agent authoring, and deployment guides.
15
+ This package is part of [Assembly Line](https://github.com/jasonbadeaux/assembly-line), a vendor-neutral, filesystem-first framework for durable AI agents. See the developer documentation in [docs/developers/](https://github.com/jasonbadeaux/assembly-line/tree/main/docs/developers) for setup, agent authoring, and deployment guides.
16
16
 
17
17
  ## License
18
18
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type McpPluginConnectionOptions } from "@assemblyline-agents/core";
2
2
  export type MondayConnectionOptions = McpPluginConnectionOptions;
3
3
  export declare function defineMondayConnection(options: MondayConnectionOptions): import("@assemblyline-agents/core").McpHttpClientConnectionDefinition;
4
- export declare const openevePlugin: import("@assemblyline-agents/core").PluginModule;
4
+ export declare const assemblyLinePlugin: import("@assemblyline-agents/core").PluginModule;
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -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,aAAa,kDAA0C,CAAC"}
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"}
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { connectionPluginMetadata, defineMcpPluginConnection, definePlugin } from "@assemblyline-agents/core";
2
2
  const PLUGIN = connectionPluginMetadata("monday");
3
3
  export function defineMondayConnection(options) { return defineMcpPluginConnection(PLUGIN, options); }
4
- export const openevePlugin = definePlugin({ connections: [PLUGIN] });
4
+ export const assemblyLinePlugin = definePlugin({ connections: [PLUGIN] });
5
5
  //# 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,aAAa,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,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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assemblyline-agents/monday",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -9,9 +9,9 @@
9
9
  }
10
10
  },
11
11
  "dependencies": {
12
- "@assemblyline-agents/core": "0.1.0"
12
+ "@assemblyline-agents/core": "1.0.0"
13
13
  },
14
- "description": "Official OpenEve monday.com connection plugin.",
14
+ "description": "Official Assembly Line monday.com connection plugin.",
15
15
  "files": [
16
16
  "dist",
17
17
  "skills"
@@ -22,16 +22,16 @@
22
22
  "license": "MIT",
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "git+https://github.com/jasonbadeaux/openeve.git",
25
+ "url": "git+https://github.com/jasonbadeaux/assembly-line.git",
26
26
  "directory": "packages/monday"
27
27
  },
28
28
  "bugs": {
29
- "url": "https://github.com/jasonbadeaux/openeve/issues"
29
+ "url": "https://github.com/jasonbadeaux/assembly-line/issues"
30
30
  },
31
- "homepage": "https://github.com/jasonbadeaux/openeve#readme",
32
- "author": "OpenEve contributors",
31
+ "homepage": "https://github.com/jasonbadeaux/assembly-line#readme",
32
+ "author": "Assembly Line contributors",
33
33
  "keywords": [
34
- "openeve",
34
+ "assembly-line",
35
35
  "ai",
36
36
  "agents",
37
37
  "monday",