bulkhead-runtime 2026.4.5-beta.3 → 2026.4.5-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +1 -1
- package/dist/runtime/memory-tools.js +5 -5
- package/dist/runtime/subagent.js +6 -6
- package/dist/sandbox/proxy-tools.js +8 -8
- package/dist/shared/constants.d.ts.map +1 -1
- package/dist/shared/constants.js +7 -1
- package/dist/shared/constants.js.map +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bulkhead-runtime",
|
|
3
|
-
"version": "2026.4.5-beta.
|
|
3
|
+
"version": "2026.4.5-beta.4",
|
|
4
4
|
"description": "Multi-tenant AI agent runtime with OS-level isolation. Sandboxed execution, encrypted credentials, private memory per tenant — one server, no Docker.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -7,10 +7,10 @@ export function createMemoryTools(memory) {
|
|
|
7
7
|
label: "Memory Search",
|
|
8
8
|
description: "Search your memory for relevant information. Returns matching memories ranked by relevance.",
|
|
9
9
|
parameters: {
|
|
10
|
-
type: "
|
|
10
|
+
type: "object",
|
|
11
11
|
properties: {
|
|
12
|
-
query: { type: "
|
|
13
|
-
maxResults: { type: "
|
|
12
|
+
query: { type: "string" },
|
|
13
|
+
maxResults: { type: "number" },
|
|
14
14
|
},
|
|
15
15
|
required: ["query"],
|
|
16
16
|
},
|
|
@@ -35,9 +35,9 @@ export function createMemoryTools(memory) {
|
|
|
35
35
|
description: "Store information in your memory for future reference. Use this to remember important facts, " +
|
|
36
36
|
"user preferences, and context that should persist across conversations.",
|
|
37
37
|
parameters: {
|
|
38
|
-
type: "
|
|
38
|
+
type: "object",
|
|
39
39
|
properties: {
|
|
40
|
-
content: { type: "
|
|
40
|
+
content: { type: "string" },
|
|
41
41
|
},
|
|
42
42
|
required: ["content"],
|
|
43
43
|
},
|
package/dist/runtime/subagent.js
CHANGED
|
@@ -133,17 +133,17 @@ export function createSubagentTool(params) {
|
|
|
133
133
|
"Each sub-agent runs independently and returns its result. " +
|
|
134
134
|
"Use for parallel or complex work that can be decomposed into subtasks.",
|
|
135
135
|
parameters: {
|
|
136
|
-
type: "
|
|
136
|
+
type: "object",
|
|
137
137
|
properties: {
|
|
138
138
|
tasks: {
|
|
139
|
-
type: "
|
|
139
|
+
type: "array",
|
|
140
140
|
description: "Array of tasks to execute in parallel",
|
|
141
141
|
items: {
|
|
142
|
-
type: "
|
|
142
|
+
type: "object",
|
|
143
143
|
properties: {
|
|
144
|
-
task: { type: "
|
|
145
|
-
label: { type: "
|
|
146
|
-
role: { type: "
|
|
144
|
+
task: { type: "string", description: "The task message for the sub-agent" },
|
|
145
|
+
label: { type: "string", description: "Optional label for tracking" },
|
|
146
|
+
role: { type: "string", description: "Optional role/expertise for the sub-agent system prompt" },
|
|
147
147
|
},
|
|
148
148
|
required: ["task"],
|
|
149
149
|
},
|
|
@@ -5,10 +5,10 @@ export function createProxyTools(peer) {
|
|
|
5
5
|
label: "Memory Search",
|
|
6
6
|
description: "Search your memory for relevant information. Returns matching memories ranked by relevance.",
|
|
7
7
|
parameters: {
|
|
8
|
-
type: "
|
|
8
|
+
type: "object",
|
|
9
9
|
properties: {
|
|
10
|
-
query: { type: "
|
|
11
|
-
maxResults: { type: "
|
|
10
|
+
query: { type: "string" },
|
|
11
|
+
maxResults: { type: "number" },
|
|
12
12
|
},
|
|
13
13
|
required: ["query"],
|
|
14
14
|
},
|
|
@@ -25,9 +25,9 @@ export function createProxyTools(peer) {
|
|
|
25
25
|
label: "Memory Store",
|
|
26
26
|
description: "Store information in your memory for future reference. Use this to remember important facts.",
|
|
27
27
|
parameters: {
|
|
28
|
-
type: "
|
|
28
|
+
type: "object",
|
|
29
29
|
properties: {
|
|
30
|
-
content: { type: "
|
|
30
|
+
content: { type: "string" },
|
|
31
31
|
},
|
|
32
32
|
required: ["content"],
|
|
33
33
|
},
|
|
@@ -43,10 +43,10 @@ export function createProxyTools(peer) {
|
|
|
43
43
|
label: "Execute Skill",
|
|
44
44
|
description: "Execute an enabled skill. Credentials are injected automatically by the platform.",
|
|
45
45
|
parameters: {
|
|
46
|
-
type: "
|
|
46
|
+
type: "object",
|
|
47
47
|
properties: {
|
|
48
|
-
skillId: { type: "
|
|
49
|
-
params: { type: "
|
|
48
|
+
skillId: { type: "string" },
|
|
49
|
+
params: { type: "object" },
|
|
50
50
|
},
|
|
51
51
|
required: ["skillId"],
|
|
52
52
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,6BAA6B,CAAC;AACxD,eAAO,MAAM,gBAAgB,cAAc,CAAC;AAE5C,eAAO,MAAM,sBAAsB,QAE4D,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,6BAA6B,CAAC;AACxD,eAAO,MAAM,gBAAgB,cAAc,CAAC;AAE5C,eAAO,MAAM,sBAAsB,QAE4D,CAAC;AAOhG,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAI5D;AAED,eAAO,MAAM,yBAAyB,aAEpC,CAAC"}
|
package/dist/shared/constants.js
CHANGED
|
@@ -2,8 +2,14 @@ export const DEFAULT_MODEL = "claude-sonnet-4-20250514";
|
|
|
2
2
|
export const DEFAULT_PROVIDER = "anthropic";
|
|
3
3
|
export const LINUX_REQUIRED_MESSAGE = "Bulkhead Runtime requires Linux. " +
|
|
4
4
|
"For local development on macOS/Windows, use the provided Dockerfile: docker compose run dev";
|
|
5
|
+
const PROVIDER_ENV_KEY_OVERRIDES = {
|
|
6
|
+
google: "GEMINI_API_KEY",
|
|
7
|
+
"google-vertex": "GEMINI_API_KEY",
|
|
8
|
+
};
|
|
5
9
|
export function buildProviderEnvKey(provider) {
|
|
6
|
-
|
|
10
|
+
const normalized = provider.trim().toLowerCase();
|
|
11
|
+
return PROVIDER_ENV_KEY_OVERRIDES[normalized]
|
|
12
|
+
?? `${provider.toUpperCase().replace(/-/g, "_")}_API_KEY`;
|
|
7
13
|
}
|
|
8
14
|
export const PROTECTED_SYSTEM_ENV_KEYS = new Set([
|
|
9
15
|
"PATH", "HOME", "NODE_ENV", "LANG", "TZ", "NODE_PATH",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,0BAA0B,CAAC;AACxD,MAAM,CAAC,MAAM,gBAAgB,GAAG,WAAW,CAAC;AAE5C,MAAM,CAAC,MAAM,sBAAsB,GACjC,mCAAmC;IACnC,6FAA6F,CAAC;AAEhG,MAAM,UAAU,mBAAmB,CAAC,QAAgB;IAClD,OAAO,GAAG,QAAQ,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,0BAA0B,CAAC;AACxD,MAAM,CAAC,MAAM,gBAAgB,GAAG,WAAW,CAAC;AAE5C,MAAM,CAAC,MAAM,sBAAsB,GACjC,mCAAmC;IACnC,6FAA6F,CAAC;AAEhG,MAAM,0BAA0B,GAA2B;IACzD,MAAM,EAAE,gBAAgB;IACxB,eAAe,EAAE,gBAAgB;CAClC,CAAC;AAEF,MAAM,UAAU,mBAAmB,CAAC,QAAgB;IAClD,MAAM,UAAU,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;IACjD,OAAO,0BAA0B,CAAC,UAAU,CAAC;WACxC,GAAG,QAAQ,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,UAAU,CAAC;AAC9D,CAAC;AAED,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,GAAG,CAAC;IAC/C,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,WAAW;CACtD,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bulkhead-runtime",
|
|
3
|
-
"version": "2026.4.5-beta.
|
|
3
|
+
"version": "2026.4.5-beta.5",
|
|
4
4
|
"description": "Multi-tenant AI agent runtime with OS-level isolation. Sandboxed execution, encrypted credentials, private memory per tenant — one server, no Docker.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|