robopark 2.8.36 → 3.1.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.
Files changed (80) hide show
  1. package/README.md +95 -63
  2. package/bin/robopark.js +7 -17
  3. package/conversation/elevenlabs_agent.py +1985 -0
  4. package/conversation/requirements.txt +3 -0
  5. package/conversation/supervisor_store.py +189 -0
  6. package/dist/kernel/config-schema.js +37 -0
  7. package/dist/kernel/types.js +7 -0
  8. package/dist/robopark/access.js +99 -0
  9. package/dist/robopark/add-robot.js +188 -0
  10. package/dist/robopark/agent-ctl.js +305 -0
  11. package/dist/robopark/auto-start.js +293 -0
  12. package/dist/robopark/control-center-html.js +9191 -0
  13. package/dist/robopark/control-server.js +148 -0
  14. package/dist/robopark/conversation.js +505 -0
  15. package/dist/robopark/deployment-commands.js +47 -0
  16. package/dist/robopark/discovery.js +180 -0
  17. package/dist/robopark/doctor.js +175 -0
  18. package/dist/robopark/enroll.js +68 -0
  19. package/dist/robopark/llm-set.js +87 -0
  20. package/dist/robopark/motor-control.js +195 -0
  21. package/dist/robopark/preview-agent-launcher.js +77 -0
  22. package/dist/robopark/probe.js +138 -0
  23. package/dist/robopark/profile.js +69 -0
  24. package/dist/robopark/python-env.js +162 -0
  25. package/dist/robopark/robot-runtime.js +489 -0
  26. package/dist/robopark/scan.js +97 -0
  27. package/dist/robopark/screen-control.js +55 -0
  28. package/dist/robopark/secrets.js +41 -0
  29. package/dist/robopark/serve.js +285 -0
  30. package/dist/robopark/server-add.js +114 -0
  31. package/dist/robopark/setup-livekit.js +300 -0
  32. package/dist/robopark/setup.js +286 -0
  33. package/dist/robopark/standalone.js +486 -0
  34. package/dist/robopark/stop-all.js +141 -0
  35. package/dist/robopark/verify.js +192 -0
  36. package/dist/robopark/vision-agent-launcher.js +98 -0
  37. package/dist/robopark/vision-control.js +81 -0
  38. package/dist/robopark/voice-join-html.js +57 -0
  39. package/dist/robopark-cli.js +801 -0
  40. package/package.json +23 -5
  41. package/pi-client/_install_steps.sh +29 -29
  42. package/pi-client/client.py +61 -2
  43. package/pi-client/install.sh +40 -40
  44. package/pi-client/join_convo.sh +54 -54
  45. package/pi-client/livekit_bridge.py +16 -7
  46. package/pi-client/motor_bridge.py +6 -3
  47. package/scheduler/main.py +4505 -135
  48. package/scheduler/media_lock.py +57 -0
  49. package/scheduler/preview_agent.py +1465 -87
  50. package/scheduler/production_config.json +139 -0
  51. package/scheduler/robot_supervisor.py +1705 -0
  52. package/scheduler/scripts/install-robot-supervisor-linux.sh +33 -0
  53. package/scheduler/scripts/install-robot-supervisor-windows.ps1 +49 -0
  54. package/scheduler/scripts/robopark-supervisor.service +20 -0
  55. package/scheduler/scripts/start-scheduler-local.ps1 +50 -0
  56. package/scheduler/supervisor.example.json +26 -0
  57. package/scheduler/vision_motion_trigger.py +101 -0
  58. package/screen/screen_runtime.py +75 -0
  59. package/static/robopark/barracuda.png +0 -0
  60. package/static/robopark/bmw.png +0 -0
  61. package/static/robopark/jaguar.png +0 -0
  62. package/static/robopark/magnus.jpg +0 -0
  63. package/static/robopark/panda.png +0 -0
  64. package/static/robopark/tesla.png +0 -0
  65. package/static/robopark/titan.jpg +0 -0
  66. package/static/robopark/volt.png +0 -0
  67. package/static/vendor/elevenlabs-client.LICENSE +21 -0
  68. package/static/vendor/elevenlabs-client.iife.js +24200 -0
  69. package/vision/app_pi_clean.py +253 -16
  70. package/vision/audio_server_pi.py +19 -0
  71. package/vision/install.sh +34 -34
  72. package/vision/motor_server.py +224 -61
  73. package/vision/requirements_camera.txt +6 -0
  74. package/vision/requirements_motor.txt +4 -0
  75. package/vision/requirements_pi_unified.txt +1 -0
  76. package/vision/requirements_vision_agent.txt +19 -0
  77. package/vision/run.sh +244 -244
  78. package/vision/services/services.sh +12 -12
  79. package/scheduler/__pycache__/main.cpython-312.pyc +0 -0
  80. package/scheduler/__pycache__/preview_agent.cpython-312.pyc +0 -0
@@ -0,0 +1,139 @@
1
+ {
2
+ "schema_version": 1,
3
+ "revision": 2,
4
+ "global": {
5
+ "voice_engine_default": "elevenlabs",
6
+ "robovoice_enabled": true,
7
+ "allow_session_override": true,
8
+ "apply_changes_when_idle": true
9
+ },
10
+ "aliases": {},
11
+ "characters": [
12
+ {
13
+ "id": "barracuda",
14
+ "name": "BARRACUDA",
15
+ "description": "The Star Guardians speed navigator and tactical pilot.",
16
+ "voice_stack_id": "english-default",
17
+ "default_engine": "elevenlabs",
18
+ "elevenlabs_agent_id": "agent_3001ky0z8wq0fht8xyb0tnkdksdz",
19
+ "elevenlabs_branch_id": null,
20
+ "robovoice_profile_id": "barracuda",
21
+ "system_prompt_revision": 1,
22
+ "nx": 0.18,
23
+ "ny": 0.28,
24
+ "img": "/static/robopark/barracuda.png"
25
+ },
26
+ {
27
+ "id": "jaguar",
28
+ "name": "JAGUAR",
29
+ "description": "A confident and agile Star Guardians scout.",
30
+ "voice_stack_id": "english-default",
31
+ "default_engine": "elevenlabs",
32
+ "elevenlabs_agent_id": "agent_4201ky0zhwn4fz7bwy9767wt6g3t",
33
+ "elevenlabs_branch_id": null,
34
+ "robovoice_profile_id": "jaguar",
35
+ "system_prompt_revision": 1,
36
+ "nx": 0.34,
37
+ "ny": 0.34,
38
+ "img": "/static/robopark/jaguar.png"
39
+ },
40
+ {
41
+ "id": "magnus",
42
+ "name": "MAGNUS",
43
+ "description": "The calm leader of the Star Guardians.",
44
+ "voice_stack_id": "english-default",
45
+ "default_engine": "elevenlabs",
46
+ "elevenlabs_agent_id": "agent_5601ky0ymahreyft2xz9xht0dj4v",
47
+ "elevenlabs_branch_id": null,
48
+ "robovoice_profile_id": "magnus",
49
+ "system_prompt_revision": 1,
50
+ "nx": 0.5,
51
+ "ny": 0.24,
52
+ "img": "/static/robopark/magnus.jpg"
53
+ },
54
+ {
55
+ "id": "palladin",
56
+ "name": "PALLADIN",
57
+ "description": "The Star Guardians steadfast protector and ceremonial guardian.",
58
+ "voice_stack_id": "english-default",
59
+ "default_engine": "elevenlabs",
60
+ "elevenlabs_agent_id": "agent_0001ky7mxx2ce4pseeyn6wrtnrz8",
61
+ "elevenlabs_branch_id": null,
62
+ "robovoice_profile_id": "palladin",
63
+ "system_prompt_revision": 1,
64
+ "nx": 0.66,
65
+ "ny": 0.24,
66
+ "img": null
67
+ },
68
+ {
69
+ "id": "panda",
70
+ "name": "PANDA",
71
+ "description": "The Star Guardians story keeper and patient guide.",
72
+ "voice_stack_id": "english-default",
73
+ "default_engine": "elevenlabs",
74
+ "elevenlabs_agent_id": "agent_4701ky0xkz89f8t993tmg5t8t23r",
75
+ "elevenlabs_branch_id": null,
76
+ "robovoice_profile_id": "panda",
77
+ "system_prompt_revision": 1,
78
+ "nx": 0.74,
79
+ "ny": 0.44,
80
+ "img": "/static/robopark/panda.png"
81
+ },
82
+ {
83
+ "id": "ronin",
84
+ "name": "RONIN",
85
+ "description": "The Star Guardians story keeper and patient guide.",
86
+ "voice_stack_id": "english-default",
87
+ "default_engine": "elevenlabs",
88
+ "elevenlabs_agent_id": "agent_4701ky0xkz89f8t993tmg5t8t23r",
89
+ "elevenlabs_branch_id": null,
90
+ "robovoice_profile_id": "ronin",
91
+ "system_prompt_revision": 1,
92
+ "nx": 0.78,
93
+ "ny": 0.58,
94
+ "img": "/static/robopark/panda.png"
95
+ },
96
+ {
97
+ "id": "titan",
98
+ "name": "TITAN",
99
+ "description": "The Star Guardians iron guardian and stability anchor.",
100
+ "voice_stack_id": "english-default",
101
+ "default_engine": "elevenlabs",
102
+ "elevenlabs_agent_id": "agent_2501ky0x8t39fh5ske8tz3148b26",
103
+ "elevenlabs_branch_id": null,
104
+ "robovoice_profile_id": "titan",
105
+ "system_prompt_revision": 1,
106
+ "nx": 0.42,
107
+ "ny": 0.68,
108
+ "img": "/static/robopark/titan.jpg"
109
+ },
110
+ {
111
+ "id": "vixen",
112
+ "name": "VIXEN",
113
+ "description": "The Star Guardians strategist and precision planner.",
114
+ "voice_stack_id": "english-default",
115
+ "default_engine": "elevenlabs",
116
+ "elevenlabs_agent_id": "agent_6701ky0nfavke0ysrpj5v38m1cry",
117
+ "elevenlabs_branch_id": null,
118
+ "robovoice_profile_id": "vixen",
119
+ "system_prompt_revision": 1,
120
+ "nx": 0.58,
121
+ "ny": 0.66,
122
+ "img": "/static/robopark/bmw.png"
123
+ },
124
+ {
125
+ "id": "volt",
126
+ "name": "VOLT",
127
+ "description": "The Star Guardians electric systems specialist and rapid responder.",
128
+ "voice_stack_id": "english-default",
129
+ "default_engine": "elevenlabs",
130
+ "elevenlabs_agent_id": "agent_4101ky97n2pze4p8ax3dgb3hbc3c",
131
+ "elevenlabs_branch_id": null,
132
+ "robovoice_profile_id": "volt",
133
+ "system_prompt_revision": 1,
134
+ "nx": 0.24,
135
+ "ny": 0.62,
136
+ "img": "/static/robopark/volt.png"
137
+ }
138
+ ]
139
+ }