MCPcopy Index your code
hub / github.com/Noumena-Network/code / getCurrentSessionTitle

Function getCurrentSessionTitle

src/utils/sessionStorage.ts:2919–2927  ·  view source on GitHub ↗
(
  sessionId: SessionId,
)

Source from the content-addressed store, hash-verified

2917}
2918
2919export function getCurrentSessionTitle(
2920 sessionId: SessionId,
2921): string | undefined {
2922 // Only returns title for current session (the only one we cache)
2923 if (sessionId === getSessionId()) {
2924 return getProject().currentSessionTitle
2925 }
2926 return undefined
2927}
2928
2929export function getCurrentSessionAgentColor(): string | undefined {
2930 return getProject().currentSessionAgentColor

Callers 8

autoNameSessionFromPlanFunction · 0.85
buildPrimarySectionFunction · 0.85
printResumeHintFunction · 0.85
initReplBridgeFunction · 0.85
generateAndPatchFunction · 0.85
onUserMessageFunction · 0.85
REPLFunction · 0.85

Calls 2

getSessionIdFunction · 0.85
getProjectFunction · 0.85

Tested by

no test coverage detected