@orcareplay/adapters 0.2.0 → 0.2.2
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/opencode-capture.d.ts +7 -0
- package/dist/opencode-capture.d.ts.map +1 -0
- package/dist/opencode-capture.js +61 -0
- package/dist/opencode-capture.js.map +1 -0
- package/dist/opencode.d.ts +3 -4
- package/dist/opencode.d.ts.map +1 -1
- package/dist/opencode.js +29 -14
- package/dist/opencode.js.map +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/** Self-contained: serialized into a plugin loaded by OpenCode's compiled Bun executable. */
|
|
2
|
+
export declare function installOpenCodeCapture(proxyUrl: string): {
|
|
3
|
+
dispose(): Promise<void>;
|
|
4
|
+
};
|
|
5
|
+
/** Local file URL works in both legacy and current OpenCode plugin loaders; no npm install. */
|
|
6
|
+
export declare function writeOpenCodeCapturePlugin(runDir: string, proxyUrl: string): Promise<string>;
|
|
7
|
+
//# sourceMappingURL=opencode-capture.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opencode-capture.d.ts","sourceRoot":"","sources":["../src/opencode-capture.ts"],"names":[],"mappings":"AAIA,6FAA6F;AAC7F,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,MAAM,GAAG;IAAE,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CAAA;CAAE,CA+CrF;AAED,+FAA+F;AAC/F,wBAAsB,0BAA0B,CAC9C,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,MAAM,CAAC,CAWjB"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { mkdir, writeFile } from 'node:fs/promises';
|
|
2
|
+
import { join } from 'node:path';
|
|
3
|
+
import { pathToFileURL } from 'node:url';
|
|
4
|
+
/** Self-contained: serialized into a plugin loaded by OpenCode's compiled Bun executable. */
|
|
5
|
+
export function installOpenCodeCapture(proxyUrl) {
|
|
6
|
+
const original = globalThis.fetch;
|
|
7
|
+
const proxy = new URL(proxyUrl);
|
|
8
|
+
let active = true;
|
|
9
|
+
const wrapped = function (input, init) {
|
|
10
|
+
if (!active)
|
|
11
|
+
return original(input, init);
|
|
12
|
+
let target;
|
|
13
|
+
try {
|
|
14
|
+
target = new URL(input instanceof Request ? input.url : String(input));
|
|
15
|
+
}
|
|
16
|
+
catch {
|
|
17
|
+
return original(input, init);
|
|
18
|
+
}
|
|
19
|
+
// Match only model endpoints. OAuth login/refresh and other ChatGPT traffic stay untouched.
|
|
20
|
+
// Preserve the actual origin so a configured Orca gateway cannot receive a ChatGPT token.
|
|
21
|
+
const modelEndpoint = (target.hostname === 'chatgpt.com' && target.pathname === '/backend-api/codex/responses') ||
|
|
22
|
+
(target.hostname === 'api.openai.com' &&
|
|
23
|
+
['/v1/responses', '/v1/chat/completions'].includes(target.pathname));
|
|
24
|
+
if (!modelEndpoint ||
|
|
25
|
+
target.protocol !== 'https:' ||
|
|
26
|
+
target.port !== '' ||
|
|
27
|
+
target.username !== '' ||
|
|
28
|
+
target.password !== '' ||
|
|
29
|
+
target.host === proxy.host) {
|
|
30
|
+
return original(input, init);
|
|
31
|
+
}
|
|
32
|
+
const moved = proxy.href.replace(/\/+$/, '') +
|
|
33
|
+
'/forward/' +
|
|
34
|
+
encodeURIComponent(target.origin) +
|
|
35
|
+
target.pathname +
|
|
36
|
+
target.search;
|
|
37
|
+
// Preserve bodies, signals, headers and SDK fetch options. Never retry directly on failure:
|
|
38
|
+
// a retry here could duplicate a model request or silently escape offline replay.
|
|
39
|
+
return original(input instanceof Request ? new Request(moved, input) : moved, init);
|
|
40
|
+
};
|
|
41
|
+
// Bun adds helpers such as fetch.preconnect; other plugins may use them.
|
|
42
|
+
Object.assign(wrapped, original);
|
|
43
|
+
globalThis.fetch = wrapped;
|
|
44
|
+
return {
|
|
45
|
+
async dispose() {
|
|
46
|
+
active = false;
|
|
47
|
+
if (globalThis.fetch === wrapped)
|
|
48
|
+
globalThis.fetch = original;
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
/** Local file URL works in both legacy and current OpenCode plugin loaders; no npm install. */
|
|
53
|
+
export async function writeOpenCodeCapturePlugin(runDir, proxyUrl) {
|
|
54
|
+
const path = join(runDir, 'orca-opencode-capture.mjs');
|
|
55
|
+
await mkdir(runDir, { recursive: true });
|
|
56
|
+
await writeFile(path, `// Generated by OrcaReplay for this run. Contains no credentials.\n` +
|
|
57
|
+
`${installOpenCodeCapture.toString()}\n` +
|
|
58
|
+
`export default async function () { return installOpenCodeCapture(${JSON.stringify(proxyUrl)}); }\n`, { mode: 0o600 });
|
|
59
|
+
return pathToFileURL(path).href;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=opencode-capture.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opencode-capture.js","sourceRoot":"","sources":["../src/opencode-capture.ts"],"names":[],"mappings":"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"}
|
package/dist/opencode.d.ts
CHANGED
|
@@ -2,10 +2,9 @@ import type { Adapter } from '@orcareplay/plugin-api';
|
|
|
2
2
|
/** Whether OpenCode has credentials of its own, independent of the environment. */
|
|
3
3
|
export declare function opencodeHasOwnAuth(): boolean;
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* below, because no environment variable can name their origin for them.
|
|
5
|
+
* Base URL overrides cover ordinary SDK calls and first-party providers. ChatGPT OAuth rewrites
|
|
6
|
+
* the URL again inside its auth fetch, so the run-local plugin captures the final fetch instead.
|
|
7
|
+
* NODE_OPTIONS/BUN_OPTIONS preloads do not run in OpenCode's compiled executable.
|
|
9
8
|
*/
|
|
10
9
|
export declare const openCodeAdapter: Adapter;
|
|
11
10
|
//# sourceMappingURL=opencode.d.ts.map
|
package/dist/opencode.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opencode.d.ts","sourceRoot":"","sources":["../src/opencode.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAyB,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"opencode.d.ts","sourceRoot":"","sources":["../src/opencode.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAyB,MAAM,wBAAwB,CAAC;AAgB7E,mFAAmF;AACnF,wBAAgB,kBAAkB,IAAI,OAAO,CAE5C;AAoHD;;;;GAIG;AACH,eAAO,MAAM,eAAe,EAAE,OA6C7B,CAAC"}
|
package/dist/opencode.js
CHANGED
|
@@ -2,7 +2,8 @@ import { basename, join } from 'node:path';
|
|
|
2
2
|
import { forwardBasePath } from '@orcareplay/proxy';
|
|
3
3
|
import { resolveRealBinary } from '@orcareplay/shell-shim';
|
|
4
4
|
import { detectAgent, homeDirHas } from './detect.js';
|
|
5
|
-
import { openCodeConfiguredBaseURLs } from './opencode-config.js';
|
|
5
|
+
import { openCodeConfiguredBaseURLs, stripJsonc } from './opencode-config.js';
|
|
6
|
+
import { writeOpenCodeCapturePlugin } from './opencode-capture.js';
|
|
6
7
|
import { passKey, passThrough, proxyBase, readEnv } from './env.js';
|
|
7
8
|
/**
|
|
8
9
|
* Where OpenCode keeps the credentials `opencode auth login` writes.
|
|
@@ -30,7 +31,7 @@ const OPENCODE_FIRST_PARTY_BASE = {
|
|
|
30
31
|
opencode: 'https://opencode.ai/zen/v1',
|
|
31
32
|
'opencode-go': 'https://opencode.ai/zen/go/v1',
|
|
32
33
|
};
|
|
33
|
-
/** The environment variable the overlay rides in on
|
|
34
|
+
/** The environment variable the run-local overlay rides in on. */
|
|
34
35
|
const CONFIG_CONTENT_VAR = 'OPENCODE_CONFIG_CONTENT';
|
|
35
36
|
/**
|
|
36
37
|
* Shells whose real binary a shim can find again, from OpenCode's own acceptable set — the
|
|
@@ -86,16 +87,13 @@ async function shellThroughShim(env, runDir) {
|
|
|
86
87
|
*
|
|
87
88
|
* The user's own `options.baseURL` for the same provider is carried through rather than replaced.
|
|
88
89
|
* A config that could not be parsed clears the whole overlay: an unreadable intent is not a
|
|
89
|
-
* licence to reroute someone's provider.
|
|
90
|
-
*
|
|
91
|
-
* to add capture would change more than the capture.
|
|
90
|
+
* licence to reroute someone's provider. An existing `OPENCODE_CONFIG_CONTENT` keeps its fields
|
|
91
|
+
* and provider routing; only the run-local capture plugin is appended.
|
|
92
92
|
*/
|
|
93
93
|
async function baseURLsThroughProxy(ctx) {
|
|
94
|
-
// There is no way to merge two sources of one variable, and clobbering theirs to add capture
|
|
95
|
-
// would change more than the capture — so it is relayed exactly as it arrived.
|
|
96
94
|
const theirs = readEnv(ctx.env, CONFIG_CONTENT_VAR);
|
|
97
95
|
if (theirs !== undefined)
|
|
98
|
-
return
|
|
96
|
+
return withCapturePlugin(ctx, theirs);
|
|
99
97
|
const scan = await openCodeConfiguredBaseURLs(ctx.env, ctx.cwd);
|
|
100
98
|
if (!scan.trusted)
|
|
101
99
|
return {};
|
|
@@ -104,13 +102,29 @@ async function baseURLsThroughProxy(ctx) {
|
|
|
104
102
|
const base = scan.overrides.get(id) ?? catalogBase;
|
|
105
103
|
provider[id] = { options: { baseURL: `${proxyBase(ctx.proxyUrl)}${forwardBasePath(base)}` } };
|
|
106
104
|
}
|
|
107
|
-
return
|
|
105
|
+
return withCapturePlugin(ctx, JSON.stringify({ provider }));
|
|
106
|
+
}
|
|
107
|
+
async function withCapturePlugin(ctx, content) {
|
|
108
|
+
let config;
|
|
109
|
+
try {
|
|
110
|
+
config = JSON.parse(stripJsonc(content));
|
|
111
|
+
if (!config || typeof config !== 'object' || Array.isArray(config))
|
|
112
|
+
throw new Error('not an object');
|
|
113
|
+
if (config.plugin !== undefined && !Array.isArray(config.plugin))
|
|
114
|
+
throw new Error('not a plugin list');
|
|
115
|
+
}
|
|
116
|
+
catch {
|
|
117
|
+
// Leave invalid config for OpenCode to diagnose without discarding the user's settings.
|
|
118
|
+
return { [CONFIG_CONTENT_VAR]: content };
|
|
119
|
+
}
|
|
120
|
+
const plugin = await writeOpenCodeCapturePlugin(ctx.runDir, proxyBase(ctx.proxyUrl));
|
|
121
|
+
config.plugin = [...(config.plugin ?? []), plugin];
|
|
122
|
+
return { [CONFIG_CONTENT_VAR]: JSON.stringify(config) };
|
|
108
123
|
}
|
|
109
124
|
/**
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
* below, because no environment variable can name their origin for them.
|
|
125
|
+
* Base URL overrides cover ordinary SDK calls and first-party providers. ChatGPT OAuth rewrites
|
|
126
|
+
* the URL again inside its auth fetch, so the run-local plugin captures the final fetch instead.
|
|
127
|
+
* NODE_OPTIONS/BUN_OPTIONS preloads do not run in OpenCode's compiled executable.
|
|
114
128
|
*/
|
|
115
129
|
export const openCodeAdapter = {
|
|
116
130
|
id: 'opencode',
|
|
@@ -120,7 +134,8 @@ export const openCodeAdapter = {
|
|
|
120
134
|
async prepare(ctx) {
|
|
121
135
|
const env = {
|
|
122
136
|
OPENAI_BASE_URL: proxyBase(ctx.proxyUrl, 'v1'),
|
|
123
|
-
|
|
137
|
+
// OpenCode's AI SDK appends /messages, unlike Claude Code's /v1/messages.
|
|
138
|
+
ANTHROPIC_BASE_URL: proxyBase(ctx.proxyUrl, 'v1'),
|
|
124
139
|
};
|
|
125
140
|
// Which credentials OpenCode can see is part of how it chooses a provider, so handing it a
|
|
126
141
|
// placeholder for the provider the user has *not* configured can change which model the run
|
package/dist/opencode.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opencode.js","sourceRoot":"","sources":["../src/opencode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,0BAA0B,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"opencode.js","sourceRoot":"","sources":["../src/opencode.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orcareplay/adapters",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@orcareplay/node-instrument": "0.2.
|
|
21
|
-
"@orcareplay/plugin-api": "0.2.
|
|
22
|
-
"@orcareplay/proxy": "0.2.
|
|
23
|
-
"@orcareplay/shell-shim": "0.2.
|
|
20
|
+
"@orcareplay/node-instrument": "0.2.2",
|
|
21
|
+
"@orcareplay/plugin-api": "0.2.2",
|
|
22
|
+
"@orcareplay/proxy": "0.2.2",
|
|
23
|
+
"@orcareplay/shell-shim": "0.2.2"
|
|
24
24
|
}
|
|
25
25
|
}
|