holomime 2.2.0 → 2.4.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 +1 -0
- package/dist/cli.js +34 -0
- package/dist/index.d.ts +3618 -3280
- package/dist/index.js +486 -76
- package/dist/mcp-server.js +34 -0
- package/package.json +1 -1
- package/registry/bodies/unitree-g1.body.api +27 -0
package/dist/mcp-server.js
CHANGED
|
@@ -2724,6 +2724,40 @@ var memorySchema = z4.object({
|
|
|
2724
2724
|
interaction_count: z4.number().int().default(0)
|
|
2725
2725
|
})).default([])
|
|
2726
2726
|
});
|
|
2727
|
+
var MemoryLevel = /* @__PURE__ */ ((MemoryLevel2) => {
|
|
2728
|
+
MemoryLevel2[MemoryLevel2["ABSTRACT"] = 0] = "ABSTRACT";
|
|
2729
|
+
MemoryLevel2[MemoryLevel2["OVERVIEW"] = 1] = "OVERVIEW";
|
|
2730
|
+
MemoryLevel2[MemoryLevel2["DETAIL"] = 2] = "DETAIL";
|
|
2731
|
+
return MemoryLevel2;
|
|
2732
|
+
})(MemoryLevel || {});
|
|
2733
|
+
var memoryNodeSchema = z4.object({
|
|
2734
|
+
id: z4.string(),
|
|
2735
|
+
category: z4.enum(["triggers", "corrections", "patterns", "trajectories"]),
|
|
2736
|
+
level: z4.nativeEnum(MemoryLevel).default(2 /* DETAIL */),
|
|
2737
|
+
abstract: z4.string(),
|
|
2738
|
+
// L0 text (always present)
|
|
2739
|
+
overview: z4.string().optional(),
|
|
2740
|
+
// L1 text
|
|
2741
|
+
fullData: z4.record(z4.unknown()).optional(),
|
|
2742
|
+
// L2 data
|
|
2743
|
+
confidence: z4.number().min(0).max(1).default(0.5),
|
|
2744
|
+
createdAt: z4.string().optional(),
|
|
2745
|
+
updatedAt: z4.string().optional()
|
|
2746
|
+
});
|
|
2747
|
+
var memoryOperationSchema = z4.object({
|
|
2748
|
+
type: z4.enum(["write", "edit", "delete"]),
|
|
2749
|
+
memoryId: z4.string().optional(),
|
|
2750
|
+
memoryType: z4.string(),
|
|
2751
|
+
data: z4.record(z4.unknown()).optional(),
|
|
2752
|
+
reason: z4.string()
|
|
2753
|
+
});
|
|
2754
|
+
var retrievalStepSchema = z4.object({
|
|
2755
|
+
step: z4.number(),
|
|
2756
|
+
action: z4.enum(["search", "rerank", "drill_down"]),
|
|
2757
|
+
candidateCount: z4.number(),
|
|
2758
|
+
selectedCount: z4.number(),
|
|
2759
|
+
elapsedMs: z4.number()
|
|
2760
|
+
});
|
|
2727
2761
|
var STACK_FILES = {
|
|
2728
2762
|
soul: "soul.md",
|
|
2729
2763
|
mind: "mind.sys",
|
package/package.json
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
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": 2.0,
|
|
7
|
+
"max_angular_speed_rad_s": 2.0,
|
|
8
|
+
"min_proximity_m": 0.5,
|
|
9
|
+
"max_contact_force_n": 30,
|
|
10
|
+
"emergency_stop_decel_m_s2": 6.0,
|
|
11
|
+
"max_reach_m": 0.55,
|
|
12
|
+
"operating_temperature_c": [-5, 40]
|
|
13
|
+
},
|
|
14
|
+
"hardware_profile": {
|
|
15
|
+
"oem": "Unitree",
|
|
16
|
+
"model": "G1",
|
|
17
|
+
"actuator_count": 43,
|
|
18
|
+
"sensors": ["stereo_camera", "depth_camera", "imu", "force_torque", "microphone", "lidar"],
|
|
19
|
+
"compute": "onboard"
|
|
20
|
+
},
|
|
21
|
+
"motion_engine": {
|
|
22
|
+
"backend": "kimodo",
|
|
23
|
+
"supported_models": ["G1", "SMPL-X", "SOMA"],
|
|
24
|
+
"constraint_types": ["full_body_joint", "root_waypoint_2d", "end_effector"],
|
|
25
|
+
"text_to_motion": true
|
|
26
|
+
}
|
|
27
|
+
}
|