fix(session): run delegate synchronously when no issue ref is provided #261

Merged
shoko merged 1 commits from fix/issue-254 into main 2026-04-08 13:24:20 +02:00
Owner

Summary

  • Run delegate synchronously when no issue ref is provided (instead of fire-and-forget with nohup)
  • Users now see PM response immediately for guidance/creation requests
  • Output is still logged to file via tee

Fixes

Fixes #254

Implementation

Changed line 231 in kugetsu-session.sh:

  • Before: nohup sh -c "..." >> "" 2>&1 &
  • After: sh -c "..." 2>&1 | tee ""

This runs interactively and synchronously, blocking until completion while still logging to the file.

## Summary - Run delegate synchronously when no issue ref is provided (instead of fire-and-forget with nohup) - Users now see PM response immediately for guidance/creation requests - Output is still logged to file via tee ## Fixes Fixes #254 ## Implementation Changed line 231 in kugetsu-session.sh: - Before: nohup sh -c "..." >> "" 2>&1 & - After: sh -c "..." 2>&1 | tee "" This runs interactively and synchronously, blocking until completion while still logging to the file.
shoko added 1 commit 2026-04-08 12:37:13 +02:00
When kugetsu delegate is called without an issue ref, it now runs
interactively and synchronously instead of fire-and-forget with nohup.

This allows users to see PM response immediately for guidance/creation
requests rather than having the interaction run in background.
han approved these changes 2026-04-08 13:23:22 +02:00
han left a comment
First-time contributor

lgtm

lgtm
shoko merged commit 5e729227aa into main 2026-04-08 13:24:20 +02:00
Sign in to join this conversation.