> ## 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 add memories to new chats automatically?

> Turn on auto-inject so every new conversation starts with your memories, no click needed

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" />

Open the extension panel, go to the **Settings** tab, and turn on **Automatically add memories in new conversations**. That's it: when you send your first message in a new chat, your memories go in without you clicking anything.

## What it looks like

When you send the first message of a new chat, the extension shows an **Auto-injecting memories** prompt with a 5-second countdown and a **Cancel** button, then injects. The countdown is your escape hatch: hit **Cancel** for any conversation you want to keep memory-free.

## Steps

<Steps>
  <Step title="Open Settings">
    Click the floating MemoryPlugin button on a supported site, then open the **Settings** tab.
  </Step>

  <Step title="Turn on the toggle">
    Enable **Automatically add memories in new conversations**.
  </Step>

  <Step title="Pick your bucket">
    Auto-inject uses the bucket selected in the panel dropdown, so keep the right one selected for what you're working on.
  </Step>
</Steps>

<Note>
  Auto-inject covers new conversations. For a chat that's already underway, activate it manually with the inject button or the **Add Memories** pill.
</Note>

## Related

<CardGroup cols={2}>
  <Card title="Add memories to a chat" icon="bolt" href="/questions/add-memories-to-a-chat">
    The manual activation flow
  </Card>

  <Card title="Keep a chat private" icon="eye-slash" href="/questions/keep-a-chat-private">
    Keeping MemoryPlugin out of specific conversations
  </Card>
</CardGroup>
