@lov3kaizen/agentsea-crews 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -50,7 +50,7 @@ const config: CrewConfig = {
50
50
  {
51
51
  name: 'researcher',
52
52
  role: researcherRole,
53
- model: 'claude-sonnet-4-20250514',
53
+ model: 'claude-sonnet-4-6',
54
54
  provider: 'anthropic',
55
55
  },
56
56
  ],
@@ -149,7 +149,7 @@ function createResearchCrewConfig(options = {}) {
149
149
  {
150
150
  name: "researcher",
151
151
  role: researcherRole,
152
- model: options.model ?? "claude-sonnet-4-20250514",
152
+ model: options.model ?? "claude-opus-4-8",
153
153
  provider: options.provider ?? "anthropic",
154
154
  tools: ["web-search", "read-document", ...options.tools ?? []],
155
155
  temperature: 0.3
@@ -157,7 +157,7 @@ function createResearchCrewConfig(options = {}) {
157
157
  {
158
158
  name: "analyst",
159
159
  role: analystRole,
160
- model: options.model ?? "claude-sonnet-4-20250514",
160
+ model: options.model ?? "claude-opus-4-8",
161
161
  provider: options.provider ?? "anthropic",
162
162
  tools: ["calculator", "data-analysis", ...options.tools ?? []],
163
163
  temperature: 0.2
@@ -167,7 +167,7 @@ function createResearchCrewConfig(options = {}) {
167
167
  agents.push({
168
168
  name: "writer",
169
169
  role: writerRole,
170
- model: options.model ?? "claude-sonnet-4-20250514",
170
+ model: options.model ?? "claude-opus-4-8",
171
171
  provider: options.provider ?? "anthropic",
172
172
  tools: ["text-editor", ...options.tools ?? []],
173
173
  temperature: 0.5
@@ -380,7 +380,7 @@ Your target audience is: ${options.audience}` : "";
380
380
  ...editorRole,
381
381
  systemPrompt: editorRole.systemPrompt + contentTypePrompt + audiencePrompt
382
382
  },
383
- model: options.model ?? "claude-sonnet-4-20250514",
383
+ model: options.model ?? "claude-opus-4-8",
384
384
  provider: options.provider ?? "anthropic",
385
385
  tools: ["text-editor", ...options.tools ?? []],
386
386
  temperature: 0.3
@@ -391,7 +391,7 @@ Your target audience is: ${options.audience}` : "";
391
391
  ...writerRole2,
392
392
  systemPrompt: writerRole2.systemPrompt + contentTypePrompt + audiencePrompt
393
393
  },
394
- model: options.model ?? "claude-sonnet-4-20250514",
394
+ model: options.model ?? "claude-opus-4-8",
395
395
  provider: options.provider ?? "anthropic",
396
396
  tools: ["web-search", "text-editor", ...options.tools ?? []],
397
397
  temperature: 0.7
@@ -399,7 +399,7 @@ Your target audience is: ${options.audience}` : "";
399
399
  {
400
400
  name: "proofreader",
401
401
  role: proofreaderRole,
402
- model: options.model ?? "claude-sonnet-4-20250514",
402
+ model: options.model ?? "claude-opus-4-8",
403
403
  provider: options.provider ?? "anthropic",
404
404
  tools: ["grammar-checker", "spell-checker", ...options.tools ?? []],
405
405
  temperature: 0.1
@@ -638,7 +638,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
638
638
  ...seniorDeveloperRole,
639
639
  systemPrompt: seniorDeveloperRole.systemPrompt + languagePrompt + strictnessPrompt
640
640
  },
641
- model: options.model ?? "claude-sonnet-4-20250514",
641
+ model: options.model ?? "claude-opus-4-8",
642
642
  provider: options.provider ?? "anthropic",
643
643
  tools: ["code-analyzer", "linter", ...options.tools ?? []],
644
644
  temperature: 0.2
@@ -651,7 +651,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
651
651
  ...securityAnalystRole,
652
652
  systemPrompt: securityAnalystRole.systemPrompt + languagePrompt
653
653
  },
654
- model: options.model ?? "claude-sonnet-4-20250514",
654
+ model: options.model ?? "claude-opus-4-8",
655
655
  provider: options.provider ?? "anthropic",
656
656
  tools: [
657
657
  "security-scanner",
@@ -668,7 +668,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
668
668
  ...performanceEngineerRole,
669
669
  systemPrompt: performanceEngineerRole.systemPrompt + languagePrompt
670
670
  },
671
- model: options.model ?? "claude-sonnet-4-20250514",
671
+ model: options.model ?? "claude-opus-4-8",
672
672
  provider: options.provider ?? "anthropic",
673
673
  tools: ["profiler", "complexity-analyzer", ...options.tools ?? []],
674
674
  temperature: 0.2
@@ -926,7 +926,7 @@ You support ${options.productName}.` : "";
926
926
  ...tier1AgentRole,
927
927
  systemPrompt: tier1AgentRole.systemPrompt + contextAddition
928
928
  },
929
- model: options.model ?? "claude-sonnet-4-20250514",
929
+ model: options.model ?? "claude-opus-4-8",
930
930
  provider: options.provider ?? "anthropic",
931
931
  tools: ["knowledge-base", "ticket-system", ...options.tools ?? []],
932
932
  temperature: 0.4
@@ -939,7 +939,7 @@ You support ${options.productName}.` : "";
939
939
  ...specialistRole,
940
940
  systemPrompt: specialistRole.systemPrompt + contextAddition
941
941
  },
942
- model: options.model ?? "claude-sonnet-4-20250514",
942
+ model: options.model ?? "claude-opus-4-8",
943
943
  provider: options.provider ?? "anthropic",
944
944
  tools: [
945
945
  "diagnostic-tools",
@@ -957,7 +957,7 @@ You support ${options.productName}.` : "";
957
957
  ...escalationManagerRole,
958
958
  systemPrompt: escalationManagerRole.systemPrompt + contextAddition
959
959
  },
960
- model: options.model ?? "claude-sonnet-4-20250514",
960
+ model: options.model ?? "claude-opus-4-8",
961
961
  provider: options.provider ?? "anthropic",
962
962
  tools: [
963
963
  "crm",
package/dist/index.js CHANGED
@@ -7781,7 +7781,7 @@ function createResearchCrewConfig(options = {}) {
7781
7781
  {
7782
7782
  name: "researcher",
7783
7783
  role: researcherRole,
7784
- model: options.model ?? "claude-sonnet-4-20250514",
7784
+ model: options.model ?? "claude-opus-4-8",
7785
7785
  provider: options.provider ?? "anthropic",
7786
7786
  tools: ["web-search", "read-document", ...options.tools ?? []],
7787
7787
  temperature: 0.3
@@ -7789,7 +7789,7 @@ function createResearchCrewConfig(options = {}) {
7789
7789
  {
7790
7790
  name: "analyst",
7791
7791
  role: analystRole,
7792
- model: options.model ?? "claude-sonnet-4-20250514",
7792
+ model: options.model ?? "claude-opus-4-8",
7793
7793
  provider: options.provider ?? "anthropic",
7794
7794
  tools: ["calculator", "data-analysis", ...options.tools ?? []],
7795
7795
  temperature: 0.2
@@ -7799,7 +7799,7 @@ function createResearchCrewConfig(options = {}) {
7799
7799
  agents.push({
7800
7800
  name: "writer",
7801
7801
  role: writerRole,
7802
- model: options.model ?? "claude-sonnet-4-20250514",
7802
+ model: options.model ?? "claude-opus-4-8",
7803
7803
  provider: options.provider ?? "anthropic",
7804
7804
  tools: ["text-editor", ...options.tools ?? []],
7805
7805
  temperature: 0.5
@@ -8012,7 +8012,7 @@ Your target audience is: ${options.audience}` : "";
8012
8012
  ...editorRole,
8013
8013
  systemPrompt: editorRole.systemPrompt + contentTypePrompt + audiencePrompt
8014
8014
  },
8015
- model: options.model ?? "claude-sonnet-4-20250514",
8015
+ model: options.model ?? "claude-opus-4-8",
8016
8016
  provider: options.provider ?? "anthropic",
8017
8017
  tools: ["text-editor", ...options.tools ?? []],
8018
8018
  temperature: 0.3
@@ -8023,7 +8023,7 @@ Your target audience is: ${options.audience}` : "";
8023
8023
  ...writerRole2,
8024
8024
  systemPrompt: writerRole2.systemPrompt + contentTypePrompt + audiencePrompt
8025
8025
  },
8026
- model: options.model ?? "claude-sonnet-4-20250514",
8026
+ model: options.model ?? "claude-opus-4-8",
8027
8027
  provider: options.provider ?? "anthropic",
8028
8028
  tools: ["web-search", "text-editor", ...options.tools ?? []],
8029
8029
  temperature: 0.7
@@ -8031,7 +8031,7 @@ Your target audience is: ${options.audience}` : "";
8031
8031
  {
8032
8032
  name: "proofreader",
8033
8033
  role: proofreaderRole,
8034
- model: options.model ?? "claude-sonnet-4-20250514",
8034
+ model: options.model ?? "claude-opus-4-8",
8035
8035
  provider: options.provider ?? "anthropic",
8036
8036
  tools: ["grammar-checker", "spell-checker", ...options.tools ?? []],
8037
8037
  temperature: 0.1
@@ -8270,7 +8270,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
8270
8270
  ...seniorDeveloperRole,
8271
8271
  systemPrompt: seniorDeveloperRole.systemPrompt + languagePrompt + strictnessPrompt
8272
8272
  },
8273
- model: options.model ?? "claude-sonnet-4-20250514",
8273
+ model: options.model ?? "claude-opus-4-8",
8274
8274
  provider: options.provider ?? "anthropic",
8275
8275
  tools: ["code-analyzer", "linter", ...options.tools ?? []],
8276
8276
  temperature: 0.2
@@ -8283,7 +8283,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
8283
8283
  ...securityAnalystRole,
8284
8284
  systemPrompt: securityAnalystRole.systemPrompt + languagePrompt
8285
8285
  },
8286
- model: options.model ?? "claude-sonnet-4-20250514",
8286
+ model: options.model ?? "claude-opus-4-8",
8287
8287
  provider: options.provider ?? "anthropic",
8288
8288
  tools: [
8289
8289
  "security-scanner",
@@ -8300,7 +8300,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
8300
8300
  ...performanceEngineerRole,
8301
8301
  systemPrompt: performanceEngineerRole.systemPrompt + languagePrompt
8302
8302
  },
8303
- model: options.model ?? "claude-sonnet-4-20250514",
8303
+ model: options.model ?? "claude-opus-4-8",
8304
8304
  provider: options.provider ?? "anthropic",
8305
8305
  tools: ["profiler", "complexity-analyzer", ...options.tools ?? []],
8306
8306
  temperature: 0.2
@@ -8558,7 +8558,7 @@ You support ${options.productName}.` : "";
8558
8558
  ...tier1AgentRole,
8559
8559
  systemPrompt: tier1AgentRole.systemPrompt + contextAddition
8560
8560
  },
8561
- model: options.model ?? "claude-sonnet-4-20250514",
8561
+ model: options.model ?? "claude-opus-4-8",
8562
8562
  provider: options.provider ?? "anthropic",
8563
8563
  tools: ["knowledge-base", "ticket-system", ...options.tools ?? []],
8564
8564
  temperature: 0.4
@@ -8571,7 +8571,7 @@ You support ${options.productName}.` : "";
8571
8571
  ...specialistRole,
8572
8572
  systemPrompt: specialistRole.systemPrompt + contextAddition
8573
8573
  },
8574
- model: options.model ?? "claude-sonnet-4-20250514",
8574
+ model: options.model ?? "claude-opus-4-8",
8575
8575
  provider: options.provider ?? "anthropic",
8576
8576
  tools: [
8577
8577
  "diagnostic-tools",
@@ -8589,7 +8589,7 @@ You support ${options.productName}.` : "";
8589
8589
  ...escalationManagerRole,
8590
8590
  systemPrompt: escalationManagerRole.systemPrompt + contextAddition
8591
8591
  },
8592
- model: options.model ?? "claude-sonnet-4-20250514",
8592
+ model: options.model ?? "claude-opus-4-8",
8593
8593
  provider: options.provider ?? "anthropic",
8594
8594
  tools: [
8595
8595
  "crm",
package/dist/index.mjs CHANGED
@@ -1,3 +1,9 @@
1
+ import {
2
+ CrewDashboard,
3
+ DebugMode,
4
+ createDashboard,
5
+ createDebugMode
6
+ } from "./chunk-4PF73ECN.mjs";
1
7
  import {
2
8
  CodeReviewTasks,
3
9
  CustomerSupportTasks,
@@ -11,13 +17,7 @@ import {
11
17
  createResearchCrewConfig,
12
18
  createWritingCrew,
13
19
  createWritingCrewConfig
14
- } from "./chunk-G3PAPYOI.mjs";
15
- import {
16
- CrewDashboard,
17
- DebugMode,
18
- createDashboard,
19
- createDebugMode
20
- } from "./chunk-4PF73ECN.mjs";
20
+ } from "./chunk-TFB7N65B.mjs";
21
21
  import {
22
22
  AgentCapabilities,
23
23
  AgentRegistry,
@@ -4704,7 +4704,7 @@ function createResearchCrewConfig(options = {}) {
4704
4704
  {
4705
4705
  name: "researcher",
4706
4706
  role: researcherRole,
4707
- model: options.model ?? "claude-sonnet-4-20250514",
4707
+ model: options.model ?? "claude-opus-4-8",
4708
4708
  provider: options.provider ?? "anthropic",
4709
4709
  tools: ["web-search", "read-document", ...options.tools ?? []],
4710
4710
  temperature: 0.3
@@ -4712,7 +4712,7 @@ function createResearchCrewConfig(options = {}) {
4712
4712
  {
4713
4713
  name: "analyst",
4714
4714
  role: analystRole,
4715
- model: options.model ?? "claude-sonnet-4-20250514",
4715
+ model: options.model ?? "claude-opus-4-8",
4716
4716
  provider: options.provider ?? "anthropic",
4717
4717
  tools: ["calculator", "data-analysis", ...options.tools ?? []],
4718
4718
  temperature: 0.2
@@ -4722,7 +4722,7 @@ function createResearchCrewConfig(options = {}) {
4722
4722
  agents.push({
4723
4723
  name: "writer",
4724
4724
  role: writerRole,
4725
- model: options.model ?? "claude-sonnet-4-20250514",
4725
+ model: options.model ?? "claude-opus-4-8",
4726
4726
  provider: options.provider ?? "anthropic",
4727
4727
  tools: ["text-editor", ...options.tools ?? []],
4728
4728
  temperature: 0.5
@@ -4935,7 +4935,7 @@ Your target audience is: ${options.audience}` : "";
4935
4935
  ...editorRole,
4936
4936
  systemPrompt: editorRole.systemPrompt + contentTypePrompt + audiencePrompt
4937
4937
  },
4938
- model: options.model ?? "claude-sonnet-4-20250514",
4938
+ model: options.model ?? "claude-opus-4-8",
4939
4939
  provider: options.provider ?? "anthropic",
4940
4940
  tools: ["text-editor", ...options.tools ?? []],
4941
4941
  temperature: 0.3
@@ -4946,7 +4946,7 @@ Your target audience is: ${options.audience}` : "";
4946
4946
  ...writerRole2,
4947
4947
  systemPrompt: writerRole2.systemPrompt + contentTypePrompt + audiencePrompt
4948
4948
  },
4949
- model: options.model ?? "claude-sonnet-4-20250514",
4949
+ model: options.model ?? "claude-opus-4-8",
4950
4950
  provider: options.provider ?? "anthropic",
4951
4951
  tools: ["web-search", "text-editor", ...options.tools ?? []],
4952
4952
  temperature: 0.7
@@ -4954,7 +4954,7 @@ Your target audience is: ${options.audience}` : "";
4954
4954
  {
4955
4955
  name: "proofreader",
4956
4956
  role: proofreaderRole,
4957
- model: options.model ?? "claude-sonnet-4-20250514",
4957
+ model: options.model ?? "claude-opus-4-8",
4958
4958
  provider: options.provider ?? "anthropic",
4959
4959
  tools: ["grammar-checker", "spell-checker", ...options.tools ?? []],
4960
4960
  temperature: 0.1
@@ -5193,7 +5193,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
5193
5193
  ...seniorDeveloperRole,
5194
5194
  systemPrompt: seniorDeveloperRole.systemPrompt + languagePrompt + strictnessPrompt
5195
5195
  },
5196
- model: options.model ?? "claude-sonnet-4-20250514",
5196
+ model: options.model ?? "claude-opus-4-8",
5197
5197
  provider: options.provider ?? "anthropic",
5198
5198
  tools: ["code-analyzer", "linter", ...options.tools ?? []],
5199
5199
  temperature: 0.2
@@ -5206,7 +5206,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
5206
5206
  ...securityAnalystRole,
5207
5207
  systemPrompt: securityAnalystRole.systemPrompt + languagePrompt
5208
5208
  },
5209
- model: options.model ?? "claude-sonnet-4-20250514",
5209
+ model: options.model ?? "claude-opus-4-8",
5210
5210
  provider: options.provider ?? "anthropic",
5211
5211
  tools: [
5212
5212
  "security-scanner",
@@ -5223,7 +5223,7 @@ You specialize in: ${options.languages.join(", ")}` : "";
5223
5223
  ...performanceEngineerRole,
5224
5224
  systemPrompt: performanceEngineerRole.systemPrompt + languagePrompt
5225
5225
  },
5226
- model: options.model ?? "claude-sonnet-4-20250514",
5226
+ model: options.model ?? "claude-opus-4-8",
5227
5227
  provider: options.provider ?? "anthropic",
5228
5228
  tools: ["profiler", "complexity-analyzer", ...options.tools ?? []],
5229
5229
  temperature: 0.2
@@ -5481,7 +5481,7 @@ You support ${options.productName}.` : "";
5481
5481
  ...tier1AgentRole,
5482
5482
  systemPrompt: tier1AgentRole.systemPrompt + contextAddition
5483
5483
  },
5484
- model: options.model ?? "claude-sonnet-4-20250514",
5484
+ model: options.model ?? "claude-opus-4-8",
5485
5485
  provider: options.provider ?? "anthropic",
5486
5486
  tools: ["knowledge-base", "ticket-system", ...options.tools ?? []],
5487
5487
  temperature: 0.4
@@ -5494,7 +5494,7 @@ You support ${options.productName}.` : "";
5494
5494
  ...specialistRole,
5495
5495
  systemPrompt: specialistRole.systemPrompt + contextAddition
5496
5496
  },
5497
- model: options.model ?? "claude-sonnet-4-20250514",
5497
+ model: options.model ?? "claude-opus-4-8",
5498
5498
  provider: options.provider ?? "anthropic",
5499
5499
  tools: [
5500
5500
  "diagnostic-tools",
@@ -5512,7 +5512,7 @@ You support ${options.productName}.` : "";
5512
5512
  ...escalationManagerRole,
5513
5513
  systemPrompt: escalationManagerRole.systemPrompt + contextAddition
5514
5514
  },
5515
- model: options.model ?? "claude-sonnet-4-20250514",
5515
+ model: options.model ?? "claude-opus-4-8",
5516
5516
  provider: options.provider ?? "anthropic",
5517
5517
  tools: [
5518
5518
  "crm",
@@ -11,7 +11,7 @@ import {
11
11
  createResearchCrewConfig,
12
12
  createWritingCrew,
13
13
  createWritingCrewConfig
14
- } from "../chunk-G3PAPYOI.mjs";
14
+ } from "../chunk-TFB7N65B.mjs";
15
15
  import "../chunk-QMK3HWFX.mjs";
16
16
  export {
17
17
  CodeReviewTasks,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lov3kaizen/agentsea-crews",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Multi-agent orchestration framework for AgentSea. Build, compose, and orchestrate agent crews with role-based coordination, task delegation, and workflow automation.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -32,15 +32,15 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^20.11.0",
35
- "@vitest/coverage-v8": "^1.2.0",
35
+ "@vitest/coverage-v8": "^3.2.6",
36
36
  "tsup": "^8.0.1",
37
37
  "typescript": "^5.3.3",
38
- "vitest": "^1.2.0"
38
+ "vitest": "^3.2.6"
39
39
  },
40
40
  "peerDependencies": {
41
- "@nestjs/common": "^10.0.0",
42
- "@nestjs/core": "^10.0.0",
43
- "@lov3kaizen/agentsea-core": "0.6.0"
41
+ "@nestjs/common": "^10.0.0 || ^11.0.0",
42
+ "@nestjs/core": "^10.0.0 || ^11.0.0",
43
+ "@lov3kaizen/agentsea-core": "1.0.1"
44
44
  },
45
45
  "peerDependenciesMeta": {
46
46
  "@nestjs/common": {
@@ -64,7 +64,7 @@
64
64
  "typescript"
65
65
  ],
66
66
  "engines": {
67
- "node": ">=18.0.0"
67
+ "node": ">=20.0.0"
68
68
  },
69
69
  "author": "lovekaizen",
70
70
  "license": "MIT",