> ## Documentation Index
> Fetch the complete documentation index at: https://help.memoryplugin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I save a new memory?

> Three ways to get something into MemoryPlugin: ask the AI, highlight text, or type it yourself

export const ArticleInfo = ({author, lastUpdated}) => {
  const authorAvatar = author === 'Alara' ? '/images/author-alara.jpg' : author === 'asad' ? '/images/author-alara.jpg' : null;
  const formatDate = dateInput => {
    if (!dateInput) return '';
    if (typeof dateInput === 'string' && !dateInput.match(/^\d{4}-\d{2}-\d{2}/)) {
      return dateInput;
    }
    try {
      const date = new Date(dateInput);
      const now = new Date();
      const diffTime = Math.abs(now - date);
      const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
      if (diffDays === 0) return 'today';
      if (diffDays === 1) return '1 day ago';
      if (diffDays < 7) return `${diffDays} days ago`;
      if (diffDays < 30) return `${Math.ceil(diffDays / 7)} week${Math.ceil(diffDays / 7) > 1 ? 's' : ''} ago`;
      if (diffDays < 365) return `${Math.ceil(diffDays / 30)} month${Math.ceil(diffDays / 30) > 1 ? 's' : ''} ago`;
      return `${Math.ceil(diffDays / 365)} year${Math.ceil(diffDays / 365) > 1 ? 's' : ''} ago`;
    } catch {
      return dateInput;
    }
  };
  return <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    marginBottom: "16px",
    padding: "8px 12px",
    backgroundColor: "var(--ifm-color-emphasis-100)",
    borderRadius: "6px",
    fontSize: "14px",
    color: "var(--ifm-color-content-secondary)",
    border: "1px solid var(--ifm-color-emphasis-200)",
    opacity: "0.8"
  }}>
      <div style={{
    width: "40px",
    height: "40px",
    borderRadius: "50%",
    background: authorAvatar || "linear-gradient(45deg, #4F46E5, #7C3AED)",
    display: "flex",
    alignItems: "center",
    justifyContent: "center",
    color: "white",
    fontWeight: "bold",
    fontSize: "18px"
  }}>
        {authorAvatar ? <img src={authorAvatar} alt={author} style={{
    width: "100%",
    height: "100%",
    borderRadius: "50%"
  }} /> : author?.[0]?.toUpperCase()}
      </div>
      <div>
        <div style={{
    fontWeight: "400",
    fontSize: "14px"
  }}>Written by <span style={{
    fontWeight: "600"
  }}>{author}</span></div>
        <div style={{
    fontSize: "14px"
  }}>Last updated <span style={{
    fontWeight: "600"
  }}>{formatDate(lastUpdated)}</span></div>
      </div>
    </div>;
};

<ArticleInfo author="Alara" lastUpdated="2026-07-12" />

The fastest way: in an activated chat, tell the AI *"remember that I..."* and it saves the memory for you. There are three ways in total, and they all end up in the same place.

## 1. Ask the AI (in an activated chat)

Once you have [added your memories to a chat](/questions/add-memories-to-a-chat), the AI knows how to save. It adds a memory in two cases:

* **You ask it to.** "Remember that my deadline is March 3."
* **It decides something is worth keeping.** It saves important facts on its own as you chat.

When the extension detects the save, it shows a confirmation toast (for example *Memory saved: "User prefers morning meetings"*).

<Note>
  If the AI talked about remembering but no toast appeared, it did not emit the save marker. Just ask it again to remember the item.
</Note>

## 2. Highlight text with "Extract memory"

Select at least 3 characters of text anywhere in a chat and a floating **Extract memory** pill appears. Click it and a toast confirms the save. This is the fastest way to keep one specific line from a conversation.

<video controls playsInline className="w-full aspect-video rounded-xl" src="https://mintcdn.com/memoryplugin/9o9T_0PzzkacB3w3/videos/extract-memory-pill.mp4?fit=max&auto=format&n=9o9T_0PzzkacB3w3&q=85&s=8c04308000a91583ff5948506272e179" data-path="videos/extract-memory-pill.mp4" />

## 3. Type it yourself

* **Extension:** open the panel, go to the **Memories** tab, and click **Add**.
* **Dashboard:** press **⌘J / Ctrl+J** or click **New Memory** in the sidebar. For several at once, check **Bulk mode (one per line)** and paste one memory per line.

## Related

<CardGroup cols={2}>
  <Card title="Browser Extension" icon="browser" href="/integrations/browser-extension">
    How activation and the save marker work
  </Card>

  <Card title="Import & Export" icon="arrow-right-arrow-left" href="/features/import-export">
    Load memories in bulk from a CSV or JSON file
  </Card>
</CardGroup>
