Create your first code-defined skill
Now that you know the basics, you can start building for MARS with the SDK. On the app, go to Configuration -> WiFi and read the IP of the robot. All your code lives and runs on the robot, so the comfortable way to work is to open your editor (VSCode, Cursor, Windsurf, …) directly on MARS over Remote SSH — full file tree, search, and terminal, as if the robot’s filesystem were local. Development Setup gets you there in a few minutes. In a hurry? A plain terminal works too:~/innate-os/workspace/custom_skills/victory_spin.py:
victory_spin), the docstring is what the agent reads to decide when to call it, and the execute() signature is the parameter schema. mobility: Mobility is the whole wiring for the base.
Save the file — the runtime watches this directory and hot-reloads it within a second or two (the same goes for any later edits). Open the app’s Skills tab and run victory_spin (manual triggering) to watch it move, with no agent involved yet.
Skills can also reach off the robot: for one that queries an external API, see the RetrieveEmails worked example, a copy-paste-ready skill that reads your latest Gmail messages.
Create your first agent
Skills get interesting when an agent decides on its own to use them. Next door in~/innate-os/workspace/custom_agents/, create a cheerful_greeter.py agent file:
VictorySpin is the one you just wrote. Naming the class is preferred — your editor catches a rename or a typo before the robot does. Full ID strings work too ("local/victory_spin"), prefixed by where the skill comes from: your own skills are local/<name>, shipped ones are innate-os/<name>.
Agents hot-reload the same way skills do. Open the app, and your agent appears on the Home screen (pull down to refresh if needed): start it, sit in front of the robot, and observe! Tell it in chat that you just merged a big PR, and it should decide on its own that the situation calls for a victory spin. If it ever doesn’t show up, innate service restart is the reliable fallback.
This is the same agent structure dissected method-by-method in the reference docs:
Anatomy of an Agent
Every method explained, plus a copy-paste template for new agents.
Train your first manipulation model for a skill
Innate Robots arms can be trained using state-of-the-art manipulation AI models, running straight on the onboard computer. For MARS, we developed an improved version of ACT (Action Chunking with Transformers) with a reward model — see the training overview for details. To train it, you can use the app to collect episodes of data for imitation learning. I.E. you will be repeatedly performing the task with the robot for a given amount of repetitions to make sure it learns it the way you want. In the app, go to Skills -> Physical, create a new skill, name it, and press “Add Episodes”. You demonstrate the task with the leader arm — a teleoperation controller that MARS mirrors; if you’re unsure what it is or why it has no camera and a trigger instead of a gripper, see What the leader arm is. Then, arm the arm and press record to collect an episode. Ideally, all episodes should start in a similar position and end in a similar position, following roughly the same movement. Start with very similar trajectories to accomplish the goal while making sure that the arm camera has the objective of motion relatively in sight. More guidelines on training can be found in Data Collection. Below, an example of training the arm to pick up a cherry.
Once you collected around 50 episodes, you can start considering stopping data collection. We can easily train your dataset for you if you go to the Training tab and press Train with whole dataset. You can also use the episodes for yourself by ssh-ing in the robot and getting them there.
Once the model is trained (which takes up to 4 hours), you can get it back on your robot and then trigger it from Manual Control Screen!
To learn more about the Skills SDK and go further:
Skills
See policy-defined and code-defined skills with interface references.
Advanced Development
Modify ROS2 packages, recompile, and take full control of MARS.

