omniharness-cli 0.1.0 → 0.1.3
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.
- package/README.md +9 -3
- package/package.json +6 -2
- package/vendor/win32-x64/omniharness.exe +0 -0
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ omniharness run "add a README" --headless # runs in the current directory
|
|
|
23
23
|
omniharness # interactive cockpit (TUI)
|
|
24
24
|
omniharness sessions # persisted sessions
|
|
25
25
|
omniharness models # provider/model catalog from OmniRoute
|
|
26
|
+
omniharness update # check npm and self-update to the latest release
|
|
26
27
|
```
|
|
27
28
|
|
|
28
29
|
The harness treats the **current working directory** as the workspace.
|
|
@@ -31,7 +32,7 @@ The harness treats the **current working directory** as the workspace.
|
|
|
31
32
|
|
|
32
33
|
| Variable | Meaning |
|
|
33
34
|
|---|---|
|
|
34
|
-
| `OMNIROUTE_URL` | OmniRoute endpoint (default `http://127.0.0.1:
|
|
35
|
+
| `OMNIROUTE_URL` | OmniRoute endpoint (default `http://127.0.0.1:20128`, the HTTP API port) |
|
|
35
36
|
| `OMNIROUTE_API_KEY` | OmniRoute API key — `Authorization: Bearer <key>` on every request |
|
|
36
37
|
|
|
37
38
|
If `OMNIROUTE_API_KEY` is unset, the harness asks you to paste the key on
|
|
@@ -43,5 +44,10 @@ config, sessions, logs, or telemetry. The key is redacted from all output;
|
|
|
43
44
|
|
|
44
45
|
- Only `win32-x64` is shipped in this version; other platforms can be added by
|
|
45
46
|
building the Go binary and publishing a new release.
|
|
46
|
-
-
|
|
47
|
-
|
|
47
|
+
- Publishing is automatic: every push to `main` on GitHub runs
|
|
48
|
+
`.github/workflows/publish.yml`, which bumps the version, verifies
|
|
49
|
+
(vet + tests), builds, and publishes via **npm trusted publishing (OIDC)**
|
|
50
|
+
— no npm token is stored anywhere, and provenance is attached automatically.
|
|
51
|
+
Locally, `scripts/release-npm.sh` (or `scripts\release-npm.ps1`) does the
|
|
52
|
+
same; add `--dry-run` to skip the publish, or pass `--minor`/`--major`/an
|
|
53
|
+
explicit version to control the bump.
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omniharness-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "OmniHarness — local-first agent orchestration harness for OmniRoute. Analyzes tasks, selects strategies and models, drives agents, repairs failures, and learns from outcomes.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/mattycigemp-crypto/omniharness.git"
|
|
9
|
+
},
|
|
6
10
|
"bin": {
|
|
7
11
|
"omniharness": "cli.js"
|
|
8
12
|
},
|
|
Binary file
|