Skip to main content

The Feed

The Feed is the primary view for browsing your captured knowledge. It displays all your nodes in reverse-chronological order.

Layout​

The dashboard uses a split-panel layout:

  • Left panel — the Feed list.
  • Right panel — the selected node detail, or the Knowledge Graph, depending on the active tab.

Feed List​

Each node card in the Feed shows:

  • Title — the page title from the captured URL.
  • Summary — the first few lines of the AI-generated summary.
  • Tags — AI-extracted entity tags and custom user tags (created via the TagManager).
  • Source URL — a truncated link to the original page.
  • Timestamp — when the node was captured.
  • Bookmarks — a star icon to mark and easily filter important nodes.

Virtualized Rendering​

The Feed uses @tanstack/react-virtual with dynamic row height measurement (measureElement). This ensures smooth scrolling performance even with tens of thousands of nodes. Only the visible rows (plus an overscan of 5 above and below) are rendered in the DOM at any time.

Viewing Full Content​

Click any node card to open its detail view in the right panel. The detail view loads the full raw_text lazily (only fetched when the node is selected, not during the initial Feed load) to keep initial page loads fast.

This view also includes the HighlightsPanel, which saves color-coded text passages and personal annotations extracted from the node.

Searching​

Use Cmd+K / Ctrl+K or the search icon to open the command search palette. See Search Your Knowledge.

Filtering & Sorting​

You can refine your Feed using several powerful filters combined in a unified pipeline:

  • Sort by: Newest, Oldest, Most Connections, or Most Entities.
  • Date Range: Filter nodes by 7 days, 30 days, 90 days, or all time.
  • Bookmarks: Toggle to show only bookmarked nodes.
  • Tags: Filter by specific tags using the dropdown.

Keyboard Shortcuts​

Navigate the dashboard rapidly using built-in keyboard shortcuts:

  • 1–5: Switch between dashboard tabs (e.g., Feed, Knowledge Graph, Review).
  • ?: Open the keyboard shortcuts help dialog.

Bulk Operations​

Activate bulk selection mode by clicking the checkbox on any node card. Once active:

  • Checkboxes appear on all node cards.
  • A bulk action toolbar appears at the bottom of the Feed.
  • Available bulk actions:
    • Add to Collection — assign all selected nodes to a collection.
    • Delete — permanently delete all selected nodes and their associated data.

Single Node Deletion​

Click the â‹® menu on a node card and select "Delete" to delete a single node. This removes:

  • The node itself.
  • All attached entities.
  • All edges connected to the node.
  • The spaced repetition review record.

Empty State​

When no nodes have been captured yet, the Feed shows an onboarding empty state with instructions to install the extension and capture your first article.