omniharness-cli 0.1.15 → 0.1.17
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 +3 -1
- package/package.json +25 -11
- package/vendor/win32-x64/omniharness.exe +0 -0
package/README.md
CHANGED
|
@@ -7,12 +7,14 @@ learns from past outcomes — while OmniRoute stays responsible for routing mode
|
|
|
7
7
|
requests to providers.
|
|
8
8
|
|
|
9
9
|
This package is a thin wrapper around the self-contained OmniHarness binary;
|
|
10
|
-
the `omniharness` command is the binary
|
|
10
|
+
the `omniharness` command is installed by npm and forwards to the bundled binary.
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```sh
|
|
15
15
|
npm install -g omniharness-cli
|
|
16
|
+
# If PowerShell still cannot find it, open a new terminal so npm's global bin
|
|
17
|
+
# directory is reloaded into PATH.
|
|
16
18
|
```
|
|
17
19
|
|
|
18
20
|
## Quick start
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omniharness-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OmniHarness — local-first agent orchestration harness for OmniRoute.
|
|
3
|
+
"version": "0.1.17",
|
|
4
|
+
"description": "OmniHarness — local-first agent orchestration harness for OmniRoute.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -15,21 +15,35 @@
|
|
|
15
15
|
"vendor/",
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.json",
|
|
20
|
+
"dev": "tsx src/cli.ts",
|
|
21
|
+
"start": "node dist/cli.js",
|
|
22
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
23
|
+
"test": "node --test --import tsx test/**/*.test.ts"
|
|
24
|
+
},
|
|
18
25
|
"keywords": [
|
|
19
26
|
"omniroute",
|
|
27
|
+
"omniharness",
|
|
20
28
|
"agents",
|
|
21
29
|
"orchestration",
|
|
22
|
-
"harness",
|
|
23
|
-
"llm",
|
|
24
30
|
"cli"
|
|
25
31
|
],
|
|
26
|
-
"os": [
|
|
27
|
-
"win32"
|
|
28
|
-
],
|
|
29
|
-
"cpu": [
|
|
30
|
-
"x64"
|
|
31
|
-
],
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=20"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@ai-sdk/provider": "^1.0.0",
|
|
37
|
+
"@mastra/core": "^0.10.0",
|
|
38
|
+
"ink": "^5.1.0",
|
|
39
|
+
"ink-spinner": "^5.0.0",
|
|
40
|
+
"react": "^18.3.1",
|
|
41
|
+
"zod": "^3.23.8"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^22.10.0",
|
|
45
|
+
"@types/react": "^18.3.12",
|
|
46
|
+
"tsx": "^4.19.2",
|
|
47
|
+
"typescript": "^5.7.2"
|
|
34
48
|
}
|
|
35
49
|
}
|
|
Binary file
|