kimun-notes 0.3.1

A terminal-based notes application
Documentation

Kimün

Crates.io License: MIT

A terminal-based notes app focused on simplicity and powerful search.

Check the docs.

Notes are plain Markdown files stored in a directory you own. Kimün indexes them into a local SQLite database for fast full-text and structured search.

Small disclaimer: Although by no means this has been vibe coded — the core has been written manually — there is a good chunk of AI-assisted code (using Claude) with manual reviews. Initially for tedious refactors, data structures I'm too lazy to code myself, but also to help me building the foundations of more complex stuff, especially on the UI side. Use AI as a tool, not as a replacement.

Quick Start

Kimün is a terminal UI for browsing and editing your Markdown notes with a powerful search engine. Use the TUI to write and organize notes, or the CLI for automation and scripting. Everything is stored as plain .md files — no lock-in.

cargo install kimun-notes

Documentation

Full documentation is available in docs/:

To browse the docs locally with search:

# Install Zola: https://www.getzola.org/documentation/getting-started/installation/
zola serve docs/

Releasing

Releases are automated via release.sh, which uses semtag to determine the next version. Requires cargo-edit:

cargo install cargo-edit
./release.sh           # auto scope (minor or patch based on diff size)
./release.sh -s patch  # force patch bump
./release.sh -s minor  # force minor bump
./release.sh -s major  # force major bump

The script will:

  1. Calculate the next version from git history
  2. Bump the version in tui/Cargo.toml (kimun-notes)
  3. Commit the change and push a version tag

The tag triggers the CI workflow, which publishes to crates.io — skipping any crate whose current version is already published.

Releasing kimun_core: Core is versioned independently. Update core/Cargo.toml and the kimun_core entry in the root Cargo.toml [workspace.dependencies] manually, commit, then run ./release.sh as usual.

Roadmap

  • Command palette
  • Display key shortcuts in command palette and help modal
  • Backlinks panel
  • Inline tags and search by tag (#important)
  • Resolve relative paths on links and images
  • Paste images into notes
  • Calendar view for journal browsing
  • Auto-continue list formatting on Enter
  • Multiple workspaces
  • Search under Markdown sections
  • File management (create, rename, move, delete notes and directories)
  • Autosave
  • Wikilinks in preview
  • Navigate notes via links in preview
  • Embed neoVim as an option