Reference and help

Web versus desktop

Understand what exists today, what the planned browser app may do, and which local filesystem behaviors remain desktop-only.

The browser app does not exist yet. Today sudonotes is the desktop app. This page records the intended boundary so planned behavior is not mistaken for a shipped feature.

Two planned modes

The browser experience is expected to distinguish clearly between:

Planned modeWhat it meansSame files as desktop?
Connect a vaultA compatible browser receives permission to read and write the chosen local folderYes
Import a copyNotes are copied into browser-managed storage and later exported deliberatelyNo

Folder access depends on browser and operating-system capabilities. Import/export is the fallback where a live folder permission is unavailable. Exact support must be retested when the browser app ships.

Desktop-only responsibilities

The desktop app is expected to keep behaviors that require broad native filesystem access:

  • writing IDEAS.md into an arbitrary project and editing .gitignore;
  • watching a vault continuously for external edits;
  • maintaining the SQLite search index in .sudonotes/index.db;
  • using native window, installer, update, and absolute-path behavior;
  • creating and restoring app-data .bak snapshots.

A browser implementation should not imply it can do these things merely because it can import Markdown.

Shared note rules

The core/ Rust crate defines parsing, serialization, filename slugs, links, and prompt splitting. It can compile to WebAssembly so a future browser build can call the same rules instead of reimplementing them in JavaScript.

That matters when desktop and browser touch the same folder: even a small disagreement about quoting, filenames, or frontmatter could cause them to rewrite each other’s files.

Conflict safety before launch

A connected browser should fingerprint a note when opening it and check again before writing. If the file changed, it must offer a clear reload, keep-mine, or save-copy path rather than silently overwriting another editor.

Until that work ships and this page changes to Available now, do not rely on the placeholder webapp/ surface for vault access.