This page is about fixing a mix-up in a web app.
The app kept opening an empty page with no logins.
We found one tiny note that pointed it the wrong way.
We fixed that note, and saved a copy first to be safe.
Nothing was deleted, so all your saved stuff is still there.
--user-data-dir=/tmp/chrome-kidtest-profile, a brand-new empty profile. Empty profile = no account = a Google sign-in page. It was being run by 5+ concurrent Claude sessions at once.Local State had last_used = (none) and last_active_profiles = [], so a normal launch did not cleanly resume your "Default" profile.| Folder | Display name | Account | Holds | State |
|---|---|---|---|---|
| Default | Person 1 | 7onething1@gmail.com | logins, autofill, history, cookies, extensions (13 MB), sessions | intact |
| Profile 1 | heather | hsansom311@gmail.com | logins, bookmarks, history, sessions | intact |
| /tmp/chrome-kidtest-profile | โ | none | nothing (automation scratch) | throwaway |
open -a "Google Chrome" (the browser is not auto-opened for you).open -na "Google Chrome" --args --profile-directory=Defaultbash ~/Desktop/fix-chrome-profile-safe.sh --undobash ~/Desktop/fix-chrome-profile-safe.sh (refuses while Chrome is open, backs up, repairs only if drifted).The same safety doctrine, turned into a tested library at ~/Projects/safe-fix-guard/ (stdlib only, 24 unit tests, exit 0).
| Threat | Guard | Action |
|---|---|---|
Phishing link (homograph, user@host, brand look-alike) | classify_url / link_text_mismatch | block / caution |
| Prompt injection in untrusted text | scan_for_prompt_injection | block |
| Credential exfiltration (read/decrypt secrets) | credential_guard | block |
| Destructive / USER-ACTIVE file op | file_op_guard | block |
| "Done" with no proof | require_proof_before_done | block until proof |
Full spec: ~/Desktop/phish-product-world-class-plan.md ยท threat model, flows, failure modes, test cases, launch checklist.
ps args, ~/Library/Application Support/Google/Chrome/Local State, Keychain item presence, /tmp/phish_search.txt.
Artifacts: ~/Desktop/chrome-profile-diagnosis.txt, ~/Desktop/fix-chrome-profile-safe.sh, ~/Desktop/phish-product-world-class-plan.md, ~/Projects/safe-fix-guard/.