oneagentgraph-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.
- oneagentgraph_cli-0.1.0.data/scripts/oneagentgraph.exe +0 -0
- oneagentgraph_cli-0.1.0.dist-info/METADATA +106 -0
- oneagentgraph_cli-0.1.0.dist-info/RECORD +6 -0
- oneagentgraph_cli-0.1.0.dist-info/WHEEL +4 -0
- oneagentgraph_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
- oneagentgraph_cli-0.1.0.dist-info/sboms/oneagentgraph.cyclonedx.json +1311 -0
|
Binary file
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oneagentgraph-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 :: Build Tools
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Summary: Compose agents into a graph over oneharness/onejudge and merge their outputs into one event stream.
|
|
13
|
+
Keywords: agents,orchestration,cli,ndjson,llm
|
|
14
|
+
Home-Page: https://github.com/nickderobertis/oneagentgraph
|
|
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/oneagentgraph
|
|
20
|
+
Project-URL: Repository, https://github.com/nickderobertis/oneagentgraph
|
|
21
|
+
|
|
22
|
+
# oneagentgraph
|
|
23
|
+
|
|
24
|
+
Compose agents into a graph over [oneharness] and [onejudge], and merge their
|
|
25
|
+
outputs into **one NDJSON event stream**.
|
|
26
|
+
|
|
27
|
+
One config file and one CLI call: the graph names an oneharness config per role
|
|
28
|
+
and side, and `oneagentgraph` constructs the invocations, supervises liveness,
|
|
29
|
+
and emits every turn, tool call, fallback, and settle as an event you can pipe
|
|
30
|
+
into anything.
|
|
31
|
+
|
|
32
|
+
> **Interface-only.** This repository currently ships the *contract* and the
|
|
33
|
+
> types, config schema, and CLI surface that implement it — and nothing behind
|
|
34
|
+
> them. Every command parses per the contract and then refuses with `NOT
|
|
35
|
+
> IMPLEMENTED` and exit code 3. Install it to pin the interface; do not wire it
|
|
36
|
+
> into a pipeline expecting work to happen. See [`docs/contract.md`].
|
|
37
|
+
|
|
38
|
+
## Install
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install oneagentgraph-cli # prebuilt binary, no Rust toolchain
|
|
42
|
+
npm install -g oneagentgraph-cli # the same binary, via npm
|
|
43
|
+
cargo install oneagentgraph # from crates.io, compiled locally
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
To install a revision that has not been released yet, build it from the
|
|
47
|
+
repository:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
cargo install --git https://github.com/nickderobertis/oneagentgraph --locked
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Prebuilt archives for Linux (x86-64, arm64), macOS (Intel, Apple silicon), and
|
|
54
|
+
Windows (x86-64) are attached to every [release], with `sha256` checksums.
|
|
55
|
+
|
|
56
|
+
## What it does
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
oneagentgraph run graph.yaml --task "add the retry" --output json
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
A graph is YAML — members, the oneharness config each side uses, personas,
|
|
63
|
+
schedules, and dependencies:
|
|
64
|
+
|
|
65
|
+
```yaml
|
|
66
|
+
version: 1
|
|
67
|
+
name: node-scope
|
|
68
|
+
members:
|
|
69
|
+
worker:
|
|
70
|
+
kind: onejudge
|
|
71
|
+
base_config: ./onejudge.base.yaml
|
|
72
|
+
agent: { oneharness_config: ./oneharness.toml }
|
|
73
|
+
judge: { oneharness_config: ./oneharness.judge.toml }
|
|
74
|
+
mode: bypass
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
`run` streams one envelope per line. Exit `0` means every member settled, `1`
|
|
78
|
+
that one failed or died, `2` that the config is invalid.
|
|
79
|
+
|
|
80
|
+
**oneagentgraph owns no harness, model, or fallback logic.** oneharness keeps
|
|
81
|
+
owning identity chains, fallback, model pins, and quota classification; onejudge
|
|
82
|
+
keeps owning the two-party conversation. This composes them.
|
|
83
|
+
|
|
84
|
+
The full surface — the shared event envelope, the graph schema, every CLI
|
|
85
|
+
command, the event kinds, and the liveness rules — is [`docs/contract.md`].
|
|
86
|
+
|
|
87
|
+
## Develop
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
just bootstrap # from a clean clone
|
|
91
|
+
just check # the deterministic gate: format, clippy, tests, coverage, docs
|
|
92
|
+
just gate # check + the LLM-judge tier; the pre-push bar
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
[`AGENTS.md`](AGENTS.md) is the durable instruction layer for anyone — human or
|
|
96
|
+
agent — working here.
|
|
97
|
+
|
|
98
|
+
## Licence
|
|
99
|
+
|
|
100
|
+
MIT. See [LICENSE](LICENSE).
|
|
101
|
+
|
|
102
|
+
[oneharness]: https://github.com/nickderobertis/oneharness
|
|
103
|
+
[onejudge]: https://pypi.org/project/onejudge/
|
|
104
|
+
[release]: https://github.com/nickderobertis/oneagentgraph/releases
|
|
105
|
+
[`docs/contract.md`]: docs/contract.md
|
|
106
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
oneagentgraph_cli-0.1.0.data/scripts/oneagentgraph.exe,sha256=nhMCJQT5OSZCMTA5G3mTftmvMlNN_NLe4SlzxcC8hkI,694272
|
|
2
|
+
oneagentgraph_cli-0.1.0.dist-info/METADATA,sha256=o4oZG4yQfvxeUR7jlqdt4KgcJHSI_C10Elmy0IMmiWI,3752
|
|
3
|
+
oneagentgraph_cli-0.1.0.dist-info/WHEEL,sha256=2zDlIYIdD4m4N3p5DVEG3iJhGLdhsBQgdH-FqVkAur8,94
|
|
4
|
+
oneagentgraph_cli-0.1.0.dist-info/licenses/LICENSE,sha256=JeBGdcXIUkoTZEHhkKd-FmKgdgumkH509Ob1QWJomVE,1072
|
|
5
|
+
oneagentgraph_cli-0.1.0.dist-info/sboms/oneagentgraph.cyclonedx.json,sha256=faIjh0fj1Hni7l45uvfnXTgCY7h7kVuCjs6knrj46S0,40245
|
|
6
|
+
oneagentgraph_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -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.
|