MCPcopy Create free account
hub / github.com/alexknowshtml/kuato / parseSessionFile

Function parseSessionFile

shared/parser.ts:23–26  ·  view source on GitHub ↗
(filePath: string)

Source from the content-addressed store, hash-verified

21 * Parse a single JSONL file into structured session data
22 */
23export function parseSessionFile(filePath: string): ParsedSession | null {
24 const content = readFileSync(filePath, 'utf-8');
25 return parseSessionContent(content, filePath);
26}
27
28/**
29 * Parse JSONL content string into structured session data

Callers 2

searchSessionsFunction · 0.85
syncSessionFunction · 0.85

Calls 1

parseSessionContentFunction · 0.85

Tested by

no test coverage detected