> For the complete documentation index, see [llms.txt](https://docs.openmind.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openmind.com/full-autonomy-guidelines/features.md).

# Autonomy Features

Integration guides for each OM1 autonomy feature.

Hands-on guides for the autonomy features you drive through the OM1 API — mapping, navigation, patrol, charging, and the rest. Each page walks through what the feature does, when to use it, and the exact calls to make, with parameters and troubleshooting alongside.

If you're just getting oriented, the [Cloud Simulator](/simulators/cloud-isaac-sim.md) is the fastest way to see this working without hardware. These guides assume you've done that at least once.

## Control

* [Machine Teleops](/full-autonomy-guidelines/features/machine-teleops.md) — the portal hub: drive a robot, watch its cameras, and run its autonomy

## Mapping & navigation

* [Mapping & SLAM](/full-autonomy-guidelines/features/mapping-slam.md) — build 2D and 3D maps
* [Hybrid Localization](/full-autonomy-guidelines/features/localization.md) — how the robot tracks where it is
* [Relocalization](/full-autonomy-guidelines/features/relocalization.md) — check the pose and recover it from the dock
* [2D Navigation](/full-autonomy-guidelines/features/navigation.md) — autonomous point-to-point on a 2D map
* [3D Navigation](/full-autonomy-guidelines/features/3d-map-navigation.md) — localize and plan on a point-cloud map
* [Frontier Exploration](/full-autonomy-guidelines/features/frontier-exploration.md) — explore an unknown space on its own

## Autonomy behaviors

* [Patrol](/full-autonomy-guidelines/features/patrol.md) — loop a route between waypoints, on demand or on a schedule, and deploy it in one step
* [Auto Charging](/full-autonomy-guidelines/features/auto-charging.md) — dock, charge, and resume
* [Obstacle Avoidance](/full-autonomy-guidelines/features/obstacle-avoidance.md) — steer around what isn't on the map
* [Person Following](/full-autonomy-guidelines/features/person-following.md) — follow a person

## Data & memory

* [Maps, Routes & Locations](/full-autonomy-guidelines/features/maps-routes-locations.md) — manage what the robot navigates on
* [Keep-out Zones](/full-autonomy-guidelines/features/keepout-zones.md) — mark no-go areas the robot avoids
* [Memory Sync](/full-autonomy-guidelines/features/memory-sync.md) — persist and share the agent's memory via the cloud

## Monitoring & media

* [Alerts](/full-autonomy-guidelines/features/alerts.md) — real-time alerts for battery, charging, and docking events
* [Video Recording](/full-autonomy-guidelines/features/video-recording.md) — capture footage for later review
* [Face Detection & Anonymization](/full-autonomy-guidelines/features/face-detection-anonymization.md) — privacy-aware perception

## Reference

* [Robot & Simulation Support](/full-autonomy-guidelines/features/robot-support.md) — which features run on which robot, and where sim differs from hardware

***

System-wide endpoints and a full feature-endpoint index live in the [Autonomy API Overview](/full-autonomy-guidelines/api_endpoints.md).


---

# 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.openmind.com/full-autonomy-guidelines/features.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.
