Open-source workcell black box for replayable physical evidence.
- Official site: https://www.metriplane.com/
- Python package: https://pypi.org/project/metriplane/
- 3-minute v0.2.0 demo: https://www.youtube.com/watch?v=7U5nbBbGGbw
- v0.2.0 release: https://github.com/Miko997/metriplane/releases/tag/v0.2.0
- Zenodo DOI: https://doi.org/10.5281/zenodo.20736619
- External reproduction issue: #6
- Short feedback form: https://docs.google.com/forms/d/e/1FAIpQLSfnMZ4b3fSVVtwA89hZt3A09gf85eLfhW00FDD76TGRLNpirQ/viewform
Metriplane's frozen v0.2.0 research artifact is an open-source physical-observability system for bounded workcells. It converts replayed or calibrated workcell state into physical event logs, Cell Truth Reports, portable evidence bundles, local bundle verification, and generated regression checks. The v0.2.1 packaging release makes the core Python package and command-line interfaces installable from PyPI without changing the frozen v0.2.0 paper evidence.
Metriplane requires Python 3.12 or newer.
python3.12 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install "metriplane==0.2.1"
metriplane doctor
metriplane atlas protocol export --out metriplane-protocolThe PyPI distribution contains the core Python packages and command-line entry points. Repository assets are intentionally not embedded in the wheel:
- checked-in demo datasets and domain-pack configurations
- the local web dashboard
- maintainer helper scripts
- frozen paper evidence and reproduction records
Use the exact source checkout in the reproduction section below when a command
refers to datasets/, configs/, web/, tools/, or evidence/.
When run from the wheel, doctor warnings about those source-checkout paths are
expected and do not mean the package installation failed.
Robotics teams often need more than raw logs after an incident. Metriplane explores a structured evidence layer where replayed workcell state becomes an inspectable incident bundle, a verification target, and a generated regression check.
replayed workcell state
→ physical event
→ incident
→ Cell Truth Report
→ evidence bundle
→ bundle verification
→ generated regression check
The author-run evidence package included in the archived release records:
- 580 tests passed
- deterministic replay pass=true
- 6 physical events
- 1 incident
- 35.0 second missing-tool delay
- bundle verify: pass=true
- generated regression check: PASS
The core SoftwareX reproduction is camera-free, uses the exact v0.2.0 tag,
and writes rerun outputs to temporary directories rather than the archived
evidence package.
git clone --branch v0.2.0 --depth 1 https://github.com/Miko997/metriplane.git
cd metriplane
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e .
python -m metriplane.cli doctor
RUNS=/tmp/metriplane-softwarex-runs \
./tools/mp.sh deterministic-replay datasets/demo/session_001.jsonl
metriplane atlas validate-pack configs/domain_packs/assembly_cell
metriplane atlas run \
--session-jsonl datasets/demo/atlas/assembly_cell_missing_tool.jsonl \
--pack configs/domain_packs/assembly_cell \
--out /tmp/metriplane-softwarex-atlas \
--overwrite
metriplane atlas bundle verify \
/tmp/metriplane-softwarex-atlas/evidence_bundles/INC-0001.zip
metriplane atlas test \
/tmp/metriplane-softwarex-atlas/regression_tests/INC-0001.yaml \
--jsonThe full maintainer gate is separate from the core artifact path and adds test and browser dependencies:
python -m pip install -e .
python -m pip install pytest playwright
python -m playwright install chromium --with-deps
PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python -m pytest -q- observe-only
- local-first
- replay-first, camera-compatible
- bounded workcell scoped
- research-software oriented
- focused on evidence, not robot control
- no robot or machine control
- no safety certification
- no quality-release approval
- no people recognition
- no marker-free tracking claim
- no full 3D reconstruction claim
- no production-factory deployment validation
- no factory-wide deployment readiness
Robotics teams often debug incidents using recorded sensor data, ROS bags, logs, traces, and simulation replays. Those artifacts are valuable raw evidence. Metriplane is not a replacement for ROS bags or logs. It explores the next structured layer: incident context, evidence bundle, verification result, and generated regression check.
External technical feedback and public discussion links are collected on the official site:
https://www.metriplane.com/feedback/
If you use or evaluate Metriplane v0.2.0, cite the archived release:
https://doi.org/10.5281/zenodo.20736619
The SoftwareX manuscript evaluates the archived Metriplane v0.2.0 release. Reproduction commands, expected outputs, and evidence provenance are documented in docs/softwarex_reproducibility.md.
The public Python package and command-line entry points remain named metriplane.
| Area | Path | Purpose |
|---|---|---|
| Package | metriplane/ |
Python package and CLI implementation |
| Domain packs | configs/domain_packs/ |
Workcell-specific Atlas configuration |
| Demo datasets | datasets/demo/ |
Checked-in replay inputs for reproduction |
| Evidence | evidence/ |
Release evidence, manifests, and experiment artifacts |
| Tools | tools/ |
Supported local helper scripts |
| Docs | docs/ |
Technical documentation and runbooks |
| Web UI | web/ |
Local operator and review interfaces |
Use the Quick Reproduction Path above for the camera-free core artifact. The same commands, expected outputs, evidence provenance, and the separate maintainer-gate sequence are maintained in docs/softwarex_reproducibility.md and the review kit.
- Atlas evidence workflow: docs/atlas/README.md
- Physical observability scope: docs/physical_observability.md
- Development setup: docs/development.md
- Prerequisites: docs/PREREQUISITES.md
- SoftwareX reproducibility: docs/softwarex_reproducibility.md
- Evidence matrix: docs/eval/evidence_matrix.md
- Integration notes: docs/INTEGRATIONS.md
- PyPI release runbook: docs/releasing.md
- Previous detailed README archive: docs/archive/README_pre_website_refresh.md
MIT License. See LICENSE.
