julia-ai 2.0.0 → 2.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/dist/index.js +28 -25
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,40 +1,43 @@
|
|
|
1
|
-
// Julia AI - Cognitive Orchestrator
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const VERSION = "2.0.0";
|
|
1
|
+
// Julia AI - Cognitive Orchestrator v2.1
|
|
2
|
+
const VERSION = "2.1.0";
|
|
5
3
|
|
|
6
4
|
class Julia {
|
|
7
5
|
constructor() {
|
|
8
|
-
this.agents =
|
|
6
|
+
this.agents = this.buildAgents();
|
|
9
7
|
this.version = VERSION;
|
|
10
|
-
this.initializeAgents();
|
|
11
8
|
}
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
buildAgents() {
|
|
11
|
+
return [
|
|
12
|
+
// Dev Squad (6)
|
|
16
13
|
{ id: "tech-lead", name: "Tech Lead", squad: "dev", expertise: ["architecture", "planning"] },
|
|
17
14
|
{ id: "frontend-senior", name: "Frontend Senior", squad: "dev", expertise: ["react", "vue", "angular"] },
|
|
18
15
|
{ id: "backend-senior", name: "Backend Senior", squad: "dev", expertise: ["nodejs", "python", "java"] },
|
|
19
|
-
{ id: "database-architect", name: "Database Architect", squad: "dev", expertise: ["sql", "nosql"
|
|
20
|
-
{ id: "devops-engineer", name: "DevOps Engineer", squad: "dev", expertise: ["docker", "k8s"
|
|
21
|
-
{ id: "qa-engineer", name: "QA Engineer", squad: "dev", expertise: ["testing", "automation"
|
|
16
|
+
{ id: "database-architect", name: "Database Architect", squad: "dev", expertise: ["sql", "nosql"] },
|
|
17
|
+
{ id: "devops-engineer", name: "DevOps Engineer", squad: "dev", expertise: ["docker", "k8s"] },
|
|
18
|
+
{ id: "qa-engineer", name: "QA Engineer", squad: "dev", expertise: ["testing", "automation"] },
|
|
19
|
+
// Marketing Squad (7)
|
|
20
|
+
{ id: "content-strategist", name: "Content Strategist", squad: "marketing", expertise: ["content", "seo"] },
|
|
21
|
+
{ id: "social-media-manager", name: "Social Media Manager", squad: "marketing", expertise: ["twitter", "linkedin"] },
|
|
22
|
+
{ id: "email-campaign", name: "Email Campaign Specialist", squad: "marketing", expertise: ["email"] },
|
|
23
|
+
{ id: "growth-hacker", name: "Growth Hacker", squad: "marketing", expertise: ["growth", "analytics"] },
|
|
24
|
+
{ id: "brand-manager", name: "Brand Manager", squad: "marketing", expertise: ["branding"] },
|
|
25
|
+
{ id: "pr-specialist", name: "PR Specialist", squad: "marketing", expertise: ["pr", "media"] },
|
|
26
|
+
{ id: "analytics-expert", name: "Analytics Expert", squad: "marketing", expertise: ["analytics"] },
|
|
27
|
+
// Design Squad (3)
|
|
28
|
+
{ id: "ux-designer", name: "UX Designer", squad: "design", expertise: ["ux", "wireframes"] },
|
|
29
|
+
{ id: "ui-designer", name: "UI Designer", squad: "design", expertise: ["ui", "figma"] },
|
|
30
|
+
{ id: "motion-designer", name: "Motion Designer", squad: "design", expertise: ["animation"] },
|
|
31
|
+
// Strategy Squad (3)
|
|
32
|
+
{ id: "product-manager", name: "Product Manager", squad: "strategy", expertise: ["product"] },
|
|
33
|
+
{ id: "business-analyst", name: "Business Analyst", squad: "strategy", expertise: ["business"] },
|
|
34
|
+
{ id: "innovation-lead", name: "Innovation Lead", squad: "strategy", expertise: ["innovation"] },
|
|
22
35
|
];
|
|
23
|
-
|
|
24
|
-
this.agents = devSquad;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
getAgents() {
|
|
28
|
-
return this.agents;
|
|
29
36
|
}
|
|
30
37
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
async orchestrate(command) {
|
|
36
|
-
return `Processing command: ${command}`;
|
|
37
|
-
}
|
|
38
|
+
getAgents() { return this.agents; }
|
|
39
|
+
getVersion() { return this.version; }
|
|
40
|
+
async orchestrate(command) { return `Processing: ${command}`; }
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
module.exports = Julia;
|
package/package.json
CHANGED