Skip to main content

zettel

Zettel is a zettelkasten knowledge base for code repositories. It keeps atomic notes as markdown files in .zettel/. Notes link to each other through YAML frontmatter and inline [[id]] references. Git tracks the notes next to the code, and no external service holds them.

During research an agent reads code, traces bugs, and compares options. That work is usually lost at the end of the session. Zettel writes it down as notes labeled with their provenance: who produced each piece of text, and what kind of claim it makes. A human reviews the agent content later and approves what they stand behind.

Install

The package is zttl, because zettel was taken on every registry. The command is zettel, and both names install together.

cargo install --locked zttl
brew install cjohnhanson/tap/zettel
uv tool install zttl
npm install -g zttl

cargo install builds from source. It needs Rust 1.88 and a C compiler. The other three carry a prebuilt binary for macOS and Linux, x86-64 and arm64, published by a tagged release.

To build the unreleased main branch:

cargo install --locked --git https://github.com/cjohnhanson/zettel

Or run it without installing:

uvx zttl read
npx zttl read

A release also carries prebuilt archives and a .deb, on the releases page. Each archive holds the binary and the man page. Install a .deb with dpkg -i: it is a file, not a repository, so apt-get install does not reach it.

Check the install with zettel --version.

Usage

zettel init                                                  # run inside a git repo
zettel note create "Connection pooling causes stale reads" \
  --tag bug,postgres --body "Pool reuses sockets after failover..."
zettel note list --tag postgres
zettel search "stale read"
zettel context a3f2 --depth 2

Every command:

zettel init                                  # make .zettel/ in a git repo
zettel note create "Title" -t a,b -p agent:summary   # make a note; set tags and provenance
zettel note list [--tag t] [--provenance p]  # list the notes
zettel note list --unreviewed                # list the notes with unreviewed agent content
zettel note show <id>                        # show the full content of one note
zettel note edit <id> --add-link b7c1        # link one note to another
zettel note review <id> [--approve all]      # list provenance spans; approve agent content
zettel note delete <id>                      # remove a note
zettel read [--tag t] [--provenance p]       # show the content of the matching notes/spans
zettel search <pattern>                      # search all notes with a regex
zettel backlinks <id>                        # show the notes that link to this note
zettel context <id> --depth N                # show the notes within N hops
zettel orphans                               # show the notes with no links
zettel store list                            # show this store and the stores it declares
zettel store sync                            # fetch the declared remote stores into the cache
zettel store root [<path>]                   # show or set the store that reads fall back to
zettel check                                 # check for broken links and invalid provenance
zettel migrate                               # convert pre-provenance notes (status keys)
zettel stats                                 # show counts, tag distribution, and connectivity
zettel serve [--bind ADDR] [--access MODE]   # serve this knowledge base over MCP
zettel docs [topic]                          # show the bundled documentation
zettel prime                                 # print what zettel is, for an agent's context

How it works

Each note is one markdown file with YAML frontmatter:

---
title: Connection pooling causes stale reads
tags: [bug, postgres]
links: [b7c1]
provenance: agent:summary
---

After failover, the pool reuses sockets bound to the old primary.
See [[b7c1]] for the workaround.

<!-- prov agent:inference -->
The 2026-08-02 retry storm probably started here.
<!-- /prov -->

<!-- prov human:cody -->
Confirmed with the infra team.
<!-- /prov -->

The note ID is the filename stem, so the frontmatter does not repeat it. Zettel keeps the notes in one flat .zettel/ directory:

.zettel/
  a3f2-connection-pooling-causes-stale-reads.md
  b7c1-workaround-force-new-connection.md

Notes connect through the frontmatter links field and inline [[id]] references. Zettel walks the note graph. It computes backlinks, finds the orphan notes, shows the neighborhood of a note, and checks for broken links.

Every piece of text has a provenance. The frontmatter provenance: key sets the note default; a <!-- prov ... --> marker overrides it for one section. The origins:

  • human[:name] — a person wrote it.
  • agent[:kind] — an agent wrote it: a summary of sources, an index, or an inference (a new claim not present in the sources).
  • citation[:source] — quoted verbatim; the source is a note ID or a src=<url> attribute. A citation of a note is a link-graph edge.
  • No provenance means unknown. Unknown is never upgraded to human, so an agent that forgets the label cannot mint human-authored text.

A human approves agent content with zettel note review <id> --approve, which writes a reviewed= stamp. A later reader filters by all of this: zettel read --provenance human,citation,reviewed returns only the text a human wrote, quoted, or vouched for. Nothing verifies a label against what actually wrote the span. Reading the files directly gives the same labels and the same caveat.

Composed stores

A knowledge base can link into others. Declare them in stores.yml:

format: 2
stores:
  - alias: project
    path: ../project                            # this machine
  - alias: handbook
    git: https://example.com/org/handbook       # a git repository
  - alias: archive
    blob: https://example.com/notes             # an https prefix with an index.txt

zettel store sync fetches the remote stores into a local cache. It is the only command that reaches the network.

A reference then names the store. Write [[project:a3f2]] in a body, project:a3f2 in links:, or citation:project:a3f2 in a provenance marker. A reference with no alias stays local.

The declarations set the direction. A personal knowledge base declares the repositories that it annotates. A repository does not declare the personal knowledge base. It cannot: the target does not exist for the other users who clone the repository. Two repositories can declare each other, because each one is equally reachable.

Each command runs from one store. It reads that store and the stores that the store declares. Thus one note has different backlinks in different stores. Dependency stores are read-only.

Serving over MCP

zettel serve offers the same knowledge base to a Model Context Protocol client. The library answers both interfaces, so the server returns what the CLI returns.

zettel serve                        # speak MCP on stdin and stdout
zettel serve --bind 127.0.0.1:7431  # serve over HTTP for a client that connects
zettel serve --access read-write    # also allow note creation

The server is read-only by default. With --access read-write it stamps every note it writes as agent-written. It refuses any other provenance, and it never exposes approval. A served store has no authentication: bind it to 127.0.0.1, or put a proxy that authenticates in front of it.

Documentation

Run zettel docs to read the same documentation from the binary.

Related

  • tisket — issue tracker. Markdown issues with YAML frontmatter, in the repository
  • almanac — agent skill index, over pluggable sources
  • gaff — context-lifecycle handler for coding agents
  • missouri — end-to-end tests as directed graphs of filesystem states
  • mdstore — the frontmattered markdown library zettel stores notes with

License

MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zttl-0.2.4.tar.gz (97.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zttl-0.2.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl (8.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64musllinux: musl 1.1+ x86-64

zttl-0.2.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (7.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64musllinux: musl 1.1+ ARM64

zttl-0.2.4-py3-none-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

zttl-0.2.4-py3-none-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file zttl-0.2.4.tar.gz.

File metadata

  • Download URL: zttl-0.2.4.tar.gz
  • Upload date:
  • Size: 97.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttl-0.2.4.tar.gz
Algorithm Hash digest
SHA256 35c43440330d0c641934a9b2504e8ab118db4d01603c97caf2079f9ac5fe6360
MD5 fa599ffd17d96a39833e12fcc4c5a295
BLAKE2b-256 577acd1077fccbf9663caa19410873e050548bbc0961f2f937b908da1897fb84

See more details on using hashes here.

File details

Details for the file zttl-0.2.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: zttl-0.2.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttl-0.2.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aea2794af40092d6c0a6ef2b0688f00018e1870748b747c59988ca379e21a673
MD5 52a5b9822f6f1d6ef099276031f7a454
BLAKE2b-256 1c0ded035de42db9a841223832c0b56a17d7e025ae0ab4b8592149ed66f68933

See more details on using hashes here.

File details

Details for the file zttl-0.2.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: zttl-0.2.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttl-0.2.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed665d372d88b92f47b8f7b7fa109f340091872cb408a864c15fce5d951d83b1
MD5 1d5b59226a4d54977e37bbfa3c881b83
BLAKE2b-256 8972b1ec25e496d1dc8e88bf23006feee4befc0c45791e2b015e40a12366ea51

See more details on using hashes here.

File details

Details for the file zttl-0.2.4-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttl-0.2.4-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttl-0.2.4-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ed4bd99f8bddfdd61053441f9d63a638852b0847719c0af59980c8222b2bd3b
MD5 6a711981059742117c3c2a23d59024f0
BLAKE2b-256 45a10fb093cb82af2235631aa5d78301d074d6a8a83f272a3492948e5293023f

See more details on using hashes here.

File details

Details for the file zttl-0.2.4-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: zttl-0.2.4-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttl-0.2.4-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3814fbfc755671931b9d9bad6cbc2c6bcdd5383d5674d6204ef0b8696f3bd3bb
MD5 f0e85690467062dffc1cadc1ad14a2c2
BLAKE2b-256 80cf8303f48489d97e7823e977ad2ac029e7f1f329b3c6fbfd83406c4359e26d

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.5

5 files

This release

0.2.4 This release

5 files

0.2.3

5 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page