Skip to content

malikdraz/prooflog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProofLog

ProofLog is a local-first Rust + SQLite CLI that turns local Codex JSONL history and git state into a proof report for agent-assisted code changes.

prooflog proof --since main

Install

Homebrew is the intended release channel:

brew tap malikdraz/tap
brew install prooflog

Until the first Homebrew release is published, install from source:

git clone https://github.com/malikdraz/prooflog.git
cd prooflog
cargo install --path .

Requirements: stable Rust 1.80 or newer for source installs, Git, and local access to the Codex JSONL history you want to inspect.

See the installation guide for path overrides and troubleshooting.

What It Does

ProofLog gives a senior engineer a deterministic local answer to one question: is this agent-assisted change proven enough to review, merge, or hand off?

It summarizes evidence that is normally scattered across terminal output, Codex transcripts, git diffs, approvals, and notes:

  • changed files
  • relevant local Codex sessions
  • passed verification commands
  • unresolved failures
  • risky files or commands
  • a conservative READY, NOT READY, or UNKNOWN decision

ProofLog does not upload Codex history, git state, command output, or reports. It does not print raw transcript content by default.

Quickstart

Run these commands from the repository you want to inspect:

prooflog init
prooflog doctor
prooflog ingest --codex --codex-root ~/.codex
prooflog proof --since main

Markdown and JSON outputs are also available:

prooflog proof --since main --format md > prooflog.md
prooflog proof --since main --format json > prooflog.json

Example Output

PROOFLOG REPORT

Scope:
  repo: /home/user/src/example-project
  branch: feature/example-change
  since: main
  dirty: no

Changed:
  files: 18
  additions: 240
  deletions: 41
  docs only: no

Codex evidence:
Codex:
  relevant sessions: 3
  ambiguous sessions: 0

Verification:
  facts: 3
  passed: 2
  failed: 1
  unknown: 0

Failures:
  failure resolutions: 1
  unresolved: 1
  resolved: 0
  ambiguous: 0

Risks:
Risk:
  risk level: elevated
  risky files: 1

Decision:
  status: NOT READY
  reason: unresolved verification failure: session-a npm run lint

Next:
  resolve the listed verification failures and rerun proof

Commands

prooflog init
prooflog doctor
prooflog doctor --parser
prooflog ingest --codex
prooflog proof --since <REF>
  • init creates local config and initializes the SQLite database.
  • doctor checks local config, storage, Codex history, git context, and file permissions.
  • doctor --parser prints count-only parser diagnostics from local storage.
  • ingest --codex discovers local .jsonl history, preserves raw events, derives parser tables, and classifies verification/failure evidence.
  • proof --since <REF> correlates local proof evidence with git changes and emits text, Markdown, or JSON reports.

Exit Codes

prooflog proof --since <REF> returns:

  • 0 for READY
  • 1 for NOT READY
  • 2 for UNKNOWN
  • 3 for runtime ProofLog errors

Invalid argument errors use the CLI parser's standard non-zero behavior.

Current Status

Implemented now:

  • local config and SQLite initialization
  • owner-only config/DB permissions on Unix-like systems
  • doctor readiness checks
  • count-only parser diagnostics
  • Codex JSONL discovery and incremental raw ingestion
  • malformed-line and unknown-shape handling
  • raw/message/command-output FTS indexes for diagnostics
  • derived sessions, messages, commands, approvals, file changes, and proof facts
  • git context, changed-file detection, and session correlation
  • verification, failure, failure-resolution, risky-path, and risky-command classification
  • conservative READY / NOT READY / UNKNOWN decision engine
  • text, Markdown, and experimental JSON reports
  • obvious-secret redaction in report output

Non-Goals

ProofLog is not:

  • a dashboard
  • a cloud sync service
  • a multi-agent framework
  • a semantic search tool
  • an embeddings store
  • a Codex launcher
  • an approval controller
  • an AGENTS.md generator
  • a full observability platform

Project Docs

Design Principle

Every feature must improve:

prooflog proof --since main

If a feature does not make that command more trustworthy, faster, clearer, or easier to adopt, defer it.

About

Local-first Rust + SQLite CLI that turns local Codex JSONL and git state into PR-ready proof reports.

Resources

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors