personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix import redirect path: use hash routing (#guide/{source})

The import app uses hash-based routing, not path-based. The muse
redirect commands were pointing to /app/import/source/{source}
which doesn't exist as a Flask route. Corrected to
/app/import#guide/{source} which the frontend handles.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -3
+1 -1
muse/observation_review.md
··· 87 87 **If user picks a source:** 88 88 1. Read the export guide from `apps/import/guides/{source}.md` (map: Calendar→ics, ChatGPT→chatgpt, Claude→claude, Gemini→gemini, Notes→obsidian, Kindle→kindle) 89 89 2. Present the export instructions conversationally 90 - 3. Run `sol call chat redirect "Import my {source}" --app import --path "/app/import/source/{source}"` to hand off to the import app 90 + 3. Run `sol call chat redirect "Import my {source}" --app import --path "/app/import#guide/{source}"` to hand off to the import app 91 91 4. After redirecting, tell the user you'll take them to the import page to upload the file 92 92 93 93 **If user says "skip" or "not now":**
+1 -1
muse/onboarding.md
··· 92 92 **If user picks a source:** 93 93 1. Read the export guide from `apps/import/guides/{source}.md` (map: Calendar→ics, ChatGPT→chatgpt, Claude→claude, Gemini→gemini, Notes→obsidian, Kindle→kindle) 94 94 2. Present the export instructions conversationally 95 - 3. Run `sol call chat redirect "Import my {source}" --app import --path "/app/import/source/{source}"` to hand off to the import app 95 + 3. Run `sol call chat redirect "Import my {source}" --app import --path "/app/import#guide/{source}"` to hand off to the import app 96 96 4. After redirecting, tell the user you'll take them to the import page to upload the file 97 97 98 98 **If user says "skip" or "not now":**
+1 -1
muse/triage.md
··· 88 88 89 89 - **Available sources**: Calendar (ics), ChatGPT (chatgpt), Claude (claude), Gemini (gemini), Notes (obsidian), Kindle (kindle) 90 90 91 - - If the user wants to import, read the guide from `apps/import/guides/{source}.md`, present it, then redirect: `sol call chat redirect "Import my {source}" --app import --path "/app/import/source/{source}"` 91 + - If the user wants to import, read the guide from `apps/import/guides/{source}.md`, present it, then redirect: `sol call chat redirect "Import my {source}" --app import --path "/app/import#guide/{source}"`