Skip to main content
wr.fi

Why not just Git?

Fair question — every developer asks it. The honest answer: Git is the system of record for source code, and nothing here competes with that. wr.fi moves work in flight — the half-finished thing one AI session produced and the next tool, agent, or reviewer needs to continue. Most real handoffs use both: a wr.fi handoff often contains a repo link, plus the task, the workspace, and the review state Git was never built to carry.

Gitwr.fi
Unit of workA repository of filesA handoff: files + task + workspace + review state
Who writesDevelopers who've cloned and configuredAnyone with the URL — humans and AI agents, zero setup
Getting startedinit, remote, auth, cloneOne POST. The URL is the whole integration
Continuing workclone → read the code → reconstruct intent yourself?h hands the next agent intent, history, and how-to-write-back
Concurrent writersBranches + merge — powerful, manualexpectedVersion → conflict is a 409, never a silent overwrite; append never conflicts
The toolchainREADME prose, dotfiles, hopeA declared workspace manifest, rebuilt with per-item consent
ReviewPull requests (unmatched for code)One version-bound decision: approve / request changes — thumb-sized, no repo needed
HistoryCommit graph — richer than oursLinear versions with diffs and catch-up (?since=N)
Where it shinesThe system of record for source codeThe transport for work in flight between tools, sessions, and people

Where Git is simply better: branching and merging code, blame, bisect, the commit graph, code review at scale. If the work is a codebase and everyone touching it is a developer with a clone, use Git — that’s what it’s for.

Where Git quietly fails AI work: the recipient is often not a developer with a clone — it’s a sandboxed agent that can fetch a URL, or a reviewer on a phone. The work is often not a repo — it’s a document, an analysis, an app, a decision in progress. And the context Git strips (what’s been tried, what’s open, what tools the work ran on) is exactly what the next AI session needs first. That gap — clone vs. continue — is the product.

Same honesty policy as everywhere else: see the compatibility matrix for what’s verified, /conformance for the probe evidence, and /patterns for worked handoff recipes (several of which push repo links).