# bnto-engine
Shared engine layer. Registry creation and pipeline convenience for all consumers.
## Overview
`bnto-engine` provides the processor registry and a `run_pipeline()` convenience function so both `bnto-wasm` (browser) and `bnto` (native binary) share the same processor wiring without duplicating registration code.
## Exports
| `create_registry()` | Returns a `NodeRegistry` with all processors (browser + native with `native` ff) |
| `create_browser_registry()` | Returns a `NodeRegistry` with only browser-safe (WASM-capable) processors |
| `run_pipeline()` | Parses JSON, creates full registry, executes pipeline in one call |
## Registered Processors
| `image-compress` | `bnto-image` | `CompressImages` |
| `image-resize` | `bnto-image` | `ResizeImages` |
| `image-convert` | `bnto-image` | `ConvertImageFormat` |
| `spreadsheet-clean` | `bnto-csv` | `CleanCsv` |
| `spreadsheet-rename` | `bnto-csv` | `RenameCsvColumns` |
| `file-rename` | `bnto-file` | `RenameFiles` |
## Development
```bash
cargo test -p bnto-engine # Unit tests (registry, pipeline, generated recipes)
```