@fabric-harness/cloudflare 0.1.0
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 +202 -0
- package/README.md +39 -0
- package/dist/index.d.ts +78 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +323 -0
- package/dist/index.js.map +1 -0
- package/package.json +61 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @fabric-harness/cloudflare
|
|
2
|
+
|
|
3
|
+
> Cloudflare Workers + Sandbox adapter for [Fabric Harness](https://github.com/Fabric-Pro/fabric-harness).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install @fabric-harness/cloudflare @fabric-harness/sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
`@cloudflare/sandbox` is a peer dependency — install it as well if you want a real Cloudflare-backed sandbox; otherwise the adapter falls back to the in-memory virtual sandbox.
|
|
12
|
+
|
|
13
|
+
## Quick start
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
import { defineAgent } from '@fabric-harness/sdk/lite';
|
|
17
|
+
import { getCloudflareSandbox } from '@fabric-harness/cloudflare';
|
|
18
|
+
|
|
19
|
+
export default defineAgent(async ({ init, payload, env }) => {
|
|
20
|
+
const sandbox = await getCloudflareSandbox(env.SANDBOX, 'session-1');
|
|
21
|
+
const session = await (await init({
|
|
22
|
+
sandbox,
|
|
23
|
+
model: 'anthropic/claude-sonnet-4-6',
|
|
24
|
+
runtime: 'stateless',
|
|
25
|
+
})).session();
|
|
26
|
+
return { reply: await session.prompt<string>(String((payload as any)?.message ?? '')) };
|
|
27
|
+
}, { name: 'edge-assistant', triggers: { webhook: true } });
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Build with `fh build --target cloudflare` to produce an artifact ready for `wrangler deploy`.
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
33
|
+
|
|
34
|
+
- [Cloudflare deployment](https://fabric-harness.dev/docs/deployment)
|
|
35
|
+
- [Sandboxes](https://fabric-harness.dev/docs/building/sandboxes)
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
Apache-2.0
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { SandboxEnv, SessionStore } from '@fabric-harness/sdk';
|
|
2
|
+
export interface CloudflareDurableObjectSqlStorage {
|
|
3
|
+
exec(query: string, ...bindings: unknown[]): {
|
|
4
|
+
toArray(): Array<Record<string, unknown>>;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
export interface CloudflareR2ObjectBodyLike {
|
|
8
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
9
|
+
}
|
|
10
|
+
export interface CloudflareR2BucketLike {
|
|
11
|
+
put(key: string, value: Uint8Array | ArrayBuffer | string, options?: {
|
|
12
|
+
httpMetadata?: {
|
|
13
|
+
contentType?: string;
|
|
14
|
+
};
|
|
15
|
+
customMetadata?: Record<string, string>;
|
|
16
|
+
}): Promise<unknown>;
|
|
17
|
+
get(key: string): Promise<CloudflareR2ObjectBodyLike | null>;
|
|
18
|
+
delete?(key: string): Promise<void>;
|
|
19
|
+
}
|
|
20
|
+
export interface CloudflareDurableObjectSessionStoreOptions {
|
|
21
|
+
/** Optional R2 bucket for large artifact content. */
|
|
22
|
+
r2Bucket?: CloudflareR2BucketLike;
|
|
23
|
+
/** Store artifact content in R2 when size is greater than this threshold. Defaults to 1 MiB when r2Bucket is provided. */
|
|
24
|
+
r2ThresholdBytes?: number;
|
|
25
|
+
/** Prefix for R2 object keys. Defaults to fabric-harness/artifacts. */
|
|
26
|
+
r2KeyPrefix?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface CloudflareSandboxFileInfo {
|
|
29
|
+
content: string;
|
|
30
|
+
encoding?: 'utf-8' | 'base64' | string;
|
|
31
|
+
}
|
|
32
|
+
export interface CloudflareSandboxExecResult {
|
|
33
|
+
success?: boolean;
|
|
34
|
+
stdout?: string;
|
|
35
|
+
stderr?: string;
|
|
36
|
+
exitCode?: number;
|
|
37
|
+
}
|
|
38
|
+
export interface CloudflareSandboxLike {
|
|
39
|
+
exec(command: string, options?: {
|
|
40
|
+
cwd?: string;
|
|
41
|
+
env?: Record<string, string | undefined>;
|
|
42
|
+
timeout?: number;
|
|
43
|
+
stdin?: string;
|
|
44
|
+
signal?: AbortSignal;
|
|
45
|
+
}): Promise<CloudflareSandboxExecResult>;
|
|
46
|
+
readFile(path: string, options?: {
|
|
47
|
+
encoding?: 'utf-8' | 'base64';
|
|
48
|
+
}): Promise<CloudflareSandboxFileInfo>;
|
|
49
|
+
writeFile(path: string, content: string, options?: {
|
|
50
|
+
encoding?: 'utf-8' | 'base64';
|
|
51
|
+
}): Promise<void>;
|
|
52
|
+
exists(path: string): Promise<{
|
|
53
|
+
exists: boolean;
|
|
54
|
+
}>;
|
|
55
|
+
mkdir(path: string, options?: {
|
|
56
|
+
recursive?: boolean;
|
|
57
|
+
}): Promise<void>;
|
|
58
|
+
deleteFile(path: string): Promise<void>;
|
|
59
|
+
}
|
|
60
|
+
export interface CloudflareSandboxEnvOptions {
|
|
61
|
+
cwd?: string;
|
|
62
|
+
cleanup?: (() => void | Promise<void>) | {
|
|
63
|
+
cleanup(): void | Promise<void>;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Adapt an instance returned by `getSandbox(env.Sandbox, id)` from
|
|
68
|
+
* `@cloudflare/sandbox` into Fabric's provider-neutral SandboxEnv contract.
|
|
69
|
+
*/
|
|
70
|
+
export declare function createCloudflareSandboxEnv(sandbox: CloudflareSandboxLike, options?: CloudflareSandboxEnvOptions): SandboxEnv;
|
|
71
|
+
/**
|
|
72
|
+
* Minimal Durable Object SQL-backed SessionStore used by the Cloudflare build
|
|
73
|
+
* target. It intentionally depends only on the small SQL shape exposed by
|
|
74
|
+
* Workers Durable Objects so Cloudflare SDK types do not leak into the SDK.
|
|
75
|
+
*/
|
|
76
|
+
export declare function createCloudflareDurableObjectSessionStore(sql: CloudflareDurableObjectSqlStorage, options?: CloudflareDurableObjectSessionStoreOptions): SessionStore;
|
|
77
|
+
export declare const CLOUDFLARE_BUILD_TARGET = "cloudflare";
|
|
78
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
import { approvalStatesFromEntries, createRemoteSandboxEnv } from '@fabric-harness/sdk';
|
|
2
|
+
/**
|
|
3
|
+
* Adapt an instance returned by `getSandbox(env.Sandbox, id)` from
|
|
4
|
+
* `@cloudflare/sandbox` into Fabric's provider-neutral SandboxEnv contract.
|
|
5
|
+
*/
|
|
6
|
+
export function createCloudflareSandboxEnv(sandbox, options = {}) {
|
|
7
|
+
const api = {
|
|
8
|
+
async exec(command, execOptions) {
|
|
9
|
+
if (execOptions?.signal?.aborted)
|
|
10
|
+
return { command, exitCode: 130, stdout: '', stderr: 'Command aborted.\n' };
|
|
11
|
+
let abortListener;
|
|
12
|
+
const aborted = new Promise((resolve) => {
|
|
13
|
+
if (!execOptions?.signal)
|
|
14
|
+
return;
|
|
15
|
+
abortListener = () => resolve({ success: false, exitCode: 130, stdout: '', stderr: 'Command aborted.\n' });
|
|
16
|
+
execOptions.signal.addEventListener('abort', abortListener, { once: true });
|
|
17
|
+
});
|
|
18
|
+
const result = await (execOptions?.signal ? Promise.race([sandbox.exec(command, toCloudflareExecOptions(execOptions)), aborted]) : sandbox.exec(command, toCloudflareExecOptions(execOptions)));
|
|
19
|
+
if (abortListener)
|
|
20
|
+
execOptions?.signal?.removeEventListener('abort', abortListener);
|
|
21
|
+
return {
|
|
22
|
+
command,
|
|
23
|
+
exitCode: result.exitCode ?? (result.success === false ? 1 : 0),
|
|
24
|
+
stdout: result.stdout ?? '',
|
|
25
|
+
stderr: result.stderr ?? '',
|
|
26
|
+
};
|
|
27
|
+
},
|
|
28
|
+
async readFile(filePath) {
|
|
29
|
+
return (await sandbox.readFile(filePath, { encoding: 'utf-8' })).content;
|
|
30
|
+
},
|
|
31
|
+
async readFileBuffer(filePath) {
|
|
32
|
+
const file = await sandbox.readFile(filePath, { encoding: 'base64' });
|
|
33
|
+
return decodeBase64(file.content);
|
|
34
|
+
},
|
|
35
|
+
async writeFile(filePath, content) {
|
|
36
|
+
if (typeof content === 'string') {
|
|
37
|
+
await sandbox.writeFile(filePath, content, { encoding: 'utf-8' });
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
await sandbox.writeFile(filePath, encodeBase64(content), { encoding: 'base64' });
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
async stat(filePath) {
|
|
44
|
+
const result = await sandbox.exec(`stat -c '{"type":"%F","size":%s,"mode":%a}' ${shellQuote(filePath)}`);
|
|
45
|
+
if (result.success === false)
|
|
46
|
+
throw new Error(`stat failed for ${filePath}: ${result.stderr ?? ''}`.trim());
|
|
47
|
+
return parseStat(filePath, result.stdout ?? '');
|
|
48
|
+
},
|
|
49
|
+
async readdir(dirPath) {
|
|
50
|
+
const result = await sandbox.exec(`ls -1A ${shellQuote(dirPath)}`);
|
|
51
|
+
if (result.success === false)
|
|
52
|
+
throw new Error(`readdir failed for ${dirPath}: ${result.stderr ?? ''}`.trim());
|
|
53
|
+
return (result.stdout ?? '').split('\n').map((line) => line.trim()).filter(Boolean);
|
|
54
|
+
},
|
|
55
|
+
async exists(filePath) {
|
|
56
|
+
return (await sandbox.exists(filePath)).exists;
|
|
57
|
+
},
|
|
58
|
+
async mkdir(dirPath, mkdirOptions) {
|
|
59
|
+
await sandbox.mkdir(dirPath, mkdirOptions);
|
|
60
|
+
},
|
|
61
|
+
async rm(filePath, rmOptions) {
|
|
62
|
+
if (rmOptions?.recursive || rmOptions?.force) {
|
|
63
|
+
const flags = `${rmOptions.recursive ? 'r' : ''}${rmOptions.force ? 'f' : ''}`;
|
|
64
|
+
const command = flags ? `rm -${flags} ${shellQuote(filePath)}` : `rm ${shellQuote(filePath)}`;
|
|
65
|
+
const result = await sandbox.exec(command);
|
|
66
|
+
if (result.success === false)
|
|
67
|
+
throw new Error(`rm failed for ${filePath}: ${result.stderr ?? ''}`.trim());
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
await sandbox.deleteFile(filePath);
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
return createRemoteSandboxEnv(api, {
|
|
75
|
+
cwd: options.cwd ?? '/workspace',
|
|
76
|
+
...(options.cleanup ? { cleanup: options.cleanup } : {}),
|
|
77
|
+
capabilities: {
|
|
78
|
+
exec: true,
|
|
79
|
+
filesystem: true,
|
|
80
|
+
binaryFiles: true,
|
|
81
|
+
snapshots: false,
|
|
82
|
+
restore: false,
|
|
83
|
+
network: 'provider-managed',
|
|
84
|
+
persistence: 'session',
|
|
85
|
+
isolation: 'container',
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Minimal Durable Object SQL-backed SessionStore used by the Cloudflare build
|
|
91
|
+
* target. It intentionally depends only on the small SQL shape exposed by
|
|
92
|
+
* Workers Durable Objects so Cloudflare SDK types do not leak into the SDK.
|
|
93
|
+
*/
|
|
94
|
+
export function createCloudflareDurableObjectSessionStore(sql, options = {}) {
|
|
95
|
+
sql.exec('CREATE TABLE IF NOT EXISTS fabric_harness_sessions (id TEXT PRIMARY KEY, data TEXT NOT NULL, updated_at INTEGER NOT NULL)');
|
|
96
|
+
sql.exec('CREATE TABLE IF NOT EXISTS fabric_harness_artifacts (session_id TEXT NOT NULL, id TEXT NOT NULL, name TEXT NOT NULL, path TEXT NOT NULL, ref TEXT NOT NULL, content_base64 TEXT NOT NULL, created_at TEXT NOT NULL, storage TEXT DEFAULT \'do\', r2_key TEXT, PRIMARY KEY (session_id, id))');
|
|
97
|
+
try {
|
|
98
|
+
sql.exec('ALTER TABLE fabric_harness_artifacts ADD COLUMN storage TEXT DEFAULT \'do\'');
|
|
99
|
+
}
|
|
100
|
+
catch { }
|
|
101
|
+
try {
|
|
102
|
+
sql.exec('ALTER TABLE fabric_harness_artifacts ADD COLUMN r2_key TEXT');
|
|
103
|
+
}
|
|
104
|
+
catch { }
|
|
105
|
+
const r2ThresholdBytes = options.r2ThresholdBytes ?? 1024 * 1024;
|
|
106
|
+
const r2KeyPrefix = options.r2KeyPrefix ?? 'fabric-harness/artifacts';
|
|
107
|
+
return {
|
|
108
|
+
async load(id) {
|
|
109
|
+
const rows = sql.exec('SELECT data FROM fabric_harness_sessions WHERE id = ?', id).toArray();
|
|
110
|
+
const data = rows[0]?.data;
|
|
111
|
+
return typeof data === 'string' ? JSON.parse(data) : undefined;
|
|
112
|
+
},
|
|
113
|
+
async save(data) {
|
|
114
|
+
sql.exec('INSERT OR REPLACE INTO fabric_harness_sessions (id, data, updated_at) VALUES (?, ?, ?)', data.id, JSON.stringify(data), Date.now());
|
|
115
|
+
},
|
|
116
|
+
async appendEvent(sessionId, event) {
|
|
117
|
+
const data = await this.load(sessionId);
|
|
118
|
+
if (!data)
|
|
119
|
+
return;
|
|
120
|
+
data.events = [...(data.events ?? []), event];
|
|
121
|
+
await this.save(data);
|
|
122
|
+
},
|
|
123
|
+
async appendEntry(sessionId, entry) {
|
|
124
|
+
const data = await this.load(sessionId);
|
|
125
|
+
if (!data)
|
|
126
|
+
return;
|
|
127
|
+
data.entries = [...(data.entries ?? []), entry];
|
|
128
|
+
data.leafId = entry.id;
|
|
129
|
+
await this.save(data);
|
|
130
|
+
},
|
|
131
|
+
async waitForApproval(sessionId, approvalId, timeoutMs) {
|
|
132
|
+
const started = Date.now();
|
|
133
|
+
while (true) {
|
|
134
|
+
const existing = findApprovalResolution((await this.load(sessionId))?.entries ?? [], approvalId);
|
|
135
|
+
if (existing)
|
|
136
|
+
return existing;
|
|
137
|
+
if (timeoutMs !== undefined && Date.now() - started >= timeoutMs)
|
|
138
|
+
return undefined;
|
|
139
|
+
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
async resolveApproval(_sessionId, _approvalId, _response) {
|
|
143
|
+
// Durable Object requests are single-threaded per object. Waiters poll persisted entries.
|
|
144
|
+
},
|
|
145
|
+
async voteApproval(sessionId, approvalId, vote) {
|
|
146
|
+
const state = await this.getApprovalState?.(sessionId, approvalId);
|
|
147
|
+
if (!state)
|
|
148
|
+
throw new Error(`Approval not found: ${approvalId}`);
|
|
149
|
+
if (state.status !== 'pending')
|
|
150
|
+
throw new Error(`Approval is already ${state.status}: ${approvalId}`);
|
|
151
|
+
await this.appendEntry?.(sessionId, approvalEntry(sessionId, 'approval_voted', {
|
|
152
|
+
approvalId,
|
|
153
|
+
actor: approvalActorToJson(vote.actor),
|
|
154
|
+
decision: vote.decision,
|
|
155
|
+
votedAt: vote.votedAt,
|
|
156
|
+
...(vote.reason ? { reason: vote.reason } : {}),
|
|
157
|
+
}));
|
|
158
|
+
const next = await this.getApprovalState?.(sessionId, approvalId);
|
|
159
|
+
if (!next)
|
|
160
|
+
throw new Error(`Approval not found after vote: ${approvalId}`);
|
|
161
|
+
if (next.status === 'approved' || next.status === 'denied') {
|
|
162
|
+
const terminal = approvalEntry(sessionId, next.status === 'approved' ? 'approval_granted' : 'approval_denied', {
|
|
163
|
+
approvalId,
|
|
164
|
+
reason: next.resolutionReason ?? (next.status === 'approved' ? 'Approval quorum reached' : 'Approval denied by vote'),
|
|
165
|
+
});
|
|
166
|
+
await this.appendEntry?.(sessionId, terminal);
|
|
167
|
+
await this.appendEvent?.(sessionId, entryToEvent(sessionId, terminal));
|
|
168
|
+
return await this.getApprovalState?.(sessionId, approvalId) ?? next;
|
|
169
|
+
}
|
|
170
|
+
return next;
|
|
171
|
+
},
|
|
172
|
+
async getApprovalState(sessionId, approvalId) {
|
|
173
|
+
return approvalStatesFromEntries(sessionId, (await this.load(sessionId))?.entries ?? []).find((approval) => approval.id === approvalId);
|
|
174
|
+
},
|
|
175
|
+
async listApprovalStates(sessionId) {
|
|
176
|
+
return approvalStatesFromEntries(sessionId, (await this.load(sessionId))?.entries ?? []);
|
|
177
|
+
},
|
|
178
|
+
async putArtifact(sessionId, name, content, artifactOptions = {}) {
|
|
179
|
+
const bytes = typeof content === 'string' ? new TextEncoder().encode(content) : new Uint8Array(content);
|
|
180
|
+
const createdAt = new Date().toISOString();
|
|
181
|
+
const id = `${createdAt}-${name}`.replace(/[^a-zA-Z0-9._:-]/g, '_');
|
|
182
|
+
const path = name.replace(/[^a-zA-Z0-9._/:-]/g, '_');
|
|
183
|
+
const useR2 = Boolean(options.r2Bucket && bytes.byteLength > r2ThresholdBytes);
|
|
184
|
+
const r2Key = useR2 ? `${r2KeyPrefix}/${sessionId}/${id}` : undefined;
|
|
185
|
+
const ref = {
|
|
186
|
+
id,
|
|
187
|
+
sessionId,
|
|
188
|
+
name,
|
|
189
|
+
path,
|
|
190
|
+
size: bytes.byteLength,
|
|
191
|
+
sha256: await sha256Hex(bytes),
|
|
192
|
+
createdAt,
|
|
193
|
+
uri: useR2 ? `r2://${r2Key}` : `cloudflare-do://${sessionId}/${name}`,
|
|
194
|
+
...(artifactOptions.contentType ? { contentType: artifactOptions.contentType } : {}),
|
|
195
|
+
...(artifactOptions.metadata ? { metadata: artifactOptions.metadata } : {}),
|
|
196
|
+
};
|
|
197
|
+
if (useR2 && r2Key) {
|
|
198
|
+
await options.r2Bucket.put(r2Key, bytes, { ...(artifactOptions.contentType ? { httpMetadata: { contentType: artifactOptions.contentType } } : {}), customMetadata: { sessionId, artifactId: id, name } });
|
|
199
|
+
}
|
|
200
|
+
sql.exec('INSERT OR REPLACE INTO fabric_harness_artifacts (session_id, id, name, path, ref, content_base64, created_at, storage, r2_key) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)', sessionId, ref.id, name, ref.path, JSON.stringify(ref), useR2 ? '' : encodeBase64(bytes), createdAt, useR2 ? 'r2' : 'do', r2Key ?? null);
|
|
201
|
+
return ref;
|
|
202
|
+
},
|
|
203
|
+
async getArtifact(sessionId, artifactIdOrName) {
|
|
204
|
+
const rows = sql.exec('SELECT ref, content_base64, storage, r2_key FROM fabric_harness_artifacts WHERE session_id = ? AND (id = ? OR name = ? OR path = ?) ORDER BY created_at DESC LIMIT 1', sessionId, artifactIdOrName, artifactIdOrName, artifactIdOrName).toArray();
|
|
205
|
+
const row = rows[0];
|
|
206
|
+
if (!row || typeof row.ref !== 'string')
|
|
207
|
+
return undefined;
|
|
208
|
+
const ref = JSON.parse(row.ref);
|
|
209
|
+
if (row.storage === 'r2') {
|
|
210
|
+
if (!options.r2Bucket || typeof row.r2_key !== 'string')
|
|
211
|
+
return undefined;
|
|
212
|
+
const object = await options.r2Bucket.get(row.r2_key);
|
|
213
|
+
if (!object)
|
|
214
|
+
return undefined;
|
|
215
|
+
return { ref, content: new Uint8Array(await object.arrayBuffer()) };
|
|
216
|
+
}
|
|
217
|
+
if (typeof row.content_base64 !== 'string')
|
|
218
|
+
return undefined;
|
|
219
|
+
return { ref, content: decodeBase64(row.content_base64) };
|
|
220
|
+
},
|
|
221
|
+
async listArtifacts(sessionId) {
|
|
222
|
+
const rows = sql.exec('SELECT ref FROM fabric_harness_artifacts WHERE session_id = ? ORDER BY created_at DESC', sessionId).toArray();
|
|
223
|
+
return rows.map((row) => typeof row.ref === 'string' ? JSON.parse(row.ref) : undefined).filter((ref) => ref !== undefined);
|
|
224
|
+
},
|
|
225
|
+
};
|
|
226
|
+
}
|
|
227
|
+
export const CLOUDFLARE_BUILD_TARGET = 'cloudflare';
|
|
228
|
+
function toCloudflareExecOptions(options) {
|
|
229
|
+
const output = {};
|
|
230
|
+
if (options?.cwd !== undefined)
|
|
231
|
+
output.cwd = options.cwd;
|
|
232
|
+
if (options?.env !== undefined)
|
|
233
|
+
output.env = options.env;
|
|
234
|
+
if (options?.timeout !== undefined)
|
|
235
|
+
output.timeout = options.timeout;
|
|
236
|
+
if (options?.signal !== undefined)
|
|
237
|
+
output.signal = options.signal;
|
|
238
|
+
return output;
|
|
239
|
+
}
|
|
240
|
+
function parseStat(filePath, stdout) {
|
|
241
|
+
try {
|
|
242
|
+
const parsed = JSON.parse(stdout.trim());
|
|
243
|
+
const type = String(parsed.type ?? 'regular file');
|
|
244
|
+
const stat = {
|
|
245
|
+
type: type.includes('directory') ? 'directory' : type.includes('symbolic link') ? 'symlink' : type.includes('regular file') ? 'file' : 'other',
|
|
246
|
+
size: typeof parsed.size === 'number' ? parsed.size : 0,
|
|
247
|
+
};
|
|
248
|
+
const mode = typeof parsed.mode === 'number' ? parsed.mode : typeof parsed.mode === 'string' ? Number.parseInt(parsed.mode, 8) : undefined;
|
|
249
|
+
if (mode !== undefined && !Number.isNaN(mode))
|
|
250
|
+
stat.mode = mode;
|
|
251
|
+
return stat;
|
|
252
|
+
}
|
|
253
|
+
catch {
|
|
254
|
+
throw new Error(`Failed to parse stat output for ${filePath}: ${stdout}`);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
function shellQuote(value) {
|
|
258
|
+
if (/^[A-Za-z0-9_/:=.,@%+-]+$/.test(value))
|
|
259
|
+
return value;
|
|
260
|
+
return `'${value.replaceAll("'", "'\\''")}'`;
|
|
261
|
+
}
|
|
262
|
+
function findApprovalResolution(entries, approvalId) {
|
|
263
|
+
for (const entry of entries) {
|
|
264
|
+
if (entry.type !== 'approval_granted' && entry.type !== 'approval_denied')
|
|
265
|
+
continue;
|
|
266
|
+
if (entry.data?.approvalId !== approvalId)
|
|
267
|
+
continue;
|
|
268
|
+
return {
|
|
269
|
+
decision: entry.type === 'approval_granted' ? 'approved' : 'denied',
|
|
270
|
+
...(typeof entry.data.reason === 'string' ? { reason: entry.data.reason } : {}),
|
|
271
|
+
};
|
|
272
|
+
}
|
|
273
|
+
return undefined;
|
|
274
|
+
}
|
|
275
|
+
function approvalEntry(sessionId, type, data) {
|
|
276
|
+
return { id: `${sessionId}-entry-${Date.now()}-${Math.random().toString(16).slice(2)}`, type, timestamp: new Date().toISOString(), data };
|
|
277
|
+
}
|
|
278
|
+
function entryToEvent(sessionId, entry) {
|
|
279
|
+
return { id: `${sessionId}-${Date.now()}-${Math.random().toString(16).slice(2)}`, type: entry.type, timestamp: entry.timestamp, sessionId, ...(entry.data ? { data: entry.data } : {}) };
|
|
280
|
+
}
|
|
281
|
+
function approvalActorToJson(actor) {
|
|
282
|
+
if (typeof actor === 'string')
|
|
283
|
+
return actor;
|
|
284
|
+
const value = actor;
|
|
285
|
+
const result = { id: value.id };
|
|
286
|
+
if (value.type)
|
|
287
|
+
result.type = value.type;
|
|
288
|
+
if (value.provider)
|
|
289
|
+
result.provider = value.provider;
|
|
290
|
+
if (value.tenantId)
|
|
291
|
+
result.tenantId = value.tenantId;
|
|
292
|
+
if (value.displayName)
|
|
293
|
+
result.displayName = value.displayName;
|
|
294
|
+
return result;
|
|
295
|
+
}
|
|
296
|
+
async function sha256Hex(bytes) {
|
|
297
|
+
if (globalThis.crypto?.subtle) {
|
|
298
|
+
const digest = await globalThis.crypto.subtle.digest('SHA-256', bytes);
|
|
299
|
+
return [...new Uint8Array(digest)].map((byte) => byte.toString(16).padStart(2, '0')).join('');
|
|
300
|
+
}
|
|
301
|
+
const { createHash } = await import('node:crypto');
|
|
302
|
+
return createHash('sha256').update(bytes).digest('hex');
|
|
303
|
+
}
|
|
304
|
+
function decodeBase64(value) {
|
|
305
|
+
if (typeof atob === 'function') {
|
|
306
|
+
const binary = atob(value);
|
|
307
|
+
const bytes = new Uint8Array(binary.length);
|
|
308
|
+
for (let i = 0; i < binary.length; i += 1)
|
|
309
|
+
bytes[i] = binary.charCodeAt(i);
|
|
310
|
+
return bytes;
|
|
311
|
+
}
|
|
312
|
+
return Uint8Array.from(Buffer.from(value, 'base64'));
|
|
313
|
+
}
|
|
314
|
+
function encodeBase64(value) {
|
|
315
|
+
if (typeof btoa === 'function') {
|
|
316
|
+
let binary = '';
|
|
317
|
+
for (const byte of value)
|
|
318
|
+
binary += String.fromCharCode(byte);
|
|
319
|
+
return btoa(binary);
|
|
320
|
+
}
|
|
321
|
+
return Buffer.from(value).toString('base64');
|
|
322
|
+
}
|
|
323
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fabric-harness/cloudflare",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Cloudflare Workers and Sandbox adapter for Fabric Harness.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Fabric",
|
|
7
|
+
"homepage": "https://github.com/Fabric-Pro/fabric-harness#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Fabric-Pro/fabric-harness.git",
|
|
11
|
+
"directory": "packages/cloudflare"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Fabric-Pro/fabric-harness/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"agents",
|
|
18
|
+
"ai",
|
|
19
|
+
"fabric-harness",
|
|
20
|
+
"cloudflare",
|
|
21
|
+
"workers",
|
|
22
|
+
"sandbox",
|
|
23
|
+
"edge"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=22.0.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"main": "dist/index.js",
|
|
35
|
+
"types": "dist/index.d.ts",
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@fabric-harness/sdk": "0.1.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@cloudflare/sandbox": "*"
|
|
46
|
+
},
|
|
47
|
+
"peerDependenciesMeta": {
|
|
48
|
+
"@cloudflare/sandbox": {
|
|
49
|
+
"optional": true
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"typescript": "^5.8.3",
|
|
54
|
+
"vitest": "^4.1.5"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsc -p tsconfig.json",
|
|
58
|
+
"check": "tsc -b tsconfig.json",
|
|
59
|
+
"test": "vitest run"
|
|
60
|
+
}
|
|
61
|
+
}
|