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 | db8e07d | Aug 14 2026, 12:57 AM |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | db8e07d | Commit Preview URL Branch Preview URL |
Aug 14 2026, 01:00 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 23s —— View job Review Complete: PR #1466 — Add Personal Brain documentation
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:
Score: 9/10 — Well-structured docs, just the broken link to fix. |
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>
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