🦾Make your robot autonomous with LLM agent. Set it up with the same ease as normal agents in CrewAI or Autogen
138
stars
545
commits
Python
primary language
Aug 13, 2026
updated

Create LLM agent for your robot. Connect movement tools, VLA policies and sensor scans just in a few lines of code.
RoboCrew agent cleaning up a table.
Run on your robot:
pip install robocrew
Start GUI app with:
robocrew-gui

The RoboCrew Intelligence Loop:
To gain full control over RoboCrew features, you can create your own script. Simplest example:
from robocrew.core.camera import RobotCamera
from robocrew.core.LLMAgent import LLMAgent
from robocrew.robots.XLeRobot.tools import create_move_forward, create_turn_right, create_turn_left
from robocrew.robots.XLeRobot.servo_controls import ServoControler
# 📷 Set up main camera
main_camera = RobotCamera("/dev/camera_center") # camera usb port Eg: /dev/video0
# 🎛️ Set up servo controller
right_arm_wheel_usb = "/dev/arm_right" # provide your right arm usb port. Eg: /dev/ttyACM1
servo_controler = ServoControler(right_arm_wheel_usb=right_arm_wheel_usb)
# 🛠️ Set up tools
move_forward = create_move_forward(servo_controler)
turn_left = create_turn_left(servo_controler)
turn_right = create_turn_right(servo_controler)
# 🤖 Initialize agent
agent = LLMAgent(
model="google_genai:gemini-3-flash-preview",
tools=[move_forward, turn_left, turn_right],
main_camera=main_camera,
servo_controler=servo_controler,
)
# 🎯 Give it a task and go!
agent.task = "Approach a human."
agent.go()
Use voice to tell robot what to do.
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/audio/
💻 Code example: examples/2_xlerobot_listening_and_speaking.py
Let's make our robot manipulate objects with its arms!
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/vla-as-tools/
💻 Code example: examples/3_xlerobot_arm_manipulation.py
One agent plans mission, another controls robot.
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/multiagent/
💻 Code example: examples/4_xlerobot_multiagent_cooperation.py
❤️ Special thanks to all contributors and early adopters!
Python
100.0%
🦾Make your robot autonomous with LLM agent. Set it up with the same ease as normal agents in CrewAI or Autogen
138
stars
545
commits
Python
primary language
Aug 13, 2026
updated

Create LLM agent for your robot. Connect movement tools, VLA policies and sensor scans just in a few lines of code.
RoboCrew agent cleaning up a table.
Run on your robot:
pip install robocrew
Start GUI app with:
robocrew-gui

The RoboCrew Intelligence Loop:
To gain full control over RoboCrew features, you can create your own script. Simplest example:
from robocrew.core.camera import RobotCamera
from robocrew.core.LLMAgent import LLMAgent
from robocrew.robots.XLeRobot.tools import create_move_forward, create_turn_right, create_turn_left
from robocrew.robots.XLeRobot.servo_controls import ServoControler
# 📷 Set up main camera
main_camera = RobotCamera("/dev/camera_center") # camera usb port Eg: /dev/video0
# 🎛️ Set up servo controller
right_arm_wheel_usb = "/dev/arm_right" # provide your right arm usb port. Eg: /dev/ttyACM1
servo_controler = ServoControler(right_arm_wheel_usb=right_arm_wheel_usb)
# 🛠️ Set up tools
move_forward = create_move_forward(servo_controler)
turn_left = create_turn_left(servo_controler)
turn_right = create_turn_right(servo_controler)
# 🤖 Initialize agent
agent = LLMAgent(
model="google_genai:gemini-3-flash-preview",
tools=[move_forward, turn_left, turn_right],
main_camera=main_camera,
servo_controler=servo_controler,
)
# 🎯 Give it a task and go!
agent.task = "Approach a human."
agent.go()
Use voice to tell robot what to do.
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/audio/
💻 Code example: examples/2_xlerobot_listening_and_speaking.py
Let's make our robot manipulate objects with its arms!
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/vla-as-tools/
💻 Code example: examples/3_xlerobot_arm_manipulation.py
One agent plans mission, another controls robot.
📖 Docs: https://grigorij-dudnik.github.io/RoboCrew-docs/guides/examples/multiagent/
💻 Code example: examples/4_xlerobot_multiagent_cooperation.py
❤️ Special thanks to all contributors and early adopters!
Python
100.0%