@task-handoff/node-agent 0.0.28 → 0.0.30
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/cli.js +1 -1
- package/dist/node-update-worker.js +1 -1
- package/docker/entrypoint.sh +1 -0
- package/package.json +3 -1
- package/runtime-artifacts/{controlled-instance-runtime-0.0.28-linux-universal.manifest.json → controlled-instance-runtime-0.0.30-linux-universal.manifest.json} +2 -2
- package/runtime-artifacts/controlled-instance-runtime-0.0.30-linux-universal.tar.gz +0 -0
- package/runtime-artifacts/controlled-instance-runtime-0.0.30-linux-universal.tar.gz.sha256 +1 -0
- package/runtime-artifacts/controlled-instance-runtime-0.0.28-linux-universal.tar.gz +0 -0
- package/runtime-artifacts/controlled-instance-runtime-0.0.28-linux-universal.tar.gz.sha256 +0 -1
package/docker/entrypoint.sh
CHANGED
|
@@ -21,6 +21,7 @@ load_private_config() {
|
|
|
21
21
|
if (value.version !== 1 || typeof value.instanceCredential !== "string" || !value.instanceCredential || !value.environment || typeof value.environment !== "object" || Array.isArray(value.environment)) process.exit(78);
|
|
22
22
|
const environment = { ...value.environment, TASK_HANDOFF_REGISTRATION_TOKEN: value.instanceCredential, TASK_HANDOFF_PRIVATE_CONFIG_LOADED: "1", TASK_HANDOFF_INSTANCE_PRIVATE_CONFIG_PATH: process.argv[1] };
|
|
23
23
|
if (value.modelCatalog !== undefined) environment.TASK_HANDOFF_PRIVATE_MODEL_CATALOG_JSON = JSON.stringify(value.modelCatalog);
|
|
24
|
+
if (value.codexSettings !== undefined) environment.TASK_HANDOFF_PRIVATE_CODEX_SETTINGS_JSON = JSON.stringify(value.codexSettings);
|
|
24
25
|
for (const [key, item] of Object.entries(environment)) {
|
|
25
26
|
if (!/^[A-Za-z_][A-Za-z0-9_]*$/.test(key) || typeof item !== "string") process.exit(78);
|
|
26
27
|
process.stdout.write(`${key}\t${Buffer.from(item).toString("base64")}\n`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@task-handoff/node-agent",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "Prebuilt TaskHandoff node agent runtime.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
"@fastify/websocket": "11.2.0",
|
|
26
26
|
"@larksuiteoapi/node-sdk": "1.72.0",
|
|
27
27
|
"commander": "14.0.3",
|
|
28
|
+
"cron-parser": "5.10.0",
|
|
28
29
|
"dingtalk-stream": "2.1.5",
|
|
30
|
+
"drizzle-orm": "1.0.0-rc.4",
|
|
29
31
|
"fastify": "5.8.5",
|
|
30
32
|
"node-pty": "1.1.0",
|
|
31
33
|
"semver": "7.8.5",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "@task-handoff/controlled-instance",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"platform": "linux",
|
|
5
5
|
"arch": "universal",
|
|
6
6
|
"formatVersion": 1,
|
|
7
7
|
"launcherAbi": 1,
|
|
8
8
|
"entrypoint": "dist/controlled-instance-cli.js",
|
|
9
|
-
"sha256": "
|
|
9
|
+
"sha256": "35af95a1f7d4bf5471b4d6349426c4b7eca171d883192a00707ec162671c6734"
|
|
10
10
|
}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
526408aca46dccfffcadeba7f0457c356a73ac9f1741ca6641db04eaf20919d2 controlled-instance-runtime-0.0.30-linux-universal.tar.gz
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0e77c77a9c79d850405b1663a03b556025f95bfbed19e718e32307b53aead4b7 controlled-instance-runtime-0.0.28-linux-universal.tar.gz
|