agent-relay-runner 0.105.0 → 0.105.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay-runner",
|
|
3
|
-
"version": "0.105.
|
|
3
|
+
"version": "0.105.1",
|
|
4
4
|
"description": "Unified provider lifecycle runner for Agent Relay",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"agent-relay-providers": "0.104.0",
|
|
24
|
-
"agent-relay-sdk": "0.2.
|
|
24
|
+
"agent-relay-sdk": "0.2.92",
|
|
25
25
|
"callmux": "0.23.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
@@ -847,7 +847,7 @@ function messageBodyMaxCharsFromEnv() {
|
|
|
847
847
|
return process.env.AGENT_RELAY_MESSAGE_BODY_MAX_CHARS;
|
|
848
848
|
}
|
|
849
849
|
|
|
850
|
-
// src/prompt-template-defaults
|
|
850
|
+
// sdk/src/prompt-template-defaults.ts
|
|
851
851
|
function lines(...parts) {
|
|
852
852
|
return parts.join(`
|
|
853
853
|
`);
|
|
@@ -923,7 +923,7 @@ var RUNNER_PROMPT_TEMPLATE_DEFAULTS = [
|
|
|
923
923
|
description: "Write-through symlink caveat injected by the runner.",
|
|
924
924
|
template: "[agent-relay] Isolated workspace: these untracked paths are SYMLINKED from the main checkout: {{linked}}. They resolve to the real files in main, so editing or deleting them writes THROUGH to main \u2014 treat them as read-only unless you intend to change main.",
|
|
925
925
|
defaultTemplate: "[agent-relay] Isolated workspace: these untracked paths are SYMLINKED from the main checkout: {{linked}}. They resolve to the real files in main, so editing or deleting them writes THROUGH to main \u2014 treat them as read-only unless you intend to change main.",
|
|
926
|
-
variables: [
|
|
926
|
+
variables: []
|
|
927
927
|
}
|
|
928
928
|
];
|
|
929
929
|
|
package/src/template-resolver.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { RelayHttpClient } from "agent-relay-sdk";
|
|
2
|
-
import { RUNNER_PROMPT_TEMPLATE_DEFAULTS } from "
|
|
2
|
+
import { RUNNER_PROMPT_TEMPLATE_DEFAULTS } from "agent-relay-sdk/prompt-template-defaults";
|
|
3
3
|
|
|
4
4
|
const RUNNER_DEFAULTS = new Map<string, string>(RUNNER_PROMPT_TEMPLATE_DEFAULTS.map((template) => [template.slug, template.defaultTemplate]));
|
|
5
5
|
const templateCache = new Map<string, string>();
|