@lov3kaizen/agentsea-crews 0.5.1

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.
@@ -0,0 +1,29 @@
1
+ import {
2
+ CodeReviewTasks,
3
+ CustomerSupportTasks,
4
+ ResearchTasks,
5
+ WritingTasks,
6
+ createCodeReviewCrew,
7
+ createCodeReviewCrewConfig,
8
+ createCustomerSupportCrew,
9
+ createCustomerSupportCrewConfig,
10
+ createResearchCrew,
11
+ createResearchCrewConfig,
12
+ createWritingCrew,
13
+ createWritingCrewConfig
14
+ } from "../chunk-G3PAPYOI.mjs";
15
+ import "../chunk-QMK3HWFX.mjs";
16
+ export {
17
+ CodeReviewTasks,
18
+ CustomerSupportTasks,
19
+ ResearchTasks,
20
+ WritingTasks,
21
+ createCodeReviewCrew,
22
+ createCodeReviewCrewConfig,
23
+ createCustomerSupportCrew,
24
+ createCustomerSupportCrewConfig,
25
+ createResearchCrew,
26
+ createResearchCrewConfig,
27
+ createWritingCrew,
28
+ createWritingCrewConfig
29
+ };
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@lov3kaizen/agentsea-crews",
3
+ "version": "0.5.1",
4
+ "description": "Multi-agent orchestration framework for AgentSea. Build, compose, and orchestrate agent crews with role-based coordination, task delegation, and workflow automation.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "require": "./dist/index.js",
12
+ "import": "./dist/index.mjs"
13
+ },
14
+ "./nestjs": {
15
+ "types": "./dist/nestjs/index.d.ts",
16
+ "require": "./dist/nestjs/index.js",
17
+ "import": "./dist/nestjs/index.mjs"
18
+ },
19
+ "./templates": {
20
+ "types": "./dist/templates/index.d.ts",
21
+ "require": "./dist/templates/index.js",
22
+ "import": "./dist/templates/index.mjs"
23
+ }
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md"
28
+ ],
29
+ "dependencies": {
30
+ "eventemitter3": "^5.0.0",
31
+ "nanoid": "^5.0.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^20.11.0",
35
+ "@vitest/coverage-v8": "^1.2.0",
36
+ "tsup": "^8.0.1",
37
+ "typescript": "^5.3.3",
38
+ "vitest": "^1.2.0"
39
+ },
40
+ "peerDependencies": {
41
+ "@nestjs/common": "^10.0.0",
42
+ "@nestjs/core": "^10.0.0",
43
+ "@lov3kaizen/agentsea-core": "0.5.1"
44
+ },
45
+ "peerDependenciesMeta": {
46
+ "@nestjs/common": {
47
+ "optional": true
48
+ },
49
+ "@nestjs/core": {
50
+ "optional": true
51
+ }
52
+ },
53
+ "keywords": [
54
+ "agentsea",
55
+ "crews",
56
+ "multi-agent",
57
+ "orchestration",
58
+ "agents",
59
+ "ai",
60
+ "llm",
61
+ "delegation",
62
+ "workflow",
63
+ "collaboration",
64
+ "typescript"
65
+ ],
66
+ "engines": {
67
+ "node": ">=18.0.0"
68
+ },
69
+ "author": "lovekaizen",
70
+ "license": "MIT",
71
+ "repository": {
72
+ "type": "git",
73
+ "url": "https://github.com/lovekaizen/agentsea.git",
74
+ "directory": "packages/crews"
75
+ },
76
+ "homepage": "https://agentsea.dev",
77
+ "publishConfig": {
78
+ "access": "public"
79
+ },
80
+ "scripts": {
81
+ "build": "tsup src/index.ts src/nestjs/index.ts src/templates/index.ts --format cjs,esm --clean --external reflect-metadata --external @nestjs/common --external @nestjs/core",
82
+ "dev": "tsup src/index.ts src/nestjs/index.ts src/templates/index.ts --format cjs,esm --dts --watch --external reflect-metadata --external @nestjs/common --external @nestjs/core",
83
+ "test": "vitest run",
84
+ "test:watch": "vitest",
85
+ "test:cov": "vitest run --coverage",
86
+ "type-check": "tsc --noEmit",
87
+ "clean": "rm -rf dist"
88
+ }
89
+ }