fix: replace hardcoded sessionId with persistent per-conversation ID - #20
Merged
Conversation
All 4 client templates now use useRef(crypto.randomUUID()) for a stable sessionId per conversation instead of hardcoded 'session-123'. Added troubleshoot KB entry for hardcoded/rotating sessionIds. Updated js-sdk docs and prompt checklist. Made-with: Cursor
Templates now use currentUser.id instead of hardcoded 'user-456', with a comment guiding publishers to plug in their own conversation session ID and authenticated user ID. Updated docs and KB to match. Made-with: Cursor
Templates now declare SESSION_ID and USER_ID as null! typed constants so TypeScript will error at runtime if publishers don't replace them. No more silent crypto.randomUUID() fallback that masks missing identity wiring. Updated KB to match. Made-with: Cursor
The gravity_context entry had generic keywords (session, sessionId, 422) that intercepted lookups meant for the new hardcoded-sessionId entry. Narrowed to context-missing-specific keywords only. Made-with: Cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
useRef(crypto.randomUUID())instead of hardcoded'session-123'useRefto the React import in all templatesgravity://docs/js-sdkresource to showcrypto.randomUUID()with reuse guidancegravityContext()note now mentions sessionId stabilitygravity_contextKB keywords (removed bare "session") to avoid false-positive collisionsTest plan
test_all_entries_reachablewith the new KB entry)useRef,sessionRef.current, nosession-123troubleshoot("hardcoded session id")returns the new entry withuseReffixgravity://docs/js-sdkshowscrypto.randomUUID(), nosession-123Made with Cursor