onevcs-cli 0.1.0__py3-none-win_amd64.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.
Binary file
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: onevcs-cli
3
+ Version: 0.1.0
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Environment :: Console
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Rust
10
+ Classifier: Topic :: Software Development :: Version Control
11
+ License-File: LICENSE
12
+ Summary: Version control and remote-host abstraction for agent workflows: host-neutral change requests, sessions, and a rules system.
13
+ Keywords: cli,git,github,vcs,agent
14
+ Home-Page: https://github.com/nickderobertis/onevcs
15
+ Author: Nick DeRobertis
16
+ License: MIT
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
19
+ Project-URL: Homepage, https://github.com/nickderobertis/onevcs
20
+ Project-URL: Repository, https://github.com/nickderobertis/onevcs
21
+
22
+ # onevcs
23
+
24
+ Version control and its remote host behind one host-neutral vocabulary, for agent
25
+ workflows.
26
+
27
+ The review unit is a **change request** — GitHub maps it to a pull request, and a
28
+ later host maps it to whatever it calls the same thing. `Vcs` owns the repository
29
+ side (identities, sessions over an isolated worktree, preserved work);
30
+ `RemoteHost` owns the host side (opening a change, reading its checks, merging
31
+ it); a **rules file** decides, per repository, how a change publishes and what
32
+ verifies it. Everything a run does is emitted as an NDJSON event stream.
33
+
34
+ > ## Interface-only, for now
35
+ >
36
+ > This repository is the approved contract — [`docs/contract.md`](docs/contract.md)
37
+ > — compiled. Every public type, trait, config schema, and CLI argument is final
38
+ > and typed; nothing behind them is implemented. Trait methods return
39
+ > `Error::NotImplemented` and every CLI subcommand exits `70`. Behaviour lands
40
+ > per-seam, and each seam brings its own real journey with it.
41
+
42
+ ## Install
43
+
44
+ ```console
45
+ cargo install onevcs # crates.io
46
+ pip install onevcs-cli # a prebuilt wheel, no Rust toolchain
47
+ npm install -g onevcs-cli # a prebuilt binary, no Rust toolchain
48
+ ```
49
+
50
+ All three install the same `onevcs` binary. Prebuilt binaries exist for Linux
51
+ (x64, arm64), macOS (x64, arm64), and Windows (x64); every release also attaches
52
+ the archives and their `.sha256` checksums for a direct download.
53
+
54
+ ## Use
55
+
56
+ ```console
57
+ onevcs --help
58
+ ```
59
+
60
+ The whole command surface, and the exit codes `publish` reserves (`1` gate or
61
+ checks failed, `2` invalid, `3` sync conflict), are declared in
62
+ [`docs/contract.md`](docs/contract.md).
63
+
64
+ ## Develop
65
+
66
+ ```console
67
+ just bootstrap # from a clean clone
68
+ just check # the deterministic gate: format, clippy, tests, coverage, docs
69
+ just gate # check, plus the diff-scoped LLM-judge tier — the pre-push bar
70
+ ```
71
+
72
+ `just --list` is the full index. [`AGENTS.md`](AGENTS.md) holds the durable
73
+ instructions: what the gate enforces, how releases work, and the rules that govern
74
+ changes while the crate is interface-only.
75
+
76
+ ## License
77
+
78
+ MIT. See [`LICENSE`](LICENSE).
79
+
@@ -0,0 +1,6 @@
1
+ onevcs_cli-0.1.0.data/scripts/onevcs.exe,sha256=B87ie0TP9_b7pGa9dJJRrHFu_vtfZO_Od7V72KpYgw0,952320
2
+ onevcs_cli-0.1.0.dist-info/METADATA,sha256=IlNea-n_Ek2atgXYhqqo-wFWcd3EFv3q5iw4jY7VIdc,2984
3
+ onevcs_cli-0.1.0.dist-info/WHEEL,sha256=2zDlIYIdD4m4N3p5DVEG3iJhGLdhsBQgdH-FqVkAur8,94
4
+ onevcs_cli-0.1.0.dist-info/licenses/LICENSE,sha256=JeBGdcXIUkoTZEHhkKd-FmKgdgumkH509Ob1QWJomVE,1072
5
+ onevcs_cli-0.1.0.dist-info/sboms/onevcs.cyclonedx.json,sha256=ggE8khDihJ7PTI-tBAaAOD_d43O46c1d1l9ezhYfKMM,74637
6
+ onevcs_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.14.1)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nick DeRobertis
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.