roboharm 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,41 @@
1
+ # --- environments, caches, tooling ---
2
+ .venv/
3
+ **/.venv/
4
+ __pycache__/
5
+ *.egg-info/
6
+ .pytest_cache/
7
+ .ruff_cache/
8
+ .DS_Store
9
+ .local/
10
+ research/cache/
11
+
12
+ # --- website builds and dependencies ---
13
+ website/node_modules/
14
+ website/.next*/
15
+ website/.local/
16
+ website/tsconfig.tsbuildinfo
17
+
18
+ # --- upstream clones (pinned by hash in research/, not vendored here) ---
19
+ third_party/
20
+
21
+ # --- heavy simulator evidence: stays on disk and in backups, hash-sealed by each experiment's artifact-sha256.json / sha256.json ---
22
+ runs/
23
+ experiments/**/*.mjb
24
+ experiments/**/*.jsonl.gz
25
+ experiments/**/*.npz
26
+ experiments/**/*.mkv
27
+ experiments/**/trace.jsonl
28
+ experiments/**/actions.jsonl
29
+ experiments/**/states.jsonl
30
+
31
+ # --- pinned MuJoCo Menagerie meshes (XML kept; meshes re-fetched per assets/menagerie/provenance.json) ---
32
+ assets/menagerie/*/assets/
33
+ benchmarks/*/runtime/payload/assets/menagerie/*/assets/
34
+
35
+ # --- private original hardware recordings and session logs (never published) ---
36
+ research/lapis-evidence-v1/snapshot-*/
37
+ research/lapis-live-check-v1/**/*.mkv
38
+ research/lapis-live-check-v1/**/*.mp4
39
+
40
+ # --- local dataset/clone caches ---
41
+ .cache/
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.5
2
+ Name: roboharm
3
+ Version: 0.0.1
4
+ Summary: RoboHarm: BenchFlow robotic agent safety benchmark, an AgentHarm-style paired harmful/benign evaluation (name reserved; code lives in the private robo-use-team repository until release)
5
+ Project-URL: Homepage, https://github.com/benchflow-ai
6
+ Author-email: Xiangyi Li <xiangyi@benchflow.ai>
7
+ License-Expression: Apache-2.0
8
+ Keywords: benchflow,benchmark,manipulation,robotics,safety
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # roboharm
16
+
17
+ RoboHarm: BenchFlow robotic agent safety benchmark, an AgentHarm-style paired harmful/benign evaluation (name reserved; code lives in the private robo-use-team repository until release)
18
+
19
+ This is a placeholder release that reserves the package name for the BenchFlow team. It contains no functionality yet. The initial public release will replace it; until then, the source of record is the private `benchflow-ai/robo-use-team` repository.
@@ -0,0 +1,5 @@
1
+ # roboharm
2
+
3
+ RoboHarm: BenchFlow robotic agent safety benchmark, an AgentHarm-style paired harmful/benign evaluation (name reserved; code lives in the private robo-use-team repository until release)
4
+
5
+ This is a placeholder release that reserves the package name for the BenchFlow team. It contains no functionality yet. The initial public release will replace it; until then, the source of record is the private `benchflow-ai/robo-use-team` repository.
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.25"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "roboharm"
7
+ version = "0.0.1"
8
+ description = "RoboHarm: BenchFlow robotic agent safety benchmark, an AgentHarm-style paired harmful/benign evaluation (name reserved; code lives in the private robo-use-team repository until release)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "Xiangyi Li", email = "xiangyi@benchflow.ai" }]
13
+ keywords = ["robotics", "benchmark", "benchflow", "manipulation", "safety"]
14
+ classifiers = ["Development Status :: 1 - Planning", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Artificial Intelligence"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/benchflow-ai"
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["src/roboharm"]
@@ -0,0 +1,3 @@
1
+ """roboharm: name reserved for the BenchFlow Robo-Use / RoboHarm program. Placeholder release, no functionality."""
2
+
3
+ __version__ = "0.0.1"