23358e2c6d
The bugfix/session-continuity branch introduced a regression that broke the privacy fix from PR #463 (commit 63fd158). Privacy tags must be stripped BEFORE creating the session, not after. CORRECT order: 1. Strip privacy tags 2. Create session with cleaned prompt 3. Get prompt number BROKEN order (what was on main): 1. Create session with RAW prompt (stores private content!) 2. Get prompt number 3. Strip privacy tags (too late) This commit restores the correct order from commit 63fd158. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>