@flue/sdk 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 +200 -0
- package/README.md +194 -0
- package/dist/client.d.mts +30 -0
- package/dist/client.mjs +62 -0
- package/dist/cloudflare/index.d.mts +36 -0
- package/dist/cloudflare/index.mjs +206 -0
- package/dist/index.d.mts +26 -0
- package/dist/index.mjs +775 -0
- package/dist/sandbox.d.mts +28 -0
- package/dist/sandbox.mjs +101 -0
- package/dist/session-BD0MEuO3.mjs +1300 -0
- package/dist/types-xNvqlohs.d.mts +327 -0
- package/package.json +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
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 the 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 the 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 any 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. Please also get an
|
|
186
|
+
information on the current year for the copyright.
|
|
187
|
+
|
|
188
|
+
Copyright [yyyy] [name of copyright owner]
|
|
189
|
+
|
|
190
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
191
|
+
you may not use this file except in compliance with the License.
|
|
192
|
+
You may obtain a copy of the License at
|
|
193
|
+
|
|
194
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
195
|
+
|
|
196
|
+
Unless required by applicable law or agreed to in writing, software
|
|
197
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
198
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
199
|
+
implied. See the License for the specific language governing
|
|
200
|
+
permissions and limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
# flue
|
|
2
|
+
|
|
3
|
+
> **Experimental** — Flue is under active development. APIs may change.
|
|
4
|
+
|
|
5
|
+
Agent framework where agents are directories compiled into deployable server artifacts.
|
|
6
|
+
|
|
7
|
+
## Packages
|
|
8
|
+
|
|
9
|
+
| Package | Description |
|
|
10
|
+
| ----------------------------------------- | ------------------------------------------ |
|
|
11
|
+
| [`@flue/sdk`](packages/sdk) | Core SDK: build system, sessions, tools |
|
|
12
|
+
| [`@flue/cli`](packages/cli) | CLI for building and running agents |
|
|
13
|
+
| [`@flue/connectors`](packages/connectors) | Third-party connectors for sandboxes, etc. |
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
### Quickstart
|
|
18
|
+
|
|
19
|
+
The simplest agent — no container, no tools, just a prompt and a typed result.
|
|
20
|
+
|
|
21
|
+
```ts
|
|
22
|
+
// .flue/agents/hello-world.ts
|
|
23
|
+
import type { FlueContext } from '@flue/sdk/client';
|
|
24
|
+
import * as v from 'valibot';
|
|
25
|
+
|
|
26
|
+
// Every agent needs a trigger. This agent is invoked as an API endpoint, via HTTP.
|
|
27
|
+
export const triggers = { webhook: true };
|
|
28
|
+
|
|
29
|
+
// The agent handler. Where the orchestration of the agent lives.
|
|
30
|
+
export default async function ({ init, payload, sessionId }: FlueContext) {
|
|
31
|
+
// `session` -- Your session with the agent, including sandbox, message history, etc.
|
|
32
|
+
// By default, calling `init()` with no arguments gets you a completely empty agent,
|
|
33
|
+
// with no skills, AGENTS.md, or files.
|
|
34
|
+
const session = await init();
|
|
35
|
+
|
|
36
|
+
// prompt() sends a message in the session, triggering action.
|
|
37
|
+
// You can pass a schema to `result` to get typed, validated JSON back.
|
|
38
|
+
const result = await session.prompt(`Translate this to ${payload.language}: "${payload.text}"`, {
|
|
39
|
+
result: v.object({
|
|
40
|
+
translation: v.string(),
|
|
41
|
+
confidence: v.picklist(['low', 'medium', 'high']),
|
|
42
|
+
}),
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
return result;
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Support Agent
|
|
50
|
+
|
|
51
|
+
A support agent, also running in a virtual sandbox but now with an R2 bucket mounted as its file-system. The knowledge base is stored in R2 and mounted directly into the agent's filesystem — the agent searches it with its built-in tools (grep, glob, read).
|
|
52
|
+
|
|
53
|
+
Session message history and file-system state are automatically persisted using Durable Objects (Cloudflare only). So you can revisit this session days, weeks, or years later and pick up where you left off automatically.
|
|
54
|
+
|
|
55
|
+
```ts
|
|
56
|
+
// .flue/agents/support.ts
|
|
57
|
+
import { getVirtualSandbox } from '@flue/sdk/cloudflare';
|
|
58
|
+
import type { FlueContext } from '@flue/sdk/client';
|
|
59
|
+
import * as v from 'valibot';
|
|
60
|
+
|
|
61
|
+
export const triggers = { webhook: true };
|
|
62
|
+
|
|
63
|
+
export default async function ({ init, payload, env }: FlueContext) {
|
|
64
|
+
// Mount the R2 knowledge base bucket as the agent's filesystem.
|
|
65
|
+
// The agent can grep, glob, and read articles with bash, but
|
|
66
|
+
// without needing to spin up an entire container sandbox.
|
|
67
|
+
const sandbox = await getVirtualSandbox(env.KNOWLEDGE_BASE);
|
|
68
|
+
const session = await init({ sandbox });
|
|
69
|
+
|
|
70
|
+
return await session.prompt(
|
|
71
|
+
`You are a support agent. Search the knowledge base for articles
|
|
72
|
+
relevant to this request, then write a helpful response.
|
|
73
|
+
|
|
74
|
+
Customer: ${payload.message}`,
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Issue Triage (CI)
|
|
80
|
+
|
|
81
|
+
A triage agent that runs whenever a new issue is opened (or commented on) on GitHub, running on GitHub Actions.
|
|
82
|
+
|
|
83
|
+
Flue was designed to power CI workflows since day one. The `"local"` filesystem sandbox enables two things:
|
|
84
|
+
|
|
85
|
+
1. Mount the current directory to your virtual file system.
|
|
86
|
+
2. Connect privileged CLIs to your agent (`gh`, `glab`, `git`) without leaking sensitive keys and secrets.
|
|
87
|
+
|
|
88
|
+
```ts
|
|
89
|
+
// .flue/agents/triage.ts
|
|
90
|
+
import { defineCommand, type FlueContext } from '@flue/sdk/client';
|
|
91
|
+
import { execFile } from 'node:child_process';
|
|
92
|
+
import { promisify } from 'node:util';
|
|
93
|
+
import * as v from 'valibot';
|
|
94
|
+
|
|
95
|
+
export const triggers = {};
|
|
96
|
+
|
|
97
|
+
// Connect privileged CLIs to your agent without leaking sensitive keys and secrets.
|
|
98
|
+
// Secrets are hooked up inside the command definition here, so your agent never sees them.
|
|
99
|
+
// Commands are controlled per-prompt, so you can be as granular with access as you need.
|
|
100
|
+
const npm = defineCommand('npm', async (args) => promisify(execFile)('npm', args));
|
|
101
|
+
const gh = defineCommand('gh', async (args) =>
|
|
102
|
+
promisify(execFile)('gh', args, {
|
|
103
|
+
env: { GH_TOKEN: process.env.GH_TOKEN },
|
|
104
|
+
}),
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
export default async function ({ init, payload }: FlueContext) {
|
|
108
|
+
// 'local' mounts the host filesystem at /workspace — ideal for CI
|
|
109
|
+
// where the repo is already checked out. Skills and AGENTS.md are
|
|
110
|
+
// discovered automatically from the workspace directory.
|
|
111
|
+
const session = await init({ sandbox: 'local' });
|
|
112
|
+
|
|
113
|
+
const result = await session.skill('triage', {
|
|
114
|
+
// Pass arguments to any prompt or skill.
|
|
115
|
+
args: { issueNumber: payload.issueNumber },
|
|
116
|
+
// Grant access to `gh` and `npm` for the life of this skill.
|
|
117
|
+
commands: [gh, npm],
|
|
118
|
+
// Provide roles (aka subagents) to guide your agent. Defined in .flue/roles/
|
|
119
|
+
role: 'triager',
|
|
120
|
+
// Result schemas are great for being able to act/orchestrate
|
|
121
|
+
// based on the result of your prompt or skill call.
|
|
122
|
+
result: v.object({
|
|
123
|
+
severity: v.picklist(['low', 'medium', 'high', 'critical']),
|
|
124
|
+
reproducible: v.boolean(),
|
|
125
|
+
summary: v.string(),
|
|
126
|
+
fix_applied: v.boolean(),
|
|
127
|
+
}),
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
return result;
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Coding Agent (Container Sandbox)
|
|
135
|
+
|
|
136
|
+
The examples above all run on a lightweight virtual sandbox — no container needed. But for a full coding agent, you want a real Linux environment with git, Node.js, a browser, and a cloned repo ready to go.
|
|
137
|
+
|
|
138
|
+
Daytona's declarative image builder lets you define the environment in code. The image is cached after the first build, so subsequent sessions start instantly.
|
|
139
|
+
|
|
140
|
+
```ts
|
|
141
|
+
// .flue/agents/code.ts
|
|
142
|
+
import { Type, type FlueContext, type ToolDef } from '@flue/sdk/client';
|
|
143
|
+
import { Daytona } from '@daytona/sdk';
|
|
144
|
+
import { daytona } from '@flue/connectors/daytona';
|
|
145
|
+
|
|
146
|
+
export const triggers = { webhook: true };
|
|
147
|
+
|
|
148
|
+
export default async function ({ init, payload, env }: FlueContext) {
|
|
149
|
+
// Each session gets a real container via Daytona. The container has
|
|
150
|
+
// a full Linux environment with persistent filesystem and shell.
|
|
151
|
+
//
|
|
152
|
+
// For simplicity, we always create a new sandbox here. You could also
|
|
153
|
+
// first check for an existing sandbox for the sessionId, and reuse that
|
|
154
|
+
// instead to best pick up where you last left off in the conversation.
|
|
155
|
+
const client = new Daytona({ apiKey: env.DAYTONA_API_KEY });
|
|
156
|
+
const sandbox = await client.create();
|
|
157
|
+
const session = await init({
|
|
158
|
+
sandbox: daytona(sandbox, { cleanup: true }),
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
// For simplicity, we clone the target repo into the sandbox here.
|
|
162
|
+
// You could also bake these into the container image snapshot for a
|
|
163
|
+
// faster / near-instant startup.
|
|
164
|
+
await session.shell(`git clone ${payload.repo} /workspace/project`);
|
|
165
|
+
await session.shell('npm install', { cwd: '/workspace/project' });
|
|
166
|
+
|
|
167
|
+
// Coding agents don't hide the agent DX from the user, so no need to
|
|
168
|
+
// wrap the user's prompt in anything. Just send it to the agent directly
|
|
169
|
+
// and then stream back the progress and final results.
|
|
170
|
+
return await session.prompt(payload.prompt);
|
|
171
|
+
}
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## Running Agents
|
|
175
|
+
|
|
176
|
+
### Trigger From the CLI
|
|
177
|
+
|
|
178
|
+
Build and run any agent locally, perfect for fast local testing or running in CI.
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
flue run hello --target node --session-id test-1 \
|
|
182
|
+
--payload '{"text": "Hello world", "language": "French"}'
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### Trigger From HTTP Endpoint
|
|
186
|
+
|
|
187
|
+
Build and deploy your agents as a web server, perfect for hosted agents.
|
|
188
|
+
|
|
189
|
+
`flue build` builds to a `./dist` directory, which you can then deploy anywhere. Cloudflare and any Node.js host are supported today, with more coming in the future.
|
|
190
|
+
|
|
191
|
+
```
|
|
192
|
+
flue build --target node # Node.js server
|
|
193
|
+
flue build --target cloudflare # Cloudflare Workers + Durable Objects
|
|
194
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { C as ShellOptions, D as TaskOptions, E as SkillOptions, O as ToolDef, S as SessionStore, b as SessionEnv, d as FlueContext, f as FlueEvent, g as PromptResponse, h as PromptOptions, l as CommandSupport, m as FlueSession, p as FlueEventCallback, r as BashLike, s as Command, t as AgentConfig, u as FileStat, v as SandboxFactory, w as ShellResult, x as SessionInit, y as SessionData } from "./types-xNvqlohs.mjs";
|
|
2
|
+
import { Type } from "@mariozechner/pi-ai";
|
|
3
|
+
|
|
4
|
+
//#region src/client.d.ts
|
|
5
|
+
interface FlueContextConfig {
|
|
6
|
+
sessionId: string;
|
|
7
|
+
payload: any;
|
|
8
|
+
env: Record<string, any>;
|
|
9
|
+
agentConfig: AgentConfig;
|
|
10
|
+
createDefaultEnv: () => Promise<SessionEnv>;
|
|
11
|
+
createLocalEnv: () => Promise<SessionEnv>;
|
|
12
|
+
defaultStore: SessionStore;
|
|
13
|
+
/**
|
|
14
|
+
* Platform-specific sandbox resolver hook. Called before default resolution.
|
|
15
|
+
* Returns SessionEnv to use, or null to fall through to default logic.
|
|
16
|
+
*/
|
|
17
|
+
resolveSandbox?: (sandbox: unknown) => Promise<SessionEnv> | null;
|
|
18
|
+
}
|
|
19
|
+
/** Extends FlueContext with server-only methods. Agent handlers only see FlueContext. */
|
|
20
|
+
interface FlueContextInternal extends FlueContext {
|
|
21
|
+
setEventCallback(callback: FlueEventCallback | undefined): void;
|
|
22
|
+
}
|
|
23
|
+
declare function createFlueContext(config: FlueContextConfig): FlueContextInternal;
|
|
24
|
+
declare function defineCommand(name: string, execute: (args: string[]) => Promise<{
|
|
25
|
+
stdout: string;
|
|
26
|
+
stderr: string;
|
|
27
|
+
exitCode: number;
|
|
28
|
+
}>): Command;
|
|
29
|
+
//#endregion
|
|
30
|
+
export { type BashLike, type Command, type CommandSupport, type FileStat, type FlueContext, FlueContextConfig, FlueContextInternal, type FlueEvent, type FlueEventCallback, type FlueSession, type PromptOptions, type PromptResponse, type SandboxFactory, type SessionData, type SessionEnv, type SessionInit, type SessionStore, type ShellOptions, type ShellResult, type SkillOptions, type TaskOptions, type ToolDef, Type, createFlueContext, defineCommand };
|
package/dist/client.mjs
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { n as Session, o as discoverSessionContext } from "./session-BD0MEuO3.mjs";
|
|
2
|
+
import { bashToSessionEnv } from "./sandbox.mjs";
|
|
3
|
+
import { Type } from "@mariozechner/pi-ai";
|
|
4
|
+
|
|
5
|
+
//#region src/client.ts
|
|
6
|
+
function createFlueContext(config) {
|
|
7
|
+
let initialized = false;
|
|
8
|
+
let currentEventCallback;
|
|
9
|
+
return {
|
|
10
|
+
get sessionId() {
|
|
11
|
+
return config.sessionId;
|
|
12
|
+
},
|
|
13
|
+
get payload() {
|
|
14
|
+
return config.payload;
|
|
15
|
+
},
|
|
16
|
+
get env() {
|
|
17
|
+
return config.env;
|
|
18
|
+
},
|
|
19
|
+
async init(options) {
|
|
20
|
+
if (initialized) throw new Error("[flue] init() can only be called once per request.");
|
|
21
|
+
initialized = true;
|
|
22
|
+
const sandbox = options?.sandbox;
|
|
23
|
+
const env = await resolveSessionEnv(config.sessionId, sandbox, config);
|
|
24
|
+
const store = options?.persist ?? config.defaultStore;
|
|
25
|
+
const savedData = await store.load(config.sessionId);
|
|
26
|
+
const localContext = await discoverSessionContext(env);
|
|
27
|
+
const sessionConfig = {
|
|
28
|
+
...config.agentConfig,
|
|
29
|
+
systemPrompt: localContext.systemPrompt,
|
|
30
|
+
skills: localContext.skills
|
|
31
|
+
};
|
|
32
|
+
return new Session(config.sessionId, sessionConfig, env, store, savedData, currentEventCallback);
|
|
33
|
+
},
|
|
34
|
+
setEventCallback(callback) {
|
|
35
|
+
currentEventCallback = callback;
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
/** Duck-type detection for just-bash Bash instances. */
|
|
40
|
+
function isBashLike(value) {
|
|
41
|
+
return typeof value === "object" && value !== null && "exec" in value && "getCwd" in value && "fs" in value && typeof value.exec === "function" && typeof value.getCwd === "function" && typeof value.fs === "object";
|
|
42
|
+
}
|
|
43
|
+
/** Resolve sandbox option to SessionEnv: empty → local → BashLike → platform hook → SandboxFactory. */
|
|
44
|
+
async function resolveSessionEnv(sessionId, sandbox, config) {
|
|
45
|
+
if (sandbox === void 0 || sandbox === "empty") return config.createDefaultEnv();
|
|
46
|
+
if (sandbox === "local") return config.createLocalEnv();
|
|
47
|
+
if (isBashLike(sandbox)) return bashToSessionEnv(sandbox);
|
|
48
|
+
if (config.resolveSandbox) {
|
|
49
|
+
const resolved = await config.resolveSandbox(sandbox);
|
|
50
|
+
if (resolved) return resolved;
|
|
51
|
+
}
|
|
52
|
+
return sandbox.createSessionEnv({ sessionId });
|
|
53
|
+
}
|
|
54
|
+
function defineCommand(name, execute) {
|
|
55
|
+
return {
|
|
56
|
+
name,
|
|
57
|
+
execute
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
//#endregion
|
|
62
|
+
export { Type, createFlueContext, defineCommand };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { S as SessionStore, b as SessionEnv } from "../types-xNvqlohs.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/cloudflare/virtual-sandbox.d.ts
|
|
4
|
+
interface VirtualSandboxOptions {
|
|
5
|
+
/** R2 key prefix for session isolation. */
|
|
6
|
+
prefix?: string;
|
|
7
|
+
}
|
|
8
|
+
declare function getVirtualSandbox(): Promise<any>;
|
|
9
|
+
declare function getVirtualSandbox(bucket: unknown, options?: VirtualSandboxOptions): Promise<any>;
|
|
10
|
+
//#endregion
|
|
11
|
+
//#region src/cloudflare/cf-sandbox.d.ts
|
|
12
|
+
declare function cfSandboxToSessionEnv(sandbox: any, cwd?: string): Promise<SessionEnv>;
|
|
13
|
+
//#endregion
|
|
14
|
+
//#region src/cloudflare/session-store.d.ts
|
|
15
|
+
declare function store(): SessionStore;
|
|
16
|
+
//#endregion
|
|
17
|
+
//#region src/cloudflare/context.d.ts
|
|
18
|
+
/**
|
|
19
|
+
* Cloudflare environment context injection. Safe because each DO is single-threaded.
|
|
20
|
+
* Set before handler invocation, accessed by runtime primitives, cleared after.
|
|
21
|
+
*/
|
|
22
|
+
interface CloudflareContext {
|
|
23
|
+
env: Record<string, any>;
|
|
24
|
+
agentInstance: {
|
|
25
|
+
state: any;
|
|
26
|
+
setState(state: any): void;
|
|
27
|
+
};
|
|
28
|
+
storage: {
|
|
29
|
+
sql: any;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
declare function setCloudflareContext(ctx: CloudflareContext): void;
|
|
33
|
+
declare function getCloudflareContext(): CloudflareContext;
|
|
34
|
+
declare function clearCloudflareContext(): void;
|
|
35
|
+
//#endregion
|
|
36
|
+
export { type CloudflareContext, type VirtualSandboxOptions, cfSandboxToSessionEnv, clearCloudflareContext, getCloudflareContext, getVirtualSandbox, setCloudflareContext, store };
|