@tasksai/install 0.1.38 → 0.1.39

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.
Files changed (2) hide show
  1. package/package.json +8 -2
  2. package/src/index.js +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tasksai/install",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "description": "Shared TasksAI MCP installer CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,13 @@
21
21
  "farmertasksai",
22
22
  "farmer",
23
23
  "realtortasksai",
24
- "realtor"
24
+ "realtor",
25
+ "electriciantasksai",
26
+ "hrtasksai",
27
+ "insurancetasksai",
28
+ "mortgagetasksai",
29
+ "mortuarytasksai",
30
+ "restauranttasksai"
25
31
  ],
26
32
  "license": "UNLICENSED",
27
33
  "repository": {
package/src/index.js CHANGED
@@ -21,6 +21,12 @@ const TRUSTED_PRODUCTION_SOURCES = new Map([
21
21
  ["farmer", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/farmer" }],
22
22
  ["realtor", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/realtor" }],
23
23
  ["teacher", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/teacher" }],
24
+ ["electrician", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/electrician" }],
25
+ ["hr", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/hr" }],
26
+ ["insurance", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/insurance" }],
27
+ ["mortgage", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/mortgage" }],
28
+ ["mortuary", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/mortuary" }],
29
+ ["restaurant", { repo: OFFICIAL_WRAPPER_REPO, ref: "main", path: "verticals/restaurant" }],
24
30
  ["contractor", { repo: "https://github.com/TasksAI-Official/contractortasksai-mcp", ref: "main", path: "", legacyManifestPathOptional: true }],
25
31
  ["therapist", { repo: "https://github.com/TasksAI-Official/therapisttasksai-mcp", ref: "main", path: "", legacyManifestPathOptional: true }],
26
32
  ["marketing", { repo: "https://github.com/TasksAI-Official/marketingtasksai-mcp", ref: "main", path: "", legacyManifestPathOptional: true }],
@@ -36,6 +42,12 @@ const DEFAULT_SOURCES = {
36
42
  farmer: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/farmer",
37
43
  realtor: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/realtor",
38
44
  teacher: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/teacher",
45
+ electrician: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/electrician",
46
+ hr: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/hr",
47
+ insurance: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/insurance",
48
+ mortgage: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/mortgage",
49
+ mortuary: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/mortuary",
50
+ restaurant: "https://github.com/TasksAI-Official/tasksai-mcp-wrappers/tree/main/verticals/restaurant",
39
51
  contractor: "https://github.com/TasksAI-Official/contractortasksai-mcp",
40
52
  therapist: "https://github.com/TasksAI-Official/therapisttasksai-mcp",
41
53
  marketing: "https://github.com/TasksAI-Official/marketingtasksai-mcp",