@base44-preview/cli 0.1.5-pr.575.88555e2 → 0.1.5-pr.576.161be22
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/bin/binary-entry.ts +6 -2
- package/dist/assets/backend-runtime/base44-runtime.ts +56 -0
- package/dist/assets/backend-runtime/import-map.json +5 -0
- package/dist/assets/{deno-runtime → backend-runtime}/main.ts +59 -3
- package/dist/assets/templates/backend-and-client/base44/agents/task_manager.jsonc +0 -1
- package/dist/cli/index.js +767 -911
- package/dist/cli/index.js.map +12 -18
- package/package.json +1 -1
- package/dist/assets/templates/backend-and-client/base44/agent-skills/weekly-report.md +0 -8
- /package/dist/assets/{deno-runtime → backend-runtime}/exec.ts +0 -0
package/bin/binary-entry.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Entry point for standalone compiled binaries (built with `bun build --compile`).
|
|
3
3
|
*
|
|
4
|
-
* This file embeds a single assets tarball (templates +
|
|
4
|
+
* This file embeds a single assets tarball (templates + backend-runtime) into the
|
|
5
5
|
* binary and extracts it to ~/.base44/assets/<version>/ on first run.
|
|
6
6
|
* The npm distribution uses bin/run.js instead — this file is only used
|
|
7
7
|
* for the compiled binary path.
|
|
@@ -25,7 +25,11 @@ const assetsDir = join(homedir(), ".base44", "assets", VERSION);
|
|
|
25
25
|
// Extract assets if this version hasn't been unpacked yet.
|
|
26
26
|
// Bun.file() reads from the virtual $bunfs, then we write to real disk
|
|
27
27
|
// so the rest of the CLI can access these files normally.
|
|
28
|
-
|
|
28
|
+
//
|
|
29
|
+
// The directory existing is not proof its contents are current: an install
|
|
30
|
+
// that predates a renamed or added asset directory would otherwise keep the
|
|
31
|
+
// stale layout forever, so check for an expected directory too.
|
|
32
|
+
if (!existsSync(assetsDir) || !existsSync(join(assetsDir, "backend-runtime"))) {
|
|
29
33
|
mkdirSync(assetsDir, { recursive: true });
|
|
30
34
|
const bytes = await Bun.file(assetsTarball).bytes();
|
|
31
35
|
const archive = new Bun.Archive(bytes);
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Local implementation of the `base44:runtime` module.
|
|
3
|
+
*
|
|
4
|
+
* Deployed backend functions import this module by its bare specifier
|
|
5
|
+
* (`import { secrets } from "base44:runtime"`). No such module exists on a
|
|
6
|
+
* developer machine, so `deno.json` maps the specifier onto this file and
|
|
7
|
+
* `base44 dev` hands that import map to the Deno subprocess.
|
|
8
|
+
*
|
|
9
|
+
* The surface mirrors production; the deliberate differences are called out on
|
|
10
|
+
* each export below.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* App secrets.
|
|
15
|
+
*
|
|
16
|
+
* Deployed, these are read from the Worker env binding of the current request.
|
|
17
|
+
* Locally they come from the environment `base44 dev` was started with —
|
|
18
|
+
* values stored with `base44 secrets set` are deliberately not fetched, so a
|
|
19
|
+
* production secret is never copied onto a developer machine. Export the
|
|
20
|
+
* variable in your shell to exercise a function that reads it.
|
|
21
|
+
*
|
|
22
|
+
* Returns `undefined` for an unset name rather than throwing, matching the
|
|
23
|
+
* deployed signature. Code that needs a secret should construct inside the
|
|
24
|
+
* handler: at module scope a client built from `undefined` throws during boot,
|
|
25
|
+
* where no try/catch is reached and nothing is logged.
|
|
26
|
+
*/
|
|
27
|
+
export const secrets: { get(name: string): string | undefined } = {
|
|
28
|
+
get(name: string): string | undefined {
|
|
29
|
+
return Deno.env.get(name);
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
// Holds a strong reference to in-flight work so a floating promise cannot be
|
|
34
|
+
// collected before it settles.
|
|
35
|
+
const pending = new Set<Promise<unknown>>();
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Continue work after the response has been sent.
|
|
39
|
+
*
|
|
40
|
+
* Deployed, this rides `ctx.waitUntil` to extend the invocation until the
|
|
41
|
+
* promise settles. Locally the function is a long-lived server process, so
|
|
42
|
+
* there is nothing to hold open; the promise is tracked only so a rejection is
|
|
43
|
+
* reported against the function instead of surfacing as an unhandled
|
|
44
|
+
* rejection. Returns the same promise so it composes, as in production.
|
|
45
|
+
*/
|
|
46
|
+
export function waitUntil<T>(promise: Promise<T>): Promise<T> {
|
|
47
|
+
const tracked = Promise.resolve(promise)
|
|
48
|
+
.catch((error: unknown) => {
|
|
49
|
+
console.error("[base44:runtime] waitUntil task failed:", error);
|
|
50
|
+
})
|
|
51
|
+
.finally(() => {
|
|
52
|
+
pending.delete(tracked);
|
|
53
|
+
});
|
|
54
|
+
pending.add(tracked);
|
|
55
|
+
return promise;
|
|
56
|
+
}
|
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
* This script is executed by Deno to run user functions.
|
|
5
5
|
* It patches Deno.serve to inject a dynamic port before importing the user's function.
|
|
6
6
|
*
|
|
7
|
+
* Two handler shapes are supported:
|
|
8
|
+
* - `export default async function (req) { ... }` — the shape the deployed
|
|
9
|
+
* runtime expects. The wrapper serves it after importing the module.
|
|
10
|
+
* - `Deno.serve(handler)` — the legacy shape. A module that calls Deno.serve
|
|
11
|
+
* while being imported serves itself and its default export is ignored,
|
|
12
|
+
* mirroring the deployed bundler's precedence.
|
|
13
|
+
*
|
|
7
14
|
* Environment variables:
|
|
8
15
|
* - FUNCTION_PATH: Absolute path to the user's function entry file
|
|
9
16
|
* - FUNCTION_PORT: Port number for the function to listen on
|
|
@@ -25,6 +32,10 @@ if (!functionPath) {
|
|
|
25
32
|
// Store the original Deno.serve
|
|
26
33
|
const originalServe = Deno.serve.bind(Deno);
|
|
27
34
|
|
|
35
|
+
// Set when the user's module calls Deno.serve while it is being imported.
|
|
36
|
+
// Such a module serves itself, so its default export (if any) is ignored.
|
|
37
|
+
let servedDuringImport = false;
|
|
38
|
+
|
|
28
39
|
// Patch Deno.serve to inject our port and add onListen callback.
|
|
29
40
|
const patchedServe = (
|
|
30
41
|
optionsOrHandler:
|
|
@@ -33,6 +44,8 @@ const patchedServe = (
|
|
|
33
44
|
| (Deno.ServeOptions & { handler: Deno.ServeHandler }),
|
|
34
45
|
maybeHandler?: Deno.ServeHandler,
|
|
35
46
|
): Deno.HttpServer<Deno.NetAddr> => {
|
|
47
|
+
servedDuringImport = true;
|
|
48
|
+
|
|
36
49
|
const onListen = () => {
|
|
37
50
|
// This message is used by FunctionManager to detect when the function is ready
|
|
38
51
|
console.log(`[${functionName}] Listening on http://localhost:${port}`);
|
|
@@ -68,13 +81,56 @@ Object.defineProperty(Deno, "serve", {
|
|
|
68
81
|
configurable: true,
|
|
69
82
|
});
|
|
70
83
|
|
|
84
|
+
type FetchHandler = (req: Request) => Response | Promise<Response>;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Pull the request handler off the user's module namespace, accepting both
|
|
88
|
+
* `export default async function (req)` and the `export default { fetch }`
|
|
89
|
+
* object form.
|
|
90
|
+
*/
|
|
91
|
+
const resolveDefaultHandler = (
|
|
92
|
+
module: Record<string, unknown>,
|
|
93
|
+
): FetchHandler | null => {
|
|
94
|
+
const exported = module.default;
|
|
95
|
+
|
|
96
|
+
if (typeof exported === "function") {
|
|
97
|
+
return exported as FetchHandler;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (exported && typeof exported === "object") {
|
|
101
|
+
const { fetch } = exported as { fetch?: unknown };
|
|
102
|
+
if (typeof fetch === "function") {
|
|
103
|
+
return (fetch as FetchHandler).bind(exported);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return null;
|
|
108
|
+
};
|
|
109
|
+
|
|
71
110
|
console.log(`[${functionName}] Starting function from ${functionPath}`);
|
|
72
111
|
|
|
73
|
-
// Dynamically import the user's function
|
|
74
|
-
//
|
|
112
|
+
// Dynamically import the user's function. A legacy function calls Deno.serve
|
|
113
|
+
// during import, which is now patched to use our port.
|
|
114
|
+
let functionModule: Record<string, unknown>;
|
|
75
115
|
try {
|
|
76
|
-
await import(functionPath);
|
|
116
|
+
functionModule = await import(functionPath);
|
|
77
117
|
} catch (error) {
|
|
78
118
|
console.error(`[${functionName}] Failed to load function:`, error);
|
|
79
119
|
Deno.exit(1);
|
|
80
120
|
}
|
|
121
|
+
|
|
122
|
+
// Nothing served itself during import, so the module is expected to export a
|
|
123
|
+
// handler. Serving it here goes through the same patched Deno.serve, so the
|
|
124
|
+
// readiness line still gets printed exactly once.
|
|
125
|
+
if (!servedDuringImport) {
|
|
126
|
+
const handler = resolveDefaultHandler(functionModule);
|
|
127
|
+
|
|
128
|
+
if (!handler) {
|
|
129
|
+
console.error(
|
|
130
|
+
`[${functionName}] The function must export default a request handler or call Deno.serve()`,
|
|
131
|
+
);
|
|
132
|
+
Deno.exit(1);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
Deno.serve(handler);
|
|
136
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"allowed_operations": ["read", "create", "update", "delete"]
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
|
-
"selected_skill_names": ["weekly-report"],
|
|
12
11
|
// Optional: let the agent remember facts across conversations.
|
|
13
12
|
// scope: "user" (per end-user), "global" (shared), or "both".
|
|
14
13
|
"memory_config": {
|