Auto-reply: fix non-default agent session transcript path resolution (#15154)

* Auto-reply: fix non-default agent transcript path resolution

* Auto-reply: harden non-default agent transcript lookups

* Auto-reply: harden session path resolution across agent stores
This commit is contained in:
Gustavo Madeira Santana
2026-02-12 23:23:12 -05:00
committed by GitHub
parent 79a38858ae
commit ac41176532
13 changed files with 321 additions and 16 deletions

View File

@@ -106,6 +106,7 @@ export async function buildStatusReply(params: {
sessionEntry?: SessionEntry;
sessionKey: string;
sessionScope?: SessionScope;
storePath?: string;
provider: string;
model: string;
contextTokens: number;
@@ -124,6 +125,7 @@ export async function buildStatusReply(params: {
sessionEntry,
sessionKey,
sessionScope,
storePath,
provider,
model,
contextTokens,
@@ -225,6 +227,7 @@ export async function buildStatusReply(params: {
sessionEntry,
sessionKey,
sessionScope,
sessionStorePath: storePath,
groupActivation,
resolvedThink: resolvedThinkLevel ?? (await resolveDefaultThinkingLevel()),
resolvedVerbose: resolvedVerboseLevel,