A Markdown workspace for notes you actually own.
Cortex is local-first, open source, and built on plain Markdown files, with optional sync that keeps readable notes on your devices.

Write, find, and arrange without losing the thread.
Cortex keeps the daily loop tight: edit in Markdown, jump between notes, split context, and stay close to the keyboard.
- 1
Open any Markdown folder
No import ceremony. Cortex reads the folder you already trust.
- 2
Write in Live Preview
Markdown stays editable while structure, links, and callouts stay readable.
- 3
Search and split
Jump to a note, open a split, and keep context visible while you write.
- 4
Reveal the plain file
The last step still points back to a normal Markdown file on disk.

Structure that adapts to how you already think.
Choose folders when the hierarchy is obvious, tags when relationships matter, and bookmarks when a note needs to stay one gesture away.

Sync is optional, encrypted, and yours to host.
Move across devices while keeping plaintext out of the service. Use hosted sync when it fits, or run the server yourself.

Convenience without handing the service readable notes.
Sync is a product story about ownership: client-side encryption, encrypted blob storage, history, and a self-hostable path.
Encrypted before upload
Notes are encrypted on your device before Cortex Sync stores encrypted blobs.
Inspectable history
Version history and conflict recovery make changes understandable across devices.
Self-hostable path
Use the hosted service when it fits, or run the open-source sync server yourself.
Plain files stay local
Readable Markdown remains on your devices; the service handles encrypted blob storage.
- Local filesSource of truth
~/notes
- Works offlineNo account required
offline
- Plain MarkdownReadable anywhere
.md
- Open sourceInspectable by design
open source
- Client-side encrypted syncOptional encrypted blobs
encrypted blob
Optional sync stores encrypted blobs; the readable Markdown stays on your devices.
Extend the workspace without making your notes less portable.
Plugins can extend the parts of Cortex people actually use every day: editing, commands, sidebars, status, settings, and small workflow shortcuts. The notes stay plain Markdown underneath.
Shape the daily workflow
Add commands, editor behavior, sidebar views, and status details around the vault without changing how notes are stored.
Reviewed before listing
Marketplace plugins are open source and reviewed by the Cortex team before they are listed for the community.
import { CortexPlugin } from "cortex-plugin-api"import { GITHUB_EMOJI_MAP } from "./emojiMap"export default class GitHubEmojiPlugin extends CortexPlugin { onload() { this.registerMarkdownInline({ id: "github-emoji", pattern: ":([a-z0-9_+-]+):", replacement: (match) => GITHUB_EMOJI_MAP[match[1]] ?? match[0], }) this.addCommand({ id: "insert-emoji", label: "Insert Emoji", execute: () => this.api.editor.insertAtCursor(":sparkles: "), }) this.registerView({ id: "emoji-browser", label: "Emoji Browser", location: "sidebar-left", }) }}
Change the surface without changing the notes.
Community themes can reshape Cortex through custom CSS packages while the vault stays plain Markdown. Bring a different mood to the app without making your files depend on it.
Theme packages live beside the vault
Install a custom theme under .cortex/themes and let the package override documented CSS variables and selector hooks.
Light and dark are first-class
A theme manifest can point Cortex to light.css and dark.css so the same personality works across both color schemes.
The model stays portable
Themes can change color, density, radius, and chrome without changing Markdown storage or the commands people rely on.
Ship extension work from a local vault.
The CLI mirrors the real extension loop: create a project, run vault-scoped dev mode, build, validate, and prepare publish artifacts when the plugin or theme is ready.
# Start from the plugin template$cortex plugin create github-emojiPlugin 'github-emoji' created successfully$cd github-emoji && bun installdependencies installedBefore you make room for another tool.
Short answers for the product decisions people usually want to understand first.
Cortex Sync
Sync when you want it. The files stay yours.
Hosted Cortex Sync adds encrypted blob storage to the local-first Markdown workspace. It stays optional, and the vault stays readable on disk.