PR review with local context.
Lachesi is a local-first review workspace for Git providers. Inspect PRs, run AI reviews, capture structured findings, and sync branches locally.
Download Lachesisrc/auth.tsTS
142
async function validateSession(token: string) {143- const session = await db.sessions.find(token);143+ const session = await db.sessions.getCached(token);144if (!session || session.expired) {