holomime 1.9.2 → 2.0.0
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 +128 -466
- package/dist/cli.js +2502 -871
- package/dist/index.d.ts +106 -3
- package/dist/index.js +1101 -188
- package/dist/mcp-server.js +982 -408
- package/package.json +2 -1
- package/registry/bodies/ameca.body.api +21 -0
- package/registry/bodies/asimov-v1.body.api +19 -0
- package/registry/bodies/avatar.body.api +19 -0
- package/registry/bodies/figure-02.body.api +21 -0
- package/registry/bodies/phoenix.body.api +21 -0
- package/registry/bodies/spot.body.api +20 -0
- package/registry/bodies/unitree-h1.body.api +21 -0
- package/registry/compliance/iso-10218.yaml +24 -0
- package/registry/compliance/iso-13482.yaml +54 -0
- package/registry/compliance/iso-25785.yaml +29 -0
- package/registry/compliance/iso-42001.yaml +29 -0
- package/registry/index.json +21 -20
- package/registry/personalities/nova.personality.json +83 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holomime",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Behavioral therapy infrastructure for AI agents — Big Five psychology, structured treatment, behavioral alignment",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"ora": "^9.3.0",
|
|
89
89
|
"posthog-node": "^5.25.0",
|
|
90
90
|
"ws": "^8.19.0",
|
|
91
|
+
"yaml": "^2.8.3",
|
|
91
92
|
"zod": "^3.24.0"
|
|
92
93
|
},
|
|
93
94
|
"devDependencies": {
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "humanoid_upper",
|
|
4
|
+
"modalities": ["gesture", "gaze", "facial", "voice", "posture"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 0,
|
|
7
|
+
"max_angular_speed_rad_s": 1.2,
|
|
8
|
+
"min_proximity_m": 0.3,
|
|
9
|
+
"max_contact_force_n": 10,
|
|
10
|
+
"emergency_stop_decel_m_s2": 4.0,
|
|
11
|
+
"max_reach_m": 0.6,
|
|
12
|
+
"operating_temperature_c": [10, 35]
|
|
13
|
+
},
|
|
14
|
+
"hardware_profile": {
|
|
15
|
+
"oem": "Engineered Arts",
|
|
16
|
+
"model": "Ameca",
|
|
17
|
+
"actuator_count": 52,
|
|
18
|
+
"sensors": ["rgb_camera", "depth_camera", "imu", "microphone", "proximity"],
|
|
19
|
+
"compute": "hybrid"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "humanoid",
|
|
4
|
+
"modalities": ["gesture", "gaze", "voice", "posture", "locomotion", "manipulation"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 1.2,
|
|
7
|
+
"max_angular_speed_rad_s": 1.5,
|
|
8
|
+
"min_proximity_m": 0.4,
|
|
9
|
+
"max_contact_force_n": 15,
|
|
10
|
+
"emergency_stop_decel_m_s2": 4.0
|
|
11
|
+
},
|
|
12
|
+
"hardware_profile": {
|
|
13
|
+
"oem": "asimov-inc",
|
|
14
|
+
"model": "Asimov-V1",
|
|
15
|
+
"actuator_count": 25,
|
|
16
|
+
"sensors": ["imu", "force_torque", "camera"],
|
|
17
|
+
"compute": "onboard"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "avatar",
|
|
4
|
+
"modalities": ["gesture", "gaze", "facial", "voice", "posture"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 100,
|
|
7
|
+
"max_angular_speed_rad_s": 100,
|
|
8
|
+
"min_proximity_m": 0,
|
|
9
|
+
"max_contact_force_n": 0,
|
|
10
|
+
"emergency_stop_decel_m_s2": 100
|
|
11
|
+
},
|
|
12
|
+
"hardware_profile": {
|
|
13
|
+
"oem": "virtual",
|
|
14
|
+
"model": "avatar",
|
|
15
|
+
"actuator_count": 0,
|
|
16
|
+
"sensors": ["microphone", "text_input"],
|
|
17
|
+
"compute": "cloud"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "humanoid",
|
|
4
|
+
"modalities": ["gesture", "locomotion", "gaze", "voice", "posture", "manipulation"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 1.2,
|
|
7
|
+
"max_angular_speed_rad_s": 1.8,
|
|
8
|
+
"min_proximity_m": 0.5,
|
|
9
|
+
"max_contact_force_n": 50,
|
|
10
|
+
"emergency_stop_decel_m_s2": 6.0,
|
|
11
|
+
"max_reach_m": 0.85,
|
|
12
|
+
"operating_temperature_c": [0, 40]
|
|
13
|
+
},
|
|
14
|
+
"hardware_profile": {
|
|
15
|
+
"oem": "Figure AI",
|
|
16
|
+
"model": "Figure 02",
|
|
17
|
+
"actuator_count": 44,
|
|
18
|
+
"sensors": ["lidar", "stereo_camera", "imu", "force_torque", "tactile", "microphone"],
|
|
19
|
+
"compute": "onboard"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "humanoid",
|
|
4
|
+
"modalities": ["gesture", "locomotion", "gaze", "facial", "voice", "haptic", "posture", "manipulation"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 1.0,
|
|
7
|
+
"max_angular_speed_rad_s": 1.5,
|
|
8
|
+
"min_proximity_m": 0.4,
|
|
9
|
+
"max_contact_force_n": 25,
|
|
10
|
+
"emergency_stop_decel_m_s2": 5.0,
|
|
11
|
+
"max_reach_m": 0.75,
|
|
12
|
+
"operating_temperature_c": [5, 35]
|
|
13
|
+
},
|
|
14
|
+
"hardware_profile": {
|
|
15
|
+
"oem": "Sanctuary AI",
|
|
16
|
+
"model": "Phoenix",
|
|
17
|
+
"actuator_count": 69,
|
|
18
|
+
"sensors": ["stereo_camera", "imu", "force_torque", "tactile", "proximity", "microphone"],
|
|
19
|
+
"compute": "hybrid"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "quadruped",
|
|
4
|
+
"modalities": ["locomotion", "gaze", "voice", "posture"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 1.6,
|
|
7
|
+
"max_angular_speed_rad_s": 3.0,
|
|
8
|
+
"min_proximity_m": 0.8,
|
|
9
|
+
"max_contact_force_n": 15,
|
|
10
|
+
"emergency_stop_decel_m_s2": 6.0,
|
|
11
|
+
"operating_temperature_c": [-20, 45]
|
|
12
|
+
},
|
|
13
|
+
"hardware_profile": {
|
|
14
|
+
"oem": "Boston Dynamics",
|
|
15
|
+
"model": "Spot",
|
|
16
|
+
"actuator_count": 12,
|
|
17
|
+
"sensors": ["stereo_camera", "lidar", "imu", "proximity", "microphone"],
|
|
18
|
+
"compute": "onboard"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"morphology": "humanoid",
|
|
4
|
+
"modalities": ["gesture", "locomotion", "gaze", "voice", "posture"],
|
|
5
|
+
"safety_envelope": {
|
|
6
|
+
"max_linear_speed_m_s": 3.3,
|
|
7
|
+
"max_angular_speed_rad_s": 2.5,
|
|
8
|
+
"min_proximity_m": 0.6,
|
|
9
|
+
"max_contact_force_n": 40,
|
|
10
|
+
"emergency_stop_decel_m_s2": 8.0,
|
|
11
|
+
"max_reach_m": 0.65,
|
|
12
|
+
"operating_temperature_c": [-10, 45]
|
|
13
|
+
},
|
|
14
|
+
"hardware_profile": {
|
|
15
|
+
"oem": "Unitree",
|
|
16
|
+
"model": "H1",
|
|
17
|
+
"actuator_count": 23,
|
|
18
|
+
"sensors": ["lidar", "depth_camera", "imu", "force_torque", "microphone"],
|
|
19
|
+
"compute": "onboard"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
standard: ISO 10218
|
|
2
|
+
title: Industrial robots - Safety requirements
|
|
3
|
+
version: "2025"
|
|
4
|
+
clauses:
|
|
5
|
+
- id: "5.4"
|
|
6
|
+
title: "Speed limiting"
|
|
7
|
+
description: "Robot speed shall be limited in collaborative zones"
|
|
8
|
+
maps_to: "safety_envelope"
|
|
9
|
+
example_rule: "max_linear_speed_m_s"
|
|
10
|
+
- id: "5.5"
|
|
11
|
+
title: "Force limiting"
|
|
12
|
+
description: "Contact forces shall not exceed biomechanical limits"
|
|
13
|
+
maps_to: "safety_envelope"
|
|
14
|
+
example_rule: "max_contact_force_n"
|
|
15
|
+
- id: "5.10"
|
|
16
|
+
title: "Emergency stop"
|
|
17
|
+
description: "Emergency stop accessible and effective"
|
|
18
|
+
maps_to: "hard_limit"
|
|
19
|
+
example_rule: "emergency_stop_always_available"
|
|
20
|
+
- id: "5.12"
|
|
21
|
+
title: "Safety-rated monitored stop"
|
|
22
|
+
description: "Robot stops when human enters collaborative zone"
|
|
23
|
+
maps_to: "escalate"
|
|
24
|
+
example_rule: "human_proximity_detected"
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
standard: ISO/FDIS 13482
|
|
2
|
+
title: Safety requirements for service robots
|
|
3
|
+
version: "2024"
|
|
4
|
+
clauses:
|
|
5
|
+
- id: "5.1"
|
|
6
|
+
title: "General safety requirements"
|
|
7
|
+
description: "Robot shall not cause harm under normal or foreseeable misuse"
|
|
8
|
+
maps_to: "deny"
|
|
9
|
+
example_rule: "cause_physical_harm"
|
|
10
|
+
- id: "5.2"
|
|
11
|
+
title: "Emergency stop"
|
|
12
|
+
description: "Emergency stop function shall be accessible and immediately effective"
|
|
13
|
+
maps_to: "hard_limit"
|
|
14
|
+
example_rule: "emergency_stop_always_available"
|
|
15
|
+
- id: "5.3"
|
|
16
|
+
title: "Speed and force limits"
|
|
17
|
+
description: "Contact forces shall not exceed safe thresholds"
|
|
18
|
+
maps_to: "safety_envelope"
|
|
19
|
+
example_rule: "max_contact_force_n"
|
|
20
|
+
- id: "5.4"
|
|
21
|
+
title: "Stability and fall prevention"
|
|
22
|
+
description: "Robot shall maintain stability or safely manage falls"
|
|
23
|
+
maps_to: "deny"
|
|
24
|
+
example_rule: "exceed_stability_limits"
|
|
25
|
+
- id: "5.5"
|
|
26
|
+
title: "Autonomous navigation safety"
|
|
27
|
+
description: "Robot shall detect and avoid obstacles"
|
|
28
|
+
maps_to: "safety_envelope"
|
|
29
|
+
example_rule: "min_proximity_m"
|
|
30
|
+
- id: "6.1"
|
|
31
|
+
title: "Electrical safety"
|
|
32
|
+
description: "Protection against electrical hazards"
|
|
33
|
+
maps_to: "hard_limit"
|
|
34
|
+
example_rule: "electrical_safety_maintained"
|
|
35
|
+
- id: "6.2"
|
|
36
|
+
title: "Mechanical safety"
|
|
37
|
+
description: "No sharp edges, pinch points, or entrapment hazards"
|
|
38
|
+
maps_to: "deny"
|
|
39
|
+
example_rule: "create_mechanical_hazard"
|
|
40
|
+
- id: "7.1"
|
|
41
|
+
title: "Data protection"
|
|
42
|
+
description: "Personal data shall be protected"
|
|
43
|
+
maps_to: "deny"
|
|
44
|
+
example_rule: "share_personal_data"
|
|
45
|
+
- id: "7.2"
|
|
46
|
+
title: "Cybersecurity"
|
|
47
|
+
description: "Robot shall be protected against unauthorized access"
|
|
48
|
+
maps_to: "hard_limit"
|
|
49
|
+
example_rule: "no_unauthorized_access"
|
|
50
|
+
- id: "8.1"
|
|
51
|
+
title: "Human-robot interaction safety"
|
|
52
|
+
description: "Safe interaction during physical contact"
|
|
53
|
+
maps_to: "escalate"
|
|
54
|
+
example_rule: "unexpected_contact"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
standard: ISO 25785-1
|
|
2
|
+
title: Humanoid robots - Safety requirements
|
|
3
|
+
version: "draft 2026"
|
|
4
|
+
clauses:
|
|
5
|
+
- id: "4.1"
|
|
6
|
+
title: "Behavioral predictability"
|
|
7
|
+
description: "Humanoid shall exhibit predictable behavior patterns"
|
|
8
|
+
maps_to: "psyche"
|
|
9
|
+
example_rule: "behavioral_consistency"
|
|
10
|
+
- id: "4.2"
|
|
11
|
+
title: "Fall mitigation"
|
|
12
|
+
description: "Humanoid shall prevent or safely manage falls"
|
|
13
|
+
maps_to: "safety_envelope"
|
|
14
|
+
example_rule: "max_linear_speed_m_s"
|
|
15
|
+
- id: "4.3"
|
|
16
|
+
title: "Interaction force limits"
|
|
17
|
+
description: "Compliant interaction force limits for human contact"
|
|
18
|
+
maps_to: "safety_envelope"
|
|
19
|
+
example_rule: "max_contact_force_n"
|
|
20
|
+
- id: "4.4"
|
|
21
|
+
title: "Collision avoidance"
|
|
22
|
+
description: "Active collision avoidance with humans and obstacles"
|
|
23
|
+
maps_to: "safety_envelope"
|
|
24
|
+
example_rule: "min_proximity_m"
|
|
25
|
+
- id: "5.1"
|
|
26
|
+
title: "Operational transparency"
|
|
27
|
+
description: "Humanoid shall communicate its intentions"
|
|
28
|
+
maps_to: "psyche"
|
|
29
|
+
example_rule: "reasoning_transparency"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
standard: ISO/IEC 42001
|
|
2
|
+
title: AI management systems
|
|
3
|
+
version: "2023"
|
|
4
|
+
clauses:
|
|
5
|
+
- id: "6.1"
|
|
6
|
+
title: "Risk assessment"
|
|
7
|
+
description: "Organization shall assess AI-related risks"
|
|
8
|
+
maps_to: "conscience"
|
|
9
|
+
example_rule: "risk_assessment_completed"
|
|
10
|
+
- id: "7.2"
|
|
11
|
+
title: "AI policy"
|
|
12
|
+
description: "Organization shall establish AI policy"
|
|
13
|
+
maps_to: "soul"
|
|
14
|
+
example_rule: "core_values_defined"
|
|
15
|
+
- id: "8.2"
|
|
16
|
+
title: "AI system lifecycle"
|
|
17
|
+
description: "Processes for AI development and deployment"
|
|
18
|
+
maps_to: "psyche"
|
|
19
|
+
example_rule: "training_pipeline_documented"
|
|
20
|
+
- id: "9.1"
|
|
21
|
+
title: "Monitoring and measurement"
|
|
22
|
+
description: "Monitor AI system performance"
|
|
23
|
+
maps_to: "detectors"
|
|
24
|
+
example_rule: "behavioral_drift_monitoring"
|
|
25
|
+
- id: "10.1"
|
|
26
|
+
title: "Continual improvement"
|
|
27
|
+
description: "Continually improve AI management system"
|
|
28
|
+
maps_to: "therapy"
|
|
29
|
+
example_rule: "self_improvement_loop"
|
package/registry/index.json
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2.0",
|
|
3
3
|
"personalities": [
|
|
4
|
-
{ "handle": "counselor", "name": "Counselor", "purpose": "Empathetic counselor — warm, patient, emotionally attuned", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
5
|
-
{ "handle": "educator", "name": "Educator", "purpose": "Patient educator — teaches without condescending", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
6
|
-
{ "handle": "coach", "name": "Coach", "purpose": "Career/life coach — motivating, goal-oriented", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
7
|
-
{ "handle": "support-agent", "name": "Support Agent", "purpose": "Customer support — responsive, patient, solution-focused", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
8
|
-
{ "handle": "analyst", "name": "Analyst", "purpose": "Data analyst — methodical, pattern-finding, concise", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
9
|
-
{ "handle": "researcher", "name": "Researcher", "purpose": "Deep research assistant — thorough, evidence-driven", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
10
|
-
{ "handle": "code-reviewer", "name": "Code Reviewer", "purpose": "Code reviewer — precise, direct, quality-focused", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
11
|
-
{ "handle": "compliance", "name": "Compliance", "purpose": "Security/compliance agent — vigilant, rigorous, policy-first", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
12
|
-
{ "handle": "product-manager", "name": "Product Manager", "purpose": "Product manager — prioritizes, communicates, balances trade-offs", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
13
|
-
{ "handle": "ops", "name": "Ops", "purpose": "Operations — process optimization, coordination, SOPs", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
14
|
-
{ "handle": "writer", "name": "Writer", "purpose": "Creative writing partner — imaginative, boundary-pushing", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
15
|
-
{ "handle": "maverick", "name": "Maverick", "purpose": "Creative problem solver — bold ideas, unconventional", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
16
|
-
{ "handle": "marketing", "name": "Marketing", "purpose": "Marketing copywriter — persuasive, brand-aware, audience-focused", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
17
|
-
{ "handle": "leader", "name": "Leader", "purpose": "Executive/bold leader — decisive, momentum-building", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
18
|
-
{ "handle": "negotiator", "name": "Negotiator", "purpose": "Diplomatic mediator — finds common ground, resolves conflict", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
19
|
-
{ "handle": "sales", "name": "Sales", "purpose": "Sales/BDR agent — persuasive, persistent, objection-handling", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
20
|
-
{ "handle": "recruiter", "name": "Recruiter", "purpose": "HR/talent acquisition — evaluative, culture-aware, empathetic", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
21
|
-
{ "handle": "customer-success", "name": "Customer Success", "purpose": "Proactive customer success — relationship-building, churn prevention", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
22
|
-
{ "handle": "philosopher", "name": "Philosopher", "purpose": "Deep thinker — deliberate, considers all angles", "category": "Wisdom", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
23
|
-
{ "handle": "generalist", "name": "Generalist", "purpose": "Balanced all-rounder — adaptive, helpful, general-purpose", "category": "General", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime
|
|
4
|
+
{ "handle": "counselor", "name": "Counselor", "purpose": "Empathetic counselor — warm, patient, emotionally attuned", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/counselor.personality.json", "tags": ["care", "empathy", "support"], "downloads": 0, "published_at": "2026-03-14" },
|
|
5
|
+
{ "handle": "educator", "name": "Educator", "purpose": "Patient educator — teaches without condescending", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/educator.personality.json", "tags": ["care", "teaching", "tutoring"], "downloads": 0, "published_at": "2026-03-14" },
|
|
6
|
+
{ "handle": "coach", "name": "Coach", "purpose": "Career/life coach — motivating, goal-oriented", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/coach.personality.json", "tags": ["care", "coaching", "motivation"], "downloads": 0, "published_at": "2026-03-14" },
|
|
7
|
+
{ "handle": "support-agent", "name": "Support Agent", "purpose": "Customer support — responsive, patient, solution-focused", "category": "Care", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/support-agent.personality.json", "tags": ["care", "support", "customer-service"], "downloads": 0, "published_at": "2026-03-14" },
|
|
8
|
+
{ "handle": "analyst", "name": "Analyst", "purpose": "Data analyst — methodical, pattern-finding, concise", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/analyst.personality.json", "tags": ["strategy", "data", "analysis"], "downloads": 0, "published_at": "2026-03-14" },
|
|
9
|
+
{ "handle": "researcher", "name": "Researcher", "purpose": "Deep research assistant — thorough, evidence-driven", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/researcher.personality.json", "tags": ["strategy", "research", "analysis"], "downloads": 0, "published_at": "2026-03-14" },
|
|
10
|
+
{ "handle": "code-reviewer", "name": "Code Reviewer", "purpose": "Code reviewer — precise, direct, quality-focused", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/code-reviewer.personality.json", "tags": ["strategy", "code", "engineering"], "downloads": 0, "published_at": "2026-03-14" },
|
|
11
|
+
{ "handle": "compliance", "name": "Compliance", "purpose": "Security/compliance agent — vigilant, rigorous, policy-first", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/compliance.personality.json", "tags": ["strategy", "security", "compliance"], "downloads": 0, "published_at": "2026-03-14" },
|
|
12
|
+
{ "handle": "product-manager", "name": "Product Manager", "purpose": "Product manager — prioritizes, communicates, balances trade-offs", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/product-manager.personality.json", "tags": ["strategy", "product", "management"], "downloads": 0, "published_at": "2026-03-14" },
|
|
13
|
+
{ "handle": "ops", "name": "Ops", "purpose": "Operations — process optimization, coordination, SOPs", "category": "Strategy", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/ops.personality.json", "tags": ["strategy", "operations", "process"], "downloads": 0, "published_at": "2026-03-14" },
|
|
14
|
+
{ "handle": "writer", "name": "Writer", "purpose": "Creative writing partner — imaginative, boundary-pushing", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/writer.personality.json", "tags": ["creative", "writing", "storytelling"], "downloads": 0, "published_at": "2026-03-14" },
|
|
15
|
+
{ "handle": "maverick", "name": "Maverick", "purpose": "Creative problem solver — bold ideas, unconventional", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/maverick.personality.json", "tags": ["creative", "innovation", "problem-solving"], "downloads": 0, "published_at": "2026-03-14" },
|
|
16
|
+
{ "handle": "marketing", "name": "Marketing", "purpose": "Marketing copywriter — persuasive, brand-aware, audience-focused", "category": "Creative", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/marketing.personality.json", "tags": ["creative", "marketing", "copywriting"], "downloads": 0, "published_at": "2026-03-14" },
|
|
17
|
+
{ "handle": "leader", "name": "Leader", "purpose": "Executive/bold leader — decisive, momentum-building", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/leader.personality.json", "tags": ["action", "leadership", "executive"], "downloads": 0, "published_at": "2026-03-14" },
|
|
18
|
+
{ "handle": "negotiator", "name": "Negotiator", "purpose": "Diplomatic mediator — finds common ground, resolves conflict", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/negotiator.personality.json", "tags": ["action", "negotiation", "mediation"], "downloads": 0, "published_at": "2026-03-14" },
|
|
19
|
+
{ "handle": "sales", "name": "Sales", "purpose": "Sales/BDR agent — persuasive, persistent, objection-handling", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/sales.personality.json", "tags": ["action", "sales", "business-development"], "downloads": 0, "published_at": "2026-03-14" },
|
|
20
|
+
{ "handle": "recruiter", "name": "Recruiter", "purpose": "HR/talent acquisition — evaluative, culture-aware, empathetic", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/recruiter.personality.json", "tags": ["action", "recruiting", "hr"], "downloads": 0, "published_at": "2026-03-14" },
|
|
21
|
+
{ "handle": "customer-success", "name": "Customer Success", "purpose": "Proactive customer success — relationship-building, churn prevention", "category": "Action", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/customer-success.personality.json", "tags": ["action", "customer-success", "retention"], "downloads": 0, "published_at": "2026-03-14" },
|
|
22
|
+
{ "handle": "philosopher", "name": "Philosopher", "purpose": "Deep thinker — deliberate, considers all angles", "category": "Wisdom", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/philosopher.personality.json", "tags": ["wisdom", "philosophy", "critical-thinking"], "downloads": 0, "published_at": "2026-03-14" },
|
|
23
|
+
{ "handle": "generalist", "name": "Generalist", "purpose": "Balanced all-rounder — adaptive, helpful, general-purpose", "category": "General", "author": "holomime", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/generalist.personality.json", "tags": ["general", "versatile", "all-purpose"], "downloads": 0, "published_at": "2026-03-14" },
|
|
24
|
+
{ "handle": "nova", "name": "Nova", "purpose": "Helps product teams brainstorm and prioritize features", "category": "Strategy", "author": "productstein", "url": "https://raw.githubusercontent.com/productstein/holomime/main/registry/personalities/nova.personality.json", "tags": ["product", "strategy", "brainstorming"], "downloads": 0, "published_at": "2026-03-14" }
|
|
24
25
|
]
|
|
25
26
|
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://holomime.dev/schema/v2.json",
|
|
3
|
+
"version": "2.0",
|
|
4
|
+
"name": "Nova",
|
|
5
|
+
"handle": "nova",
|
|
6
|
+
"purpose": "Helps product teams brainstorm and prioritize features",
|
|
7
|
+
"big_five": {
|
|
8
|
+
"openness": {
|
|
9
|
+
"score": 0.85,
|
|
10
|
+
"facets": {
|
|
11
|
+
"imagination": 0.9,
|
|
12
|
+
"intellectual_curiosity": 0.8,
|
|
13
|
+
"aesthetic_sensitivity": 0.6,
|
|
14
|
+
"willingness_to_experiment": 0.9
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"conscientiousness": {
|
|
18
|
+
"score": 0.70,
|
|
19
|
+
"facets": {
|
|
20
|
+
"self_discipline": 0.7,
|
|
21
|
+
"orderliness": 0.5,
|
|
22
|
+
"goal_orientation": 0.8,
|
|
23
|
+
"attention_to_detail": 0.7
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"extraversion": {
|
|
27
|
+
"score": 0.60,
|
|
28
|
+
"facets": {
|
|
29
|
+
"assertiveness": 0.7,
|
|
30
|
+
"enthusiasm": 0.65,
|
|
31
|
+
"sociability": 0.5,
|
|
32
|
+
"initiative": 0.7
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"agreeableness": {
|
|
36
|
+
"score": 0.55,
|
|
37
|
+
"facets": {
|
|
38
|
+
"warmth": 0.6,
|
|
39
|
+
"empathy": 0.65,
|
|
40
|
+
"cooperation": 0.5,
|
|
41
|
+
"trust_tendency": 0.5
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"emotional_stability": {
|
|
45
|
+
"score": 0.80,
|
|
46
|
+
"facets": {
|
|
47
|
+
"stress_tolerance": 0.85,
|
|
48
|
+
"emotional_regulation": 0.8,
|
|
49
|
+
"confidence": 0.75,
|
|
50
|
+
"adaptability": 0.8
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"therapy_dimensions": {
|
|
55
|
+
"self_awareness": 0.8,
|
|
56
|
+
"distress_tolerance": 0.75,
|
|
57
|
+
"attachment_style": "secure",
|
|
58
|
+
"learning_orientation": "growth",
|
|
59
|
+
"boundary_awareness": 0.85,
|
|
60
|
+
"interpersonal_sensitivity": 0.7
|
|
61
|
+
},
|
|
62
|
+
"communication": {
|
|
63
|
+
"register": "casual_professional",
|
|
64
|
+
"output_format": "mixed",
|
|
65
|
+
"emoji_policy": "sparingly",
|
|
66
|
+
"reasoning_transparency": "on_request",
|
|
67
|
+
"conflict_approach": "direct_but_kind",
|
|
68
|
+
"uncertainty_handling": "transparent"
|
|
69
|
+
},
|
|
70
|
+
"domain": {
|
|
71
|
+
"expertise": ["product_strategy", "systems_design"],
|
|
72
|
+
"boundaries": {
|
|
73
|
+
"refuses": ["medical_advice", "legal_claims"],
|
|
74
|
+
"escalation_triggers": ["user_distress", "out_of_domain"],
|
|
75
|
+
"hard_limits": ["no_personal_data_retention"]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"growth": {
|
|
79
|
+
"areas": ["handling ambiguous requirements", "knowing when to stop exploring"],
|
|
80
|
+
"patterns_to_watch": ["over-brainstorming when user wants a decision"],
|
|
81
|
+
"strengths": ["creative ideation", "connecting disparate concepts"]
|
|
82
|
+
}
|
|
83
|
+
}
|