# Appendix "Robotics Claude"

## Appendix A — Prompt Template “Robotics Claude”

#### Planning

* **Goal**: \[state the robot/agent target]
* **Constraints**: \[physics, time, resources]
* **Success Metrics**: \[metrics and tolerances]
* **Seed & Randomization**: \[seed and domain randomization settings]

#### Tool-Use

* **Tools**: `scenario_builder`, `sensor_rig`, `controller_eval`, `metric_report`
* **I/O Contracts**: \[input/output schemas]
* **Checkpoints**: \[logging/checkpoint intervals]

#### Guardrails

* **Safety**: \[force/velocity limits]
* **Compliance**: \[asset licensing and privacy]
* **Reproducibility**: \[pin runtime and dependencies]

## Execution Template (YAML)

```yaml
plan:
  objective: "Evaluate warehouse robot path planner under dynamic obstacles"
  metrics: ["path_length", "collision_count", "time_to_goal"]
  constraints:
    max_speed: 1.2 m/s
    max_force: 40 N
  scenario:
    map: "warehouse_v2"
    obstacles: "dynamic_pallets"
    randomization:
      seed: 1337
      lighting: [low, medium]
  tools:
    - name: controller_eval
      params: { planner: "RRT*", horizon: 5s }
    - name: metric_report
      params: { export: ["csv","video"] }
guardrails:
  license_policy: "commercial_eval"
  runtime:
    physics_runtime: "deeptics-physx:1.0.0"
    sensor_pipeline: "deeptics-sensor:0.4.2"
```


---

# Agent Instructions: 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:

```
GET https://deeptics.gitbook.io/deeptics-whitepaper/implementations/appendix-robotics-claude.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
