fix(ralph-loop): bind selectSession to tui context, use sourceSessionID for tool inheritance, handle flag-only arguments, fix test provider mocks

This commit is contained in:
YeonGyu-Kim
2026-02-21 04:13:41 +09:00
parent daa0d48026
commit 590dc04be7
4 changed files with 6 additions and 5 deletions
@@ -68,5 +68,5 @@ function getSelectSessionApi(client: unknown): SelectSessionApi | null {
return null
}
return selectSessionValue as SelectSessionApi
return (selectSessionValue as Function).bind(tuiValue) as SelectSessionApi
}