@delegoapp/runner 0.5.5 → 0.6.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.
@@ -179,6 +179,11 @@ export async function runRealExecutionOnce(config, externalSignal) {
179
179
  prMetadata,
180
180
  publishingPolicy: job.publishingPolicy,
181
181
  pushed,
182
+ // Conversational mode: surface the Claude session id (and the worktree
183
+ // it ran in) on the terminal report so the relay can persist a resume
184
+ // point. A follow-up prompt in the Linear agent session then re-claims
185
+ // this same job/runner and resumes the conversation via `--resume`.
186
+ sessionId: result.sessionId,
182
187
  assistantResponse: result.finalReply,
183
188
  stdoutTail: result.stdout,
184
189
  stderrTail: result.stderr,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delegoapp/runner",
3
- "version": "0.5.5",
3
+ "version": "0.6.0",
4
4
  "private": false,
5
5
  "description": "Delego runner — polls the Delego relay and executes Linear-delegated coding jobs via Codex CLI or Claude Code.",
6
6
  "keywords": [
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "typescript": "^6.0.3",
43
- "vitest": "^4.1.5",
43
+ "vitest": "^4.1.7",
44
44
  "@kit/tsconfig": "0.1.0"
45
45
  },
46
46
  "engines": {