orro 0.0.1__py3-none-any.whl

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.
orro/__init__.py ADDED
@@ -0,0 +1,20 @@
1
+ """ORRO — the Observed Run & Review Orchestrator (Moonweave).
2
+
3
+ Name placeholder. The active product lives at
4
+ https://github.com/Moonweave-Systems/ORRO and is built on the witnessd runtime
5
+ and the Depone verifier. This distribution reserves the ``orro`` name while the
6
+ product surface is finalized.
7
+ """
8
+
9
+ __version__ = "0.0.1"
10
+
11
+ PROJECT_URL = "https://github.com/Moonweave-Systems/ORRO"
12
+
13
+
14
+ def about() -> str:
15
+ return (
16
+ "ORRO — Observed Run & Review Orchestrator (Moonweave).\n"
17
+ "Evidence-backed execution layer for coding agents: scout -> flowplan -> "
18
+ "proofrun -> proofcheck -> handoff.\n"
19
+ f"Project: {PROJECT_URL}"
20
+ )
orro/__main__.py ADDED
@@ -0,0 +1,4 @@
1
+ from orro import about
2
+
3
+ if __name__ == "__main__":
4
+ print(about())
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: orro
3
+ Version: 0.0.1
4
+ Summary: ORRO — the Observed Run & Review Orchestrator. Name placeholder for the Moonweave evidence-backed execution layer.
5
+ Author-email: Moonweave Systems <choimoonyoung3631@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Moonweave-Systems/ORRO
8
+ Project-URL: Repository, https://github.com/Moonweave-Systems/ORRO
9
+ Project-URL: witnessd (engine), https://github.com/Moonweave-Systems/witnessd
10
+ Project-URL: Depone (verifier), https://github.com/Moonweave-Systems/Depone
11
+ Keywords: orro,moonweave,evidence,verification,coding-agents,provenance
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Software Development :: Quality Assurance
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # ORRO
23
+
24
+ **Observed Run & Review Orchestrator** — the evidence-backed execution layer for
25
+ coding agents, by [Moonweave](https://github.com/Moonweave-Systems).
26
+
27
+ > This PyPI distribution reserves the `orro` name for the Moonweave product.
28
+ > Version `0.0.1` is an early placeholder; the active product surface lives in
29
+ > the repositories below.
30
+
31
+ ORRO turns a goal into an evidence-backed workflow:
32
+
33
+ ```
34
+ scout -> flowplan -> proofrun -> proofcheck -> handoff
35
+ ```
36
+
37
+ It keeps the coding agent (Codex / Claude / others) native and makes the work
38
+ **independently observable, policy-bound, and re-verifiable**:
39
+
40
+ - **witnessd** — the execution/observation runtime that emits signed evidence.
41
+ - **Depone** — the non-executing verifier that re-derives the verdict from bytes.
42
+ - **ORRO** — the product surface that ties them together.
43
+
44
+ ## Links
45
+
46
+ - Product: https://github.com/Moonweave-Systems/ORRO
47
+ - Runtime (witnessd): https://github.com/Moonweave-Systems/witnessd
48
+ - Verifier (Depone): https://github.com/Moonweave-Systems/Depone
49
+
50
+ ## License
51
+
52
+ MIT © 2026 Moonweave Systems
@@ -0,0 +1,7 @@
1
+ orro/__init__.py,sha256=h39o27Mw630tDwoxiX8czTVJZtQgbYpfhGjNl_rMpes,660
2
+ orro/__main__.py,sha256=xjz2S11msLVvj3s8zVFKJYyfNFM8K_RT27Ksd7cq5Cs,70
3
+ orro-0.0.1.dist-info/licenses/LICENSE,sha256=g5wVQ9v_IhS6wd-Yr1p0nwVo7BORA9BDBSFiIBibix4,1074
4
+ orro-0.0.1.dist-info/METADATA,sha256=14HIyY1OzaqDGe8DO8dd7kf195-bFuty2AAd3FABYRk,2038
5
+ orro-0.0.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
6
+ orro-0.0.1.dist-info/top_level.txt,sha256=KwbY3UlV1O7g_nfgWKXhBOyp6UhS1bOyaAGFJgTpSKE,5
7
+ orro-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Moonweave Systems
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ orro