Skip to main content
ClaudeWave

Out-of-band code annotations for AI agents and humans. Keeps the why next to the code without putting it in the code.

MCP ServersOfficial Registry1 stars0 forksGoAGPL-3.0Updated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (AGPL-3.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/21/2026
Install in Claude Code / Claude Desktop
Method: Docker · ghcr.io/koment-dev/koment
Claude Code CLI
claude mcp add koment -- docker run -i --rm ghcr.io/koment-dev/koment
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "koment": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/koment-dev/koment"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<div align="center">

<img src="internal/ui/assets/koment-logo.svg" alt="koment comment bubble" width="104">

# koment

**Keep the _why_ next to your code — checked, so it can't quietly rot.**

[![Release](https://img.shields.io/github/v/release/koment-dev/koment?label=release)](https://github.com/koment-dev/koment/releases/latest)
[![CI](https://img.shields.io/github/actions/workflow/status/koment-dev/koment/ci.yml?branch=main&label=ci)](https://github.com/koment-dev/koment/actions/workflows/ci.yml)
[![OpenSSF Scorecard](https://img.shields.io/ossf-scorecard/github.com/koment-dev/koment?label=openssf+scorecard)](https://scorecard.dev/viewer/?uri=github.com/koment-dev/koment)
[![Open VSX](https://img.shields.io/open-vsx/v/koment/koment-dev?label=open%20vsx)](https://open-vsx.org/extension/koment/koment-dev)
[![License](https://img.shields.io/github/license/koment-dev/koment)](https://github.com/koment-dev/koment/blob/main/LICENSE)
[![Annotations](https://img.shields.io/badge/annotations-browse-brightgreen)](https://why.koment.dev/)

</div>

## The problem

Someone wrote `retry 5 times` instead of 3, and there was a good reason. Six
months later nobody remembers it, so it gets "simplified" back to 3 and the bug
returns.

A comment was supposed to prevent that. Comments rot: they sit next to the code
without being attached to it, and when the code changes nothing tells you the
comment just became a lie. Your AI agent then reads that lie and acts on it.

## What koment does

You record the reason **outside** the source, anchored to the exact lines it
explains. Then koment watches those lines. Change them, and it says so:

```console
$ koment check
internal/auth/token.go
  drifted   gotcha        internal/auth/token.go  01KZN63VC5SZASDYJBMPDC03WB
    Without it, clients whose clock runs fast get logged out mid-request. Bit
    us in #412.
1 annotation across 1 file: 1 drifted
koment: 1 annotation no longer resolves; revisit it or update the anchor
```

Exit code 1. The build stops. Nobody silently inherits a reason that no longer
describes the code.

The records are YAML in `.koment/`, in your git repository. No database, no
service, no account. They review in the same pull request as the change that
motivated them.

**[See it running →](https://why.koment.dev/)** — koment's own annotations,
published by [a workflow you can copy](docs/guides/publish-annotations.md).

## For AI agents

This is where it earns its keep. Agents write explanatory comments constantly,
and they edit code without reading why it was written that way. koment makes
both of those fail *immediately*, while the agent is still working:

- **It writes a comment** → the edit is refused, with instructions to record the
  reasoning as an annotation instead.
- **It edits annotated code without checking** → the turn cannot finish until
  the annotation is revisited.

One MCP server serves Claude Code, Cursor, Codex, opencode, Hermes, Zed and the
rest, so every agent reads the same reasoning through the same interface.
[Set yours up →](docs/guides/agents/)

Humans get the same loop in the editor: a squiggle under the comment, and a
quick fix offering *convert to annotation* or *keep it, on the record*.

## Install

```bash
brew install koment-dev/tap/koment
```

<details>
<summary>Other ways</summary>

```bash
mise use -g github:koment-dev/koment          # mise
go install github.com/koment-dev/koment/cmd/koment@latest
docker run --rm -v "$PWD:/repo" -w /repo ghcr.io/koment-dev/koment:3 check
```

In GitHub Actions, `uses: koment-dev/koment@v3`. Or take a checksum-listed
binary for Linux, macOS or Windows on amd64/arm64 from the
[latest release](https://github.com/koment-dev/koment/releases/latest) — every
other channel is built from those same artifacts.

</details>

## Try it in a minute

From inside any git repository:

```bash
koment bootstrap
```

That sets up `.koment/` and wires whichever agents you use. Now record a reason
and watch it get checked:

```bash
koment add src/auth.go \
  --excerpt 'if token.Expiry.Before(now.Add(-clockSkew)) {' \
  --kind gotcha \
  --title 'Skew subtraction keeps fast clocks logged in' \
  --body 'Without it, clients whose clock runs fast get logged out
          mid-request. Bit us in #412.'

koment check     # ok
```

**Now edit that line and run `koment check` again.** It fails, and tells you
which reasoning no longer matches its code. That is the entire product; the rest
is delivering it to the people and agents who need it.

```bash
koment ui        # read them in a browser
koment show src/auth.go
```

## How it works

1. You annotate a snippet. koment records the prose, exact excerpt, surrounding
   source context, the commit you were on, and who you are.
2. The record lands in `.koment/annotations/<id>.yaml`, one file per
   annotation. Concurrent agents create independent files instead of replacing
   one shared list.
3. Resolution searches the current file for that excerpt and produces exactly
   one status:

   | | meaning | build |
   |---|---|---|
   | `ok` | found where it was last seen | passes |
   | `ambiguous` | several contextual candidates remain | **fails** |
   | `drifted` | file exists, the annotated code is gone | **fails** |
   | `orphaned` | the file is gone | **fails** |

4. `koment check` exits non-zero on `ambiguous`, `drifted` or `orphaned`. That
   is the whole mechanism: uncertain rationale is worse than no annotation, so
   it has to be impossible to ignore.
5. When it fails, `koment reanchor <id> --excerpt '<new text>'` repoints it —
   keeping its id and creation date, recapturing context and the line for you.
   Nothing re-attaches automatically; a person confirms the reasoning still holds.

Anchoring is by **excerpt**, never by line number — line numbers rot on the next
edit above them. The commit hash *is* recorded, but only to reconstruct history;
it never decides whether an annotation still applies. Those are two different
questions with two different mechanisms.

Local writes change the checkout you are already reviewing. Served writes never
touch a replica or push a default branch: they create an exact annotation on a
deterministic branch and return only after its pull request exists. Static
publications remain immutable and read-only.

## Three ways to run it

Pick one. Each is a place to stop, not a step you have to take, and **moving
between them is not a migration** — all three read the same `.koment/` in git,
so there is nothing to export, import or back up.

| | you run | you get |
|---|---|---|
| **local** | the CLI, `koment ui --write`, and `koment mcp --write` | humans and agents read and write the same checked records. Nothing to host. |
| **published** | [one workflow file](docs/guides/publish-annotations.md) → GitHub Pages | everyone reads the annotations in a browser. No server, no auth to design, no cost. |
| **served** | the container or the [Helm chart](#kubernetes) | authenticated, commit-stamped GitHub snapshots for several repositories, cross-repository search, reviewed annotation PRs, metrics |

## Several repositories

One deployment serves many. Identity is assigned independently of provider path,
and every refresh resolves a branch to one immutable commit before replacing a
repository's active snapshot:

```yaml
# yaml-language-server: $schema=https://raw.githubusercontent.com/koment-dev/koment/main/schema/server.schema.json
repositories:
  - id: payments
    name: Payments API
    provider: github
    remote: you/payments
    default_branch: main
    default: true
  - id: web
    name: Customer Web
    provider: github
    remote: you/web
    default_branch: main
```

The service starts only when a non-loopback listener has either trusted-proxy
identity or scoped bearer credentials. Private repositories and reviewed writes
also require a GitHub token. The [Helm chart documentation](distribution/helm/koment/README.md)
shows the secret formats and boundary.

Local commands need none of this configuration — koment finds the owning
checkout by walking up from the working directory.

## Kubernetes

koment publishes an **OCI** Helm chart to `oci://ghcr.io/koment-dev/charts/koment`:

```bash
helm install koment oci://ghcr.io/koment-dev/charts/koment \
  --set repositories[0].remote=you/your-repo \
  --set metrics.enabled=true \
  --set metrics.serviceMonitor.enabled=true \
  --set metrics.dashboard.enabled=true
```

The application port authenticates source, rationale, UI and MCP; only liveness
and readiness are public. Metrics use a separate listener so an ingress cannot
accidentally expose them with application authentication. The chart includes a
Grafana dashboard, ServiceMonitor, hardened pod defaults, optional NetworkPolicy
and disruption controls, and a digest-pinned `helm test` probe.

## Configuration

Every flag can be set from the environment. `--flag-name` becomes
`KOMENT_FLAG_NAME`, and an explicit flag always wins.

| | |
|---|---|
| `KOMENT_CONFIG` | strict served repository YAML |
| `KOMENT_CREDENTIALS_FILE` | secret file of SHA-256 bearer hashes and repository scopes |
| `KOMENT_GITHUB_TOKEN_FILE` | provider token file for private reads and reviewed writes |
| `KOMENT_LISTEN` | local UI or unified service address |
| `KOMENT_HUMAN_WRITES` | allow identities from the trusted OIDC proxy to create reviewed annotations |
| `KOMENT_TRUSTED_PROXIES` | CIDRs allowed to assert forwarded human identity |
| `KOMENT_SYNC_INTERVAL` | provider snapshot refresh interval |
| `KOMENT_METRICS` | separate metrics listener; off unless set |
| `KOMENT_WRITE` | enable local UI or stdio MCP mutations |
| `KOMENT_OUT` | static publication output directory |

Git is the only authoritative record. Local reads resolve the YAML directly
against the working tree; disposable read models cannot restore or overwrite
Git.

`koment <command> --help` lists every flag alongside its variable.

## Work where the code lives

The reference [VS Code extension](integrations/editor
adrai-agentsannotationsclaude-codecode-documentationcodexcommentsgohermes-agentmcpvscode

What people ask about koment

What is koment-dev/koment?

+

koment-dev/koment is mcp servers for the Claude AI ecosystem. Out-of-band code annotations for AI agents and humans. Keeps the why next to the code without putting it in the code. It has 1 GitHub stars and its last recorded update is dated 2026-08-20.

How do I install koment?

+

You can install koment by cloning the repository (https://github.com/koment-dev/koment) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is koment-dev/koment safe to use?

+

Our security agent has analyzed koment-dev/koment and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains koment-dev/koment?

+

koment-dev/koment is maintained by koment-dev. The last recorded GitHub activity is dated 2026-08-20, with 4 open issues.

Are there alternatives to koment?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy koment to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: koment-dev/koment
[![Featured on ClaudeWave](https://claudewave.com/api/badge/koment-dev-koment)](https://claudewave.com/repo/koment-dev-koment)
<a href="https://claudewave.com/repo/koment-dev-koment"><img src="https://claudewave.com/api/badge/koment-dev-koment" alt="Featured on ClaudeWave: koment-dev/koment" width="320" height="64" /></a>

More MCP Servers

koment alternatives