@karowanorg/orc-harness-codex 0.1.0 → 0.1.1
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/dist/harness.js +2 -3
- package/dist/rpc.d.ts +1 -2
- package/dist/rpc.js +1 -2
- package/package.json +3 -3
package/dist/harness.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* codex harness: drives `codex app-server` (codex-cli 0.144.x) over
|
|
3
|
-
* newline-delimited JSON-RPC on stdio. The server process is spawned
|
|
4
|
-
* the provided executor
|
|
5
|
-
* JSON-RPC simply flows through the ssh pipes.
|
|
3
|
+
* newline-delimited JSON-RPC on stdio. The server process is spawned through
|
|
4
|
+
* the provided executor.
|
|
6
5
|
*
|
|
7
6
|
* Wire protocol notes (verified empirically against codex-cli 0.144.5 and its
|
|
8
7
|
* `codex app-server generate-json-schema` output):
|
package/dist/rpc.d.ts
CHANGED
|
@@ -12,8 +12,7 @@ export interface JsonRpcClientOptions {
|
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* Minimal newline-delimited JSON-RPC 2.0 client over a Proc's stdio.
|
|
15
|
-
* Hand-rolled on purpose: the
|
|
16
|
-
* because the executor provides the pipes.
|
|
15
|
+
* Hand-rolled on purpose: the executor provides the pipes.
|
|
17
16
|
*/
|
|
18
17
|
export declare class JsonRpcClient {
|
|
19
18
|
private readonly proc;
|
package/dist/rpc.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Minimal newline-delimited JSON-RPC 2.0 client over a Proc's stdio.
|
|
3
|
-
* Hand-rolled on purpose: the
|
|
4
|
-
* because the executor provides the pipes.
|
|
3
|
+
* Hand-rolled on purpose: the executor provides the pipes.
|
|
5
4
|
*/
|
|
6
5
|
export class JsonRpcClient {
|
|
7
6
|
proc;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karowanorg/orc-harness-codex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "0BSD",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@karowanorg/orc-core": "^0.1.
|
|
9
|
-
"@karowanorg/orc-executors": "^0.1.
|
|
8
|
+
"@karowanorg/orc-core": "^0.1.1",
|
|
9
|
+
"@karowanorg/orc-executors": "^0.1.1"
|
|
10
10
|
},
|
|
11
11
|
"description": "Codex harness for orc: codex app-server JSON-RPC through the executor.",
|
|
12
12
|
"types": "dist/index.d.ts",
|