cd /news/ai-safety/from-ai-logger-to-ai-governance-laye… Β· home β€Ί topics β€Ί ai-safety β€Ί article
[ARTICLE Β· art-75819] src=dev.to β†— pub= topic=ai-safety verified=true sentiment=Β· neutral

From AI logger to AI governance layer, what 5,600 downloads taught us about Chron

Chron, an MCP server that logs AI coding sessions to a tamper-evident SQLite database, has reached 5,600 installs. The project is evolving from a logging tool to an AI governance layer, adding an Attention Score to help developers triage sessions by secret exposure, sensitive code changes, and compliance findings.

read4 min views1 publishedJul 27, 2026

When we shipped Chron six months ago, the pitch was simple: every AI conversation should leave a timestamped, tamper-evident record. Developers installing AI coding tools had no answer to the question "what did the AI actually do?" Chron was that answer.

5,600 installs later, the question has changed.

It's no longer "did we log it?" β€” most teams using Chron have solved that. The new question is: which sessions should I look at first?

That question is harder, and it's where Chron is heading next.

Chron is an MCP server that runs locally alongside Claude Code, Cursor, Windsurf, and Codex. Every message, every file change, every tool call gets logged to a local SQLite database with a precise timestamp and a tamper-evident hash chain.

chron history
8f3a7c9e  claude-code  API refactor         2026-07-19  14 events
b91c2a11  cursor        Contract review       2026-07-18  8 events
3d0a5f22  claude-code  Auth middleware fix   2026-07-17  31 events
chron verify 8f3a

On top of that, chron review

runs a deterministic compliance analysis across four frameworks:

chron review --framework=soc2 --output=evidence.html

The output is a printable HTML evidence package β€” not a compliance opinion, but session evidence a control owner can actually use.

One of the things we deliberately got right: Chron doesn't claim to "cover" a framework. It covers specific controls that are observable from AI session activity. Everything else β€” policy documentation, physical access, contractual obligations β€” requires evidence from other sources.

chron review --framework=nist-ai-rmf --full-map
NIST AI RMF β€” Full Control Coverage Map

  Covered by session evidence (12)
  ────────────────────────────────
  GOVERN 1.1   AI policy and governance changes    rule: nist-ai-rmf.govern.ai_policy_change
  MAP 3.5      Sensitive data in AI sessions       rule: nist-ai-rmf.map.sensitive_data_in_session
  MEASURE 2.7  AI monitoring modifications         rule: nist-ai-rmf.measure.ai_monitoring_change
  ...

  Needs additional evidence (28)
  ────────────────────────────────
  GOVERN 2.1   Organizational roles defined        source: policy_docs
  MAP 2.2      Scientific findings documented      source: policy_docs
  ...

  Manual review required (18)
  ────────────────────────────────
  GOVERN 3.1   Feedback mechanisms in place        human judgement required
  ...

  Out of scope (8)
  ────────────────────────────────
  GOVERN 5.2   Organizational policies current     not observable from session logs

66 NIST AI RMF subcategories. 12 covered by Chron session evidence. 54 classified honestly. The disclaimer at the top of every report: "Covered does not mean compliant."

At 5,600 installs, the missing piece is triage.

When you have 200 sessions logged, you don't need a list β€” you need a signal. Which of these sessions involved something worth a second look?

The next release adds an Attention Score to every session: a deterministic 0–100 score computed from three signal categories.

Secret exposure β€” was a credential, API key, or token detected in the session? (+30)

Sensitive code changes β€” did the AI modify auth, production config, infrastructure, or AI oversight code? (up to +30, based on path patterns)

Open compliance findings β€” does this session have unresolved findings from chron review

? Severity-weighted, capped at +30.

The result is visible everywhere you already look:

chron history
8f3a7c9e  claude-code  API refactor         [ATTENTION: 86]  ●●●●
3d0a5f22  claude-code  Auth middleware fix  [ATTENTION: 72]  ●●●○
b91c2a11  cursor        Contract review       [ATTENTION: 12]  ●○○○
chron risk --since=30d
Sessions requiring attention  (last 30 days)

  1.  8f3a7c9e  claude-code  API refactor         Score: 86
      ↳ secret detected in session
      ↳ auth code modified (3 files)
      ↳ 2 unresolved SOC 2 findings (1 critical)

  2.  3d0a5f22  claude-code  Auth middleware fix  Score: 72
      ↳ access control code modified
      ↳ production config changed
      ↳ 1 unresolved ISO 27001 finding

No AI in the scoring path. Pure path matching + database queries. Same session, same score, every time.

The compliance question used to be "do we have logs?" Most teams can answer that today.

The question in 2026 is "did the AI touch anything that warrants a review?" That's a triage problem, not a logging problem. Attention Score is the answer.

After that: a static local dashboard β€” chron dashboard

β€” that generates an HTML snapshot with session list, scores, top reasons, open findings, and framework coverage. No server, no cloud account, no new dependencies. Same personality as the rest of Chron.

Chron is available on npm:

npm install -g chron-mcp
chron-mcp   # auto-configures Claude Code, Cursor, Windsurf

Source and docs: github.com/SirinivasK/chron

Chron logs every AI conversation to a local SQLite database you own. Nothing leaves your machine.

── more in #ai-safety 4 stories Β· sorted by recency
── more on @chron 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/from-ai-logger-to-ai…] indexed:0 read:4min 2026-07-27 Β· β€”