Add Personal Brain documentation - #1466
Conversation
- Created apps/docs/images/personal-brain/nova-chat.png - Created apps/docs/images/personal-brain/add-memory.png - Created apps/docs/images/personal-brain/search.png - Created apps/docs/images/personal-brain/integrations-overview.png - Created apps/docs/images/personal-brain/apps-and-extensions.png - Created apps/docs/images/personal-brain/poke-unverified-recipe-warning.png - Created apps/docs/images/personal-brain/raycast.png - Created apps/docs/images/personal-brain/x-bookmarks.png - Created apps/docs/images/personal-brain/spaces-selector.png - Created apps/docs/images/personal-brain/spaces-context.png - Created apps/docs/images/personal-brain/spaces-create.png - Created apps/docs/images/personal-brain/integration-logos/raycast-user-approved.png - Created apps/docs/images/personal-brain/integration-logos/raycast-user-approved-1.png - Created apps/docs/images/personal-brain/integration-logos/raycast-user-approved.svg - Created apps/docs/personal-brain/concepts/setup.mdx - Created apps/docs/personal-brain/concepts/spaces.mdx - Created apps/docs/personal-brain/concepts/integrations.mdx - Created apps/docs/personal-brain/concepts/app-and-console.mdx - Created apps/docs/personal-brain/concepts/what-is-supermemory-personal-brain.mdx - Created apps/docs/personal-brain/use-cases/poke.mdx - Created apps/docs/personal-brain/use-cases/browser-extension.mdx - Created apps/docs/personal-brain/use-cases/apple-shortcuts.mdx - Created apps/docs/personal-brain/use-cases/x-bookmarks.mdx - Created apps/docs/personal-brain/use-cases/raycast.mdx - Updated apps/docs/docs.json Mintlify-Source: dashboard-editor
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-mcp | aff1920 | Aug 15 2026, 12:04 AM |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | aff1920 | Commit Preview URL Branch Preview URL |
Aug 15 2026, 12:07 AM |
| title: "Connect Poke to Supermemory: Save and Recall Memories by Text" | ||
| sidebarTitle: "Poke" | ||
| description: "Learn how to connect Poke to Supermemory and save or recall Personal Brain memories from a text message." | ||
| icon: "https://poke.com/icons/poke-512.png" |
There was a problem hiding this comment.
Replace the external icon URL 'https://poke.com/icons/poke-512.png' with a stable local asset path or a standard Mintlify icon name (e.g., icon: "message") to avoid broken link CI failures.
Spotted by Graphite (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| title: "Import X Bookmarks into Supermemory and Search Saved Posts" | ||
| sidebarTitle: "X bookmarks" | ||
| description: "Learn how to import your X (Twitter) bookmarks into Supermemory and search saved posts alongside the rest of your Personal Brain." | ||
| icon: "https://abs.twimg.com/responsive-web/client-web/icon-ios.77d25eba.png" |
There was a problem hiding this comment.
Replace the external icon URL 'https://abs.twimg.com/responsive-web/client-web/icon-ios.77d25eba.png' with a stable local asset path or a standard Mintlify icon name (e.g., icon: "x-twitter") to avoid broken link CI failures.
Spotted by Graphite (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| </Frame> | ||
|
|
||
| <CardGroup cols={2}> | ||
| <Card title="Poke" icon="https://poke.com/icons/poke-512.png" href="/personal-brain/use-cases/poke"> |
There was a problem hiding this comment.
Replace the external icon URL 'https://poke.com/icons/poke-512.png' in the Poke Card component with a stable local asset path or a standard Mintlify icon name (e.g., icon="message") to avoid broken link CI failures.
Spotted by Graphite (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| Import your existing X bookmarks into memory. | ||
| </Card> | ||
|
|
||
| <Card title="Raycast" icon="https://cdn.jsdelivr.net/gh/selfhst/icons/png/raycast.png" href="/personal-brain/use-cases/raycast"> |
There was a problem hiding this comment.
Replace the external icon URL 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/raycast.png' in the Raycast Card component with a stable local asset path (e.g., the already-added '/images/personal-brain/integration-logos/raycast-user-approved.svg') or a standard icon name to avoid broken link CI failures.
Spotted by Graphite (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
|
Claude finished @shardulmane10's task in 1m 21s —— View job PR Review Complete
Overview: Adds comprehensive Personal Brain documentation with setup guides, spaces management, and integration docs for Poke, browser extension, Apple Shortcuts, X bookmarks, and Raycast. Issues found: None — all previously flagged issues have been fixed in recent commits:
Score: 10/10 Clean documentation PR. The recent commits ( |
There was a problem hiding this comment.
Overview: Adds comprehensive Personal Brain documentation with setup guides, space management, and integration docs for Poke, browser extension, Apple Shortcuts, X bookmarks, and Raycast.
Issues found:
- One broken internal link in
setup.mdxpointing to/personal-brain/use-cases/ai-chatsinstead of/personal-brain/use-cases/browser-extension - Graphite already flagged the external icon URLs that could cause CI issues — those should also be addressed
Score: 9/10
The documentation is well-structured and comprehensive. Just the one broken link to fix before merge.
| <Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/ai-chats"> | ||
| Save webpages and selections from any tab. | ||
| </Card> | ||
|
|
There was a problem hiding this comment.
Broken link: This links to /personal-brain/use-cases/ai-chats which doesn't exist. Should be /personal-brain/use-cases/browser-extension to match the actual file path.
| <Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/browser-extension"> |
| ## Choose your first integration | ||
|
|
||
| <CardGroup cols={2}> | ||
| <Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/ai-chats"> |
There was a problem hiding this comment.
Broken link: The href points to /personal-brain/use-cases/ai-chats but no such file exists in this PR. This will cause a 404 error when users click the Browser extension card.
Fix:
<Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/browser-extension">| <Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/ai-chats"> | |
| <Card title="Browser extension" icon="globe" href="/personal-brain/use-cases/browser-extension"> | |
Spotted by Graphite
Is this helpful? React 👍 or 👎 to let us know.
Convert spaces to tabs for consistent indentation. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
| <Card title="Manage your memory" icon="database" href="/personal-brain/use-cases/manage-memory"> | ||
| Browse, edit, and organize what's in your Personal Brain. | ||
| </Card> |
There was a problem hiding this comment.
The href '/personal-brain/use-cases/manage-memory' points to a page that doesn't exist and hasn't been created in this PR. Either create the missing page or change the link to an existing page such as '/personal-brain/concepts/setup' or remove this card until the manage-memory page is created.
Spotted by Graphite (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
There was a problem hiding this comment.
Overview: Adds comprehensive Personal Brain documentation covering setup, spaces, integrations, and guides for Poke, browser extension, Apple Shortcuts, X bookmarks, and Raycast.
Issues found:
- One additional broken link to
/personal-brain/use-cases/overview(referenced inintegrations.mdxandwhat-is-supermemory-personal-brain.mdx) — the page doesn't exist - Previous reviewers already flagged: broken link to
/personal-brain/use-cases/ai-chats, broken link to/personal-brain/use-cases/manage-memory, and external icon URLs
Score: 8/10
The documentation is well-written and structured. Fix the three broken internal links before merging to avoid 404s for users.
| ## Related | ||
|
|
||
| <CardGroup cols={2}> | ||
| <Card title="What you can do" icon="sparkles" href="/personal-brain/use-cases/overview"> |
There was a problem hiding this comment.
Broken link: /personal-brain/use-cases/overview doesn't exist in this PR. This link also appears in what-is-supermemory-personal-brain.mdx:58. Either create the missing page or update both links to point to an existing page.
| <Card title="What you can do" icon="sparkles" href="/personal-brain/use-cases/overview"> | |
| <Card title="What you can do" icon="sparkles" href="/personal-brain/concepts/integrations"> |
Summary
Adds the new Personal Brain documentation section, including setup, spaces, app usage, integrations, screenshots, and detailed guides for Poke, browser extension, Apple Shortcuts, X bookmarks, and Raycast.
The Company Brain documentation is unchanged.
Mintlify
0 threads from 0 users in Mintlify