Sign in

Auva Notes

Auva Notes is Auva's knowledge management platform: a fast, intelligent workspace for capturing ideas, organizing knowledge, and finding anything instantly. Coming soon at notes.auva.dev.

Auva Notes is currently in active development. This documentation covers the planned feature set and API design. Endpoints may change before launch.


Vision

Auva Notes is built for people who think by writing. It's opinionated about speed, structure, and search: the three things that make or break a note-taking tool.

Core Principles


Planned Features

FeatureDescription
WorkspacesTop-level containers for organizing notes by project or context
Rich EditorMarkdown-based editor with live preview and shortcuts
TagsCross-workspace tagging for flexible organization
Full-Text SearchInstant search across all content with highlighted matches
Pinned NotesPin important notes to the top of any workspace
SharingShare individual notes or entire workspaces with collaborators
Version HistoryEvery save is versioned. Roll back to any previous state.
APIFull CRUD API for programmatic note management
Offline SyncService Worker-powered offline access with background sync

Architecture Preview

text
type Note = {
  id: string;
  title: string;
  content: string;        // Markdown
  workspaceId: string;
  tags: string[];
  pinned: boolean;
  createdAt: string;
  updatedAt: string;
  version: number;
};

type Workspace = {
  id: string;
  name: string;
  description?: string;
  noteCount: number;
  createdAt: string;
};