agent-relay-runner 0.88.3 → 0.89.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-runner",
3
- "version": "0.88.3",
3
+ "version": "0.89.0",
4
4
  "description": "Unified provider lifecycle runner for Agent Relay",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,7 +20,7 @@
20
20
  "directory": "runner"
21
21
  },
22
22
  "dependencies": {
23
- "agent-relay-sdk": "0.2.67"
23
+ "agent-relay-sdk": "0.2.68"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/bun": "latest",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-relay-runner",
3
3
  "description": "Thin Agent Relay runner bridge for Claude Code",
4
- "version": "0.88.3",
4
+ "version": "0.89.0",
5
5
  "agentRelayContracts": {
6
6
  "providerPluginProtocol": 1
7
7
  }
@@ -1287,7 +1287,10 @@ function codexRelayContextEnabled(process: ManagedProcess): boolean {
1287
1287
  return config ? profileAllowsRelayFeature(config, "context") : true;
1288
1288
  }
1289
1289
 
1290
- function codexLaunchContext(process: ManagedProcess): string | undefined {
1290
+ // Exported for integration coverage (#462): Codex has no `--append-system-prompt`
1291
+ // flag — the composed systemPromptAppend rides in as the launch-context message
1292
+ // prepended to the first turn. This is the Codex twin of Claude's append arg.
1293
+ export function codexLaunchContext(process: ManagedProcess): string | undefined {
1291
1294
  const config = process.meta?.config as RunnerSpawnConfig | undefined;
1292
1295
  const text = config?.systemPromptAppend?.trim();
1293
1296
  if (!text || process.meta?.systemPromptAppendSent) return undefined;