@harapter/adapter-opencode 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/LICENSE +201 -0
- package/README.md +159 -0
- package/dist/adapter.d.ts +38 -0
- package/dist/adapter.d.ts.map +1 -0
- package/dist/adapter.js +1179 -0
- package/dist/adapter.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/protocol.d.ts +124 -0
- package/dist/protocol.d.ts.map +1 -0
- package/dist/protocol.js +839 -0
- package/dist/protocol.js.map +1 -0
- package/package.json +53 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Harapter contributors
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# `@harapter/adapter-opencode`
|
|
2
|
+
|
|
3
|
+
`@harapter/adapter-opencode` maps the current documented stable `opencode serve`
|
|
4
|
+
HTTP/OpenAPI and Server-Sent Events interface to Harapter Core.
|
|
5
|
+
|
|
6
|
+
The host installs, configures, authenticates, starts, and stops OpenCode. The
|
|
7
|
+
Adapter connects only to a host-selected HTTP endpoint and never invokes a
|
|
8
|
+
runtime installation, server disposal, or Session deletion route implicitly.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pnpm add @harapter/core@next @harapter/adapter-opencode@next
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Profile and authentication
|
|
17
|
+
|
|
18
|
+
OpenCode uses an `endpoint` Profile with `transport: 'http'` and
|
|
19
|
+
`ownership: 'host'` or `ownership: 'external'`:
|
|
20
|
+
|
|
21
|
+
```ts
|
|
22
|
+
import { profileId } from '@harapter/core';
|
|
23
|
+
import {
|
|
24
|
+
OPENCODE_PROVIDER_ID,
|
|
25
|
+
createOpenCodeProviderFactory,
|
|
26
|
+
} from '@harapter/adapter-opencode';
|
|
27
|
+
|
|
28
|
+
const factory = createOpenCodeProviderFactory({
|
|
29
|
+
resolveAuthHeaders: async (reference) => headersFor(reference),
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
const client = await factory.connect({
|
|
33
|
+
profileId: profileId('opencode-local'),
|
|
34
|
+
providerId: OPENCODE_PROVIDER_ID,
|
|
35
|
+
displayName: 'OpenCode',
|
|
36
|
+
connection: {
|
|
37
|
+
kind: 'endpoint',
|
|
38
|
+
url: 'http://127.0.0.1:4096/',
|
|
39
|
+
transport: 'http',
|
|
40
|
+
ownership: 'external',
|
|
41
|
+
authRef: { scheme: 'host-secret-store', id: 'opencode-server' },
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
`authRef` is optional. When present, the host must provide `resolveAuthHeaders`;
|
|
47
|
+
Harapter never resolves, logs, persists, or returns the header values.
|
|
48
|
+
OpenCode's server password, username, and other authentication configuration
|
|
49
|
+
remain outside the Adapter.
|
|
50
|
+
|
|
51
|
+
Profile `providerOptions` accepts positive bounded values for
|
|
52
|
+
`requestTimeoutMs`, `sseConnectTimeoutMs`, `runRequestTimeoutMs`,
|
|
53
|
+
`cancelSettlementTimeoutMs`, `eventDrainTimeoutMs`, and `maxRunEvents`. Unknown
|
|
54
|
+
options are rejected. `maxRunEvents` must be between 2 and 4096 so the bounded
|
|
55
|
+
queue always reserves terminal capacity.
|
|
56
|
+
|
|
57
|
+
## Session lifecycle
|
|
58
|
+
|
|
59
|
+
- `createSession()` calls the documented Session creation route. A portable file
|
|
60
|
+
workspace URI becomes the OpenCode `directory` query.
|
|
61
|
+
- OpenCode selects an instance by directory. The returned directory, portable
|
|
62
|
+
system context, and model selection are retained in the provider-bound
|
|
63
|
+
`SessionRef` so resume and subsequent prompts use the same configuration.
|
|
64
|
+
- A model selection uses the native model ID plus
|
|
65
|
+
`model.providerOptions.providerId`.
|
|
66
|
+
- `resumeSession()` validates Provider, Profile, stable interface identity,
|
|
67
|
+
directory state, directory-scoped runtime status, remote Session ID, and
|
|
68
|
+
returned directory before exposing an idle resumed Session. Busy or retrying
|
|
69
|
+
Sessions are not resumed.
|
|
70
|
+
- `session.close()` releases only the local handle. It does not call OpenCode's
|
|
71
|
+
DELETE route, which deletes the Session and its data.
|
|
72
|
+
|
|
73
|
+
## Run and event lifecycle
|
|
74
|
+
|
|
75
|
+
One Run may be active per OpenCode Session. The Adapter opens the directory
|
|
76
|
+
event stream before posting a synchronous Session message, then maps assistant
|
|
77
|
+
text, reasoning, tool, artifact, usage, and permission events. A bounded queue
|
|
78
|
+
prevents a stalled consumer from accumulating unbounded Provider events.
|
|
79
|
+
|
|
80
|
+
The synchronous message response is the only successful terminal authority.
|
|
81
|
+
`session.idle` may help drain already-sent SSE events, but it never proves
|
|
82
|
+
success by itself. Malformed events, stream loss, HTTP failure, and unknown
|
|
83
|
+
terminal shapes cannot become `run.completed`.
|
|
84
|
+
|
|
85
|
+
`run.cancel()` calls the documented Session abort route. Harapter reports
|
|
86
|
+
`native` only after OpenCode acknowledges the abort and the authoritative
|
|
87
|
+
message response reports `MessageAbortedError`. A local request, event stream,
|
|
88
|
+
Session, or Client abort remains `connection_aborted`. An uncertain remote
|
|
89
|
+
settlement quarantines that Session handle and its Session ID within the Client;
|
|
90
|
+
it cannot start or resume work until the host performs explicit recovery through
|
|
91
|
+
a new connection whose status probe observes the Session as idle.
|
|
92
|
+
|
|
93
|
+
OpenCode permission events map to portable approval interactions. Portable
|
|
94
|
+
approval sends `once`, denial sends `reject`, and an explicit approval
|
|
95
|
+
`providerOptions: { scope: 'always' }` sends `always`.
|
|
96
|
+
|
|
97
|
+
## Inputs and native access
|
|
98
|
+
|
|
99
|
+
Portable text is native. `file_ref` and `image_ref` map to documented file parts
|
|
100
|
+
and require an absolute URI plus `mediaType`; image media types must start with
|
|
101
|
+
`image/`. `opencode.part` accepts validated native text, file, agent, and
|
|
102
|
+
subtask parts.
|
|
103
|
+
|
|
104
|
+
Run `providerOptions` accepts `agent`, `system`, `tools`, and a native model
|
|
105
|
+
object containing `providerId` and `modelId`. Unsupported fields are rejected
|
|
106
|
+
instead of being ignored.
|
|
107
|
+
|
|
108
|
+
`client.native()` returns an `OpenCodeNativeClient` with bounded JSON requests
|
|
109
|
+
inside the configured endpoint and a listener for redacted events that cannot be
|
|
110
|
+
routed to an active Run. Native calls are Provider-bound and do not gain
|
|
111
|
+
portable lifecycle guarantees.
|
|
112
|
+
|
|
113
|
+
## Compatibility and evidence
|
|
114
|
+
|
|
115
|
+
The Adapter targets the current documented stable server interface without
|
|
116
|
+
pinning the OpenCode executable to a release number. Connection validates the
|
|
117
|
+
health response; every used Session, message, abort, permission, and event shape
|
|
118
|
+
is validated at runtime. The runtime version is reported as identity and does
|
|
119
|
+
not determine capabilities by itself.
|
|
120
|
+
|
|
121
|
+
The fixture manifest records the exact upstream release, commit, and stable
|
|
122
|
+
OpenAPI fingerprint used for the current evidence baseline. Those values are
|
|
123
|
+
evidence metadata, not a runtime allowlist. Capability declarations come from
|
|
124
|
+
that reviewed stable schema plus executable conformance and live-runtime
|
|
125
|
+
evidence; an incompatible runtime shape fails closed at the boundary where it is
|
|
126
|
+
used.
|
|
127
|
+
|
|
128
|
+
Evidence includes:
|
|
129
|
+
|
|
130
|
+
- a published stable OpenAPI fingerprint and synthetic redacted fixtures in
|
|
131
|
+
[`fixtures/opencode/http-openapi-stable`](../../fixtures/opencode/http-openapi-stable/manifest.json);
|
|
132
|
+
- protocol mapping, authentication, malformed-input, lifecycle, cancellation,
|
|
133
|
+
interaction, unknown-event, and error tests;
|
|
134
|
+
- the shared portable Provider conformance suite;
|
|
135
|
+
- an opt-in live-runtime test enabled with `HARAPTER_OPENCODE_LIVE=1` and a
|
|
136
|
+
host-operated server URL in `HARAPTER_OPENCODE_ENDPOINT`;
|
|
137
|
+
- a trusted scheduled live canary that installs the current stable OpenCode
|
|
138
|
+
release on an ephemeral runner, starts an isolated local server with no
|
|
139
|
+
plugins, denied permissions, and disabled tools, records the installed package
|
|
140
|
+
version, and executes a lifecycle that rejects any tool or interaction event.
|
|
141
|
+
|
|
142
|
+
The last repository-recorded
|
|
143
|
+
[trusted live canary](https://github.com/yunfeizhu/harapter/actions/runs/33747923398)
|
|
144
|
+
passed on 2026-09-03 with `opencode-ai@1.18.27`. It proved the stable health
|
|
145
|
+
interface, an exact completed text response with `run.completed`, resume of the
|
|
146
|
+
same directory-bound native Session through a fresh Client connection, native
|
|
147
|
+
abort with `run.cancelled`, and orderly Session, Client, and Server cleanup. The
|
|
148
|
+
canary submitted two synthetic Prompts with no Tool or interaction Event.
|
|
149
|
+
|
|
150
|
+
A production host may pin the recorded release for a reproducible deployment.
|
|
151
|
+
Harapter continues to admit newer stable releases and validates their observed
|
|
152
|
+
health, Session, Event, and terminal structures instead of using the recorded
|
|
153
|
+
version as an executable allowlist. The run does not establish automatic SSE
|
|
154
|
+
reconnection, experimental routes, permission interactions, Tool execution,
|
|
155
|
+
commands, plugins, process management, or remote Session deletion.
|
|
156
|
+
|
|
157
|
+
The package does not claim support for experimental routes, automatic SSE
|
|
158
|
+
reconnection, OpenCode process management, remote Session deletion through
|
|
159
|
+
portable close, or commands and plugins as portable Core capabilities.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { type ProviderAdapterFactory, type SecretRef } from '@harapter/core';
|
|
2
|
+
import { type HttpHeaderMap, type HttpMethod } from '@harapter/transport-http-sse';
|
|
3
|
+
import { type OpenCodeRawEvent } from './protocol.js';
|
|
4
|
+
/** Host dependencies used without moving authentication ownership into Harapter. */
|
|
5
|
+
export interface OpenCodeProviderFactoryOptions {
|
|
6
|
+
readonly fetch?: typeof fetch;
|
|
7
|
+
readonly resolveAuthHeaders?: (reference: SecretRef) => HttpHeaderMap | Promise<HttpHeaderMap>;
|
|
8
|
+
}
|
|
9
|
+
/** Connection-level limits accepted in an OpenCode Profile's providerOptions. */
|
|
10
|
+
export interface OpenCodeProfileOptions {
|
|
11
|
+
readonly cancelSettlementTimeoutMs?: number;
|
|
12
|
+
readonly eventDrainTimeoutMs?: number;
|
|
13
|
+
readonly maxRunEvents?: number;
|
|
14
|
+
readonly requestTimeoutMs?: number;
|
|
15
|
+
readonly runRequestTimeoutMs?: number;
|
|
16
|
+
readonly sseConnectTimeoutMs?: number;
|
|
17
|
+
}
|
|
18
|
+
/** Request options for the explicit Provider-native HTTP escape hatch. */
|
|
19
|
+
export interface OpenCodeNativeRequestOptions {
|
|
20
|
+
readonly method?: HttpMethod;
|
|
21
|
+
readonly body?: unknown;
|
|
22
|
+
readonly signal?: AbortSignal;
|
|
23
|
+
readonly timeoutMs?: number;
|
|
24
|
+
}
|
|
25
|
+
/** Bounded JSON response returned by the Provider-native HTTP escape hatch. */
|
|
26
|
+
export interface OpenCodeNativeResponse<T = unknown> {
|
|
27
|
+
readonly status: number;
|
|
28
|
+
readonly body: T;
|
|
29
|
+
}
|
|
30
|
+
/** Explicit Provider-native client for documented OpenCode HTTP routes. */
|
|
31
|
+
export interface OpenCodeNativeClient {
|
|
32
|
+
readonly runtimeIdentity: string;
|
|
33
|
+
request<T = unknown>(path: string, options?: OpenCodeNativeRequestOptions): Promise<OpenCodeNativeResponse<T>>;
|
|
34
|
+
onUnknownEvent(listener: (event: OpenCodeRawEvent) => void): () => void;
|
|
35
|
+
}
|
|
36
|
+
/** Create a fresh OpenCode HTTP Adapter factory. */
|
|
37
|
+
export declare function createOpenCodeProviderFactory(options?: OpenCodeProviderFactoryOptions): ProviderAdapterFactory;
|
|
38
|
+
//# sourceMappingURL=adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../src/adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAmBL,KAAK,sBAAsB,EAM3B,KAAK,SAAS,EAEf,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAGL,KAAK,aAAa,EAClB,KAAK,UAAU,EAIhB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAgBL,KAAK,gBAAgB,EAEtB,MAAM,eAAe,CAAC;AAuBvB,oFAAoF;AACpF,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,KAAK,CAAC;IAC9B,QAAQ,CAAC,kBAAkB,CAAC,EAAE,CAC5B,SAAS,EAAE,SAAS,KACjB,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CAC7C;AAED,iFAAiF;AACjF,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAC5C,QAAQ,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACnC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;CACvC;AAED,0EAA0E;AAC1E,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,MAAM,CAAC,EAAE,UAAU,CAAC;IAC7B,QAAQ,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,MAAM,CAAC,EAAE,WAAW,CAAC;IAC9B,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,+EAA+E;AAC/E,MAAM,WAAW,sBAAsB,CAAC,CAAC,GAAG,OAAO;IACjD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC;CAClB;AAED,2EAA2E;AAC3E,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,OAAO,CAAC,CAAC,GAAG,OAAO,EACjB,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC;IACtC,cAAc,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,GAAG,MAAM,IAAI,CAAC;CACzE;AAkBD,oDAAoD;AACpD,wBAAgB,6BAA6B,CAC3C,OAAO,GAAE,8BAAmC,GAC3C,sBAAsB,CAQxB"}
|