@estevia/evafusion-agent 1.9.3 → 1.9.6
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/dist/index.js +11 -11
- package/dist/index.mjs +112 -51
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1515,24 +1515,24 @@ const He = [
|
|
|
1515
1515
|
data: '[{"task":"CS Curriculum Design","owner":"Dr. Aris","points":13,"priority":"P0","sprint":1},{"task":"Neuro Lab Setup","owner":"Prof. Elena","points":21,"priority":"P0","sprint":1},{"task":"Accreditation Audit","owner":"Dr. Aris","points":8,"priority":"P1","sprint":2}]',
|
|
1516
1516
|
team: [
|
|
1517
1517
|
{
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
skills: [
|
|
1522
|
-
"Curriculum",
|
|
1523
|
-
"Agile"
|
|
1524
|
-
],
|
|
1525
|
-
availability: 100
|
|
1518
|
+
name: "Dr. Sarah Chen",
|
|
1519
|
+
role: "Program Director",
|
|
1520
|
+
skills: "Curriculum Design, Accreditation"
|
|
1526
1521
|
},
|
|
1527
1522
|
{
|
|
1528
|
-
|
|
1529
|
-
|
|
1523
|
+
name: "Prof. James Wilson",
|
|
1524
|
+
role: "CS Lead",
|
|
1525
|
+
skills: "Neural Networks, Lab Infrastructure"
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
name: "Dr. Elena Rossi",
|
|
1530
1529
|
role: "Neuroscience Lead",
|
|
1531
|
-
skills:
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1530
|
+
skills: "Cognitive Science, Research"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
name: "Mark Thompson",
|
|
1534
|
+
role: "IT Architect",
|
|
1535
|
+
skills: "Virtualization, GPU Labs"
|
|
1536
1536
|
}
|
|
1537
1537
|
]
|
|
1538
1538
|
},
|
|
@@ -1572,9 +1572,22 @@ const He = [
|
|
|
1572
1572
|
vertical: "MANUFACTURING",
|
|
1573
1573
|
variant: "MAESTRO",
|
|
1574
1574
|
icon: "Settings",
|
|
1575
|
-
focus: "
|
|
1575
|
+
focus: "ROADMAP",
|
|
1576
1576
|
prompt: "Simulate a phased startup of the main assembly line. Sequence the activation of robotic cells, conveyor synchronization, and quality gate initialization.",
|
|
1577
|
-
industryContext: "Factory floor simulation. Siemens PLC controller logic."
|
|
1577
|
+
industryContext: "Factory floor simulation. Siemens PLC controller logic.",
|
|
1578
|
+
data: '[{"task":"Robotic Cell Sync","owner":"Eng_1","points":13,"priority":"P0","sprint":1},{"task":"Conveyor Timing","owner":"Eng_2","points":8,"priority":"P0","sprint":1}]',
|
|
1579
|
+
team: [
|
|
1580
|
+
{
|
|
1581
|
+
name: "Eng_1",
|
|
1582
|
+
role: "Automation Lead",
|
|
1583
|
+
skills: "Robotics, PLC"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
name: "Eng_2",
|
|
1587
|
+
role: "Mechatronics Eng",
|
|
1588
|
+
skills: "Conveyors, Sensors"
|
|
1589
|
+
}
|
|
1590
|
+
]
|
|
1578
1591
|
},
|
|
1579
1592
|
{
|
|
1580
1593
|
id: "fin-maestro",
|
|
@@ -1582,9 +1595,22 @@ const He = [
|
|
|
1582
1595
|
vertical: "FINANCE",
|
|
1583
1596
|
variant: "MAESTRO",
|
|
1584
1597
|
icon: "Activity",
|
|
1585
|
-
focus: "
|
|
1598
|
+
focus: "ROADMAP",
|
|
1586
1599
|
prompt: "Orchestrate the rollout of a new trade-execution engine. Coordinate the load-testing phase across 3 global regions and manage the phased cutover from the legacy system.",
|
|
1587
|
-
industryContext: "High-frequency trading environment. Risk-controlled deployment."
|
|
1600
|
+
industryContext: "High-frequency trading environment. Risk-controlled deployment.",
|
|
1601
|
+
data: '[{"task":"Region A Cutover","owner":"Dev_X","points":21,"priority":"P0","sprint":1},{"task":"Load Testing","owner":"Dev_Y","points":13,"priority":"P0","sprint":1}]',
|
|
1602
|
+
team: [
|
|
1603
|
+
{
|
|
1604
|
+
name: "Dev_X",
|
|
1605
|
+
role: "SRE Lead",
|
|
1606
|
+
skills: "Global Infra, Cutover"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
name: "Dev_Y",
|
|
1610
|
+
role: "QA Eng",
|
|
1611
|
+
skills: "Load Balancing, Performance"
|
|
1612
|
+
}
|
|
1613
|
+
]
|
|
1588
1614
|
},
|
|
1589
1615
|
{
|
|
1590
1616
|
id: "re-maestro",
|
|
@@ -1627,53 +1653,71 @@ const He = [
|
|
|
1627
1653
|
}
|
|
1628
1654
|
]
|
|
1629
1655
|
},
|
|
1656
|
+
{
|
|
1657
|
+
id: "retail-maestro-discovery",
|
|
1658
|
+
name: "E-commerce Pivot Map",
|
|
1659
|
+
vertical: "RETAIL",
|
|
1660
|
+
variant: "MAESTRO",
|
|
1661
|
+
icon: "Laptop",
|
|
1662
|
+
focus: "DISCOVERY",
|
|
1663
|
+
prompt: "Orchestrate a generative discovery phase for a traditional retailer pivoting to a headless e-commerce model. Identify key personnel transitions needed from store ops to digital logistics.",
|
|
1664
|
+
industryContext: "Global Retail Brand. Digital transformation.",
|
|
1665
|
+
team: [
|
|
1666
|
+
{
|
|
1667
|
+
name: "Digital_Lead",
|
|
1668
|
+
role: "CTO (E-comm)",
|
|
1669
|
+
skills: "Headless Architecture"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
name: "Logistics_Sync",
|
|
1673
|
+
role: "Supply Chain Lead",
|
|
1674
|
+
skills: "Omni-channel Fulfillment"
|
|
1675
|
+
}
|
|
1676
|
+
]
|
|
1677
|
+
},
|
|
1630
1678
|
{
|
|
1631
1679
|
id: "retail-maestro",
|
|
1632
1680
|
name: "Global Store Launch",
|
|
1633
1681
|
vertical: "RETAIL",
|
|
1634
1682
|
variant: "MAESTRO",
|
|
1635
1683
|
icon: "Store",
|
|
1636
|
-
focus: "
|
|
1684
|
+
focus: "ROADMAP",
|
|
1637
1685
|
prompt: "Orchestrate the simultaneous launch of 5 flagship stores across Europe. Coordinate inventory logistics, staff training cycles, and localized marketing campaign activations.",
|
|
1638
|
-
industryContext: "Fashion Retail Group. High-visibility market entry."
|
|
1686
|
+
industryContext: "Fashion Retail Group. High-visibility market entry.",
|
|
1687
|
+
data: '[{"task":"Logistics Sync","owner":"Log_Lead","points":13,"priority":"P0","sprint":1},{"task":"Staff Training","owner":"HR_Lead","points":8,"priority":"P1","sprint":1}]',
|
|
1688
|
+
team: [
|
|
1689
|
+
{
|
|
1690
|
+
name: "Log_Lead",
|
|
1691
|
+
role: "Logistics Director",
|
|
1692
|
+
skills: "Supply Chain, EU Ops"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
name: "HR_Lead",
|
|
1696
|
+
role: "Training Manager",
|
|
1697
|
+
skills: "Retail Staffing"
|
|
1698
|
+
}
|
|
1699
|
+
]
|
|
1639
1700
|
},
|
|
1640
1701
|
{
|
|
1641
1702
|
id: "health-maestro",
|
|
1642
1703
|
name: "Clinical Trial Pilot",
|
|
1643
1704
|
vertical: "HEALTHCARE",
|
|
1644
1705
|
variant: "MAESTRO",
|
|
1645
|
-
icon: "
|
|
1706
|
+
icon: "FlaskConical",
|
|
1646
1707
|
focus: "ROADMAP",
|
|
1647
1708
|
prompt: "Orchestrate the Phase II rollout of a clinical trial. Coordinate the patient enrollment phase across 12 hospitals, manage the neural data ingestion cycle, and track regulatory reporting milestones.",
|
|
1648
1709
|
industryContext: "Global BioTech firm. Multi-center clinical trial.",
|
|
1649
|
-
data: '[{"task":"Patient Enrollment","owner":"Dr.
|
|
1710
|
+
data: '[{"task":"Patient Enrollment","owner":"Dr. Miller","points":34,"priority":"P0","sprint":1},{"task":"Data Ingestion","owner":"Sarah Q.","points":13,"priority":"P0","sprint":1}]',
|
|
1650
1711
|
team: [
|
|
1651
1712
|
{
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
skills: [
|
|
1656
|
-
"Clinical Trials"
|
|
1657
|
-
],
|
|
1658
|
-
availability: 100
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
id: "res-2",
|
|
1662
|
-
name: "Marcus K.",
|
|
1663
|
-
role: "Backend Lead",
|
|
1664
|
-
skills: [
|
|
1665
|
-
"Data Pipelines"
|
|
1666
|
-
],
|
|
1667
|
-
availability: 100
|
|
1713
|
+
name: "Dr. Miller",
|
|
1714
|
+
role: "Clinical Lead",
|
|
1715
|
+
skills: "Trial Management"
|
|
1668
1716
|
},
|
|
1669
1717
|
{
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
skills: [
|
|
1674
|
-
"Compliance"
|
|
1675
|
-
],
|
|
1676
|
-
availability: 100
|
|
1718
|
+
name: "Sarah Q.",
|
|
1719
|
+
role: "Data Scientist",
|
|
1720
|
+
skills: "Neural Ingestion, Analysis"
|
|
1677
1721
|
}
|
|
1678
1722
|
]
|
|
1679
1723
|
},
|
|
@@ -1874,7 +1918,24 @@ const He = [
|
|
|
1874
1918
|
focus: "ROADMAP",
|
|
1875
1919
|
prompt: "Orchestrate the migration of 50+ microservices to a zero-trust CI/CD pipeline. Coordinate between the security team and platform engineers to ensure zero downtime.",
|
|
1876
1920
|
industryContext: "Financial services tech. High compliance environment.",
|
|
1877
|
-
data: '[{"task":"Security Audit","owner":"Marcus K.","points":13,"priority":"P0","sprint":1},{"task":"Vault Integration","owner":"David L.","points":8,"priority":"P0","sprint":1}]'
|
|
1921
|
+
data: '[{"task":"Security Audit","owner":"Marcus K.","points":13,"priority":"P0","sprint":1},{"task":"Vault Integration","owner":"David L.","points":8,"priority":"P0","sprint":1}]',
|
|
1922
|
+
team: [
|
|
1923
|
+
{
|
|
1924
|
+
name: "Marcus K.",
|
|
1925
|
+
role: "Security Engineer",
|
|
1926
|
+
skills: "Zero Trust, Audit"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
name: "David L.",
|
|
1930
|
+
role: "Platform Engineer",
|
|
1931
|
+
skills: "Kubernetes, Vault"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
name: "Sarah J.",
|
|
1935
|
+
role: "DevOps Lead",
|
|
1936
|
+
skills: "CI/CD, Cloud"
|
|
1937
|
+
}
|
|
1938
|
+
]
|
|
1878
1939
|
},
|
|
1879
1940
|
{
|
|
1880
1941
|
id: "edu-architect-2",
|
|
@@ -1988,7 +2049,7 @@ I am currently in **${C}** mode, which requires a **Neural Matrix (Data)** to pe
|
|
|
1988
2049
|
};
|
|
1989
2050
|
switch (C) {
|
|
1990
2051
|
case "MAESTRO":
|
|
1991
|
-
g.context = x, g.
|
|
2052
|
+
g.context = x, g.pendingTasks = (f == null ? void 0 : f.pendingTasks) || (f == null ? void 0 : f.tasks) || [], g.resources = (f == null ? void 0 : f.resources) || (f == null ? void 0 : f.team) || [], g.mode = y.focus === "ROADMAP" ? "ROADMAP" : "OKR";
|
|
1992
2053
|
break;
|
|
1993
2054
|
case "ANALYST":
|
|
1994
2055
|
g.goal = x, g.data = f;
|
|
@@ -2589,7 +2650,7 @@ const Le = ({ chart: n }) => {
|
|
|
2589
2650
|
}
|
|
2590
2651
|
)
|
|
2591
2652
|
] });
|
|
2592
|
-
}, Sa = "@estevia/evafusion-agent", Ia = "1.9.
|
|
2653
|
+
}, Sa = "@estevia/evafusion-agent", Ia = "1.9.6", za = "Premium React-based ChatWizard Agent for EvaFusion Workbench Integration", La = "dist/index.js", Ha = "dist/index.mjs", Xa = "dist/index.d.ts", Ga = [
|
|
2593
2654
|
"dist"
|
|
2594
2655
|
], Qa = {
|
|
2595
2656
|
dev: "vite",
|
|
@@ -2602,9 +2663,9 @@ const Le = ({ chart: n }) => {
|
|
|
2602
2663
|
}, Ua = {
|
|
2603
2664
|
react: "^18.2.0",
|
|
2604
2665
|
"react-dom": "^18.2.0",
|
|
2605
|
-
"@estevia/evafusion-sdk": "^1.
|
|
2666
|
+
"@estevia/evafusion-sdk": "^1.7.2"
|
|
2606
2667
|
}, Va = {
|
|
2607
|
-
"@estevia/evafusion-sdk": "^1.
|
|
2668
|
+
"@estevia/evafusion-sdk": "^1.7.2",
|
|
2608
2669
|
"@types/react": "^18.0.28",
|
|
2609
2670
|
"@types/react-dom": "^18.0.11",
|
|
2610
2671
|
"@vitejs/plugin-react": "^4.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@estevia/evafusion-agent",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"description": "Premium React-based ChatWizard Agent for EvaFusion Workbench Integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": "^18.2.0",
|
|
23
23
|
"react-dom": "^18.2.0",
|
|
24
|
-
"@estevia/evafusion-sdk": "^1.
|
|
24
|
+
"@estevia/evafusion-sdk": "^1.7.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@estevia/evafusion-sdk": "^1.
|
|
27
|
+
"@estevia/evafusion-sdk": "^1.7.2",
|
|
28
28
|
"@types/react": "^18.0.28",
|
|
29
29
|
"@types/react-dom": "^18.0.11",
|
|
30
30
|
"@vitejs/plugin-react": "^4.0.0",
|