> For the complete documentation index, see [llms.txt](https://docs.dextoros.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dextoros.app/skills-and-training/capabilities.md).

# Capabilities

The physical parts a robot reports, and why skills depend on them.

Every robot in DextorOS reports its **capabilities**: the physical parts it has. Skills list the capabilities they need, and DextorOS uses the two lists to decide [which robots can run a skill](/skills-and-training/which-robots-can-run-a-skill.md).

## The capabilities

| Capability   | Short label | What it means                                       |
| ------------ | ----------- | --------------------------------------------------- |
| Arm          | `Arm`       | A manipulator arm that can reach and move objects.  |
| Gripper      | `Grip`      | An end effector that can hold objects.              |
| Depth camera | `Depth`     | A camera that sees distance as well as colour.      |
| LiDAR        | `Lidar`     | A laser scanner for mapping and obstacle detection. |
| Wheeled base | `Wheel`     | Drives on wheels.                                   |
| Legs         | `Legs`      | Walks on legs.                                      |

## Example fleet

The demo fleet shows how different bodies report different capabilities:

| Robot    | Platform           | Capabilities                                    |
| -------- | ------------------ | ----------------------------------------------- |
| `ARM-02` | 6-axis arm         | arm, gripper, depth camera                      |
| `AMR-11` | Warehouse AMR      | wheeled base, LiDAR, depth camera               |
| `QDR-04` | Quadruped          | legs, depth camera, LiDAR                       |
| `MM-01`  | Mobile manipulator | wheeled base, arm, gripper, depth camera, LiDAR |
| `HUM-03` | Humanoid           | legs, arm, gripper, depth camera                |
| `DLT-07` | Delta picker       | arm, gripper                                    |

{% hint style="info" %}
Capabilities describe what a robot **has**, not what brand it is. A skill that needs an arm, a gripper and a depth camera runs on any robot with all three, from any maker.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.dextoros.app/skills-and-training/capabilities.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
