Metadata-Version: 2.4
Name: robot-md-example-actuator
Version: 0.1.0
Summary: Minimal example actuator that demonstrates the robot-md actuator package layout. Does not move physical hardware. See https://robotmd.dev/cookbook/ for usage.
Author-email: craigm26 <craigm26@gmail.com>
License: Apache-2.0
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: robot-md-gateway>=0.5.0a1
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# robot-md-example-actuator

Production actuator for `robot-md-gateway`.

## Install

```bash
pip install -e .
robot-md install-skill robot_md_example_actuator
```

## Verify

```bash
robot-md-gateway list-actuators
# expect to see: robot-md-example-actuator
```

## Develop

The default `execute()` raises `NotImplementedError`. Open Claude Code in
this directory and ask it to read your `ROBOT.md` and fill in the
implementation against your hardware.

## Test

```bash
pip install -e '.[dev]'
pytest -v
```

## Why does this package exist?

This package is the seed example for the `robot-md` cookbook walkthrough at
[robotmd.dev/cookbook/](https://robotmd.dev/cookbook/). Beat 6 of that
walkthrough demonstrates `robot-md actuator search` and `pip install` against
this package. It does not move hardware — it's a no-op driver whose only
purpose is to be a real, installable, RRF-registered actuator package that
readers can find in the catalog and install on their machine without any
hardware setup.

For real drivers, see [/case-studies/](https://robotmd.dev/case-studies/).
