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

# Local transcript files

> Bring meeting context to local AI agents like Claude Code and Cursor.

<Frame>
  <div
    style={{
  backgroundImage: "url(https://mintcdn.com/earmark/vNkCE4NL0UOVgfZk/images/background-blue.png?fit=max&auto=format&n=vNkCE4NL0UOVgfZk&q=85&s=8d57271bb6e72c3715e83d97907c438b)",
  backgroundSize: "cover",
  backgroundPosition: "center",
  borderRadius: "1rem",
  overflow: "hidden",
  height: "320px",
}}
  >
    <div
      style={{
    transform: "scale(1.5) translateX(70px) translateY(40px)",
    transformOrigin: "top left",
  }}
    >
      <div
        style={{
      borderRadius: "0rem",
      overflow: "hidden",
      boxShadow: "0 24px 60px rgba(15, 23, 42, 0.28)",
    }}
      >
        <img src="https://mintcdn.com/earmark/3YhQcTy5Ywk26eSb/images/local-transcripts.png?fit=max&auto=format&n=3YhQcTy5Ywk26eSb&q=85&s=f85787fd47746dd4ff6abe9cc40b5b6e" alt="Meeting transcripts saved as local markdown files, shown in a file browser." style={{ width: "100%", display: "block" }} width="1904" height="1214" data-path="images/local-transcripts.png" />
      </div>
    </div>
  </div>
</Frame>

## What it does

Earmark auto-saves a markdown file to your device when each meeting ends. This is enabled by default and works for both standard and [temporary](/earmark-basics/temporary-meetings) meetings. The default save location is:

```
~/Documents/Earmark/Meeting Transcripts/
```

You can change the save location in settings.

Point Claude Code, Claude Cowork, Codex, Cursor or your local AI agent of choice at the folder and try prompts like:

* What meetings did I have this week?
* Summarize my last meeting and extract action items.
* I'm about to start a 1:1 with Sam — what should I remember from our previous meetings?
* What decisions were made in the product sync on Monday?
* Are there any open questions or unresolved threads from this week's meetings?

If the meeting title changes after the file is written (for example, a system-generated title arrives), Earmark rewrites the file automatically.

<Note>
  This is a desktop-only feature. It requires the Earmark Mac or Windows app version 1.4.1 or later.
</Note>

## Settings

Open **Settings > Personalization > Meeting files** to manage local transcripts.

* **Auto-save transcripts to this device** — toggle the feature on or off.
* **Save location** — when auto-save is enabled, a location row appears where you can change the destination folder. The folder must be inside your home directory (`~`).

<Frame>
  <div
    style={{
  backgroundImage: "url(https://mintcdn.com/earmark/vNkCE4NL0UOVgfZk/images/background-blue.png?fit=max&auto=format&n=vNkCE4NL0UOVgfZk&q=85&s=8d57271bb6e72c3715e83d97907c438b)",
  backgroundSize: "cover",
  backgroundPosition: "center",
  borderRadius: "1rem",
  padding: "4%",
}}
  >
    <div
      style={{
    borderRadius: "0.875rem",
    overflow: "hidden",
    boxShadow: "0 24px 60px rgba(15, 23, 42, 0.28)",
  }}
    >
      <img src="https://mintcdn.com/earmark/d09fpHccGH4we3St/images/local-transcripts-settings.png?fit=max&auto=format&n=d09fpHccGH4we3St&q=85&s=20c7622276898058204b4e6b7e1f7741" alt="Settings panel showing the Meeting files section under Personalization with auto-save toggle and save location." style={{ width: "100%", display: "block" }} width="1356" height="442" data-path="images/local-transcripts-settings.png" />
    </div>
  </div>
</Frame>

## File format

Each file is named with the meeting start time in UTC, for example `2026-03-20_21-30-00Z.md`. Inside the file, the metadata stays in your local time zone and includes the timezone. Each file has frontmatter followed by a `## Transcript` section:

```markdown theme={null}
---
title: "Product Sync"
date: "2026-03-20 14:30"
participants: "Alex Johnson (creator) <alex@example.com>, Sam Lee <sam@example.com>"
started_at: "2026-03-20 14:30"
ended_at: "2026-03-20 15:01"
timezone: "America/Los_Angeles"
meeting_key: "abc-123"
workspace_name: "Acme Inc"
format_version: 1
---

## Transcript

Alex: Let's start with the status update...
```

<Warning>
  **Transcript not accessible?** iCloud Drive may be offloading the file to save
  disk space. In Finder, navigate to your save location, right-click the file,
  and select **Keep Downloaded**.
</Warning>
