SCAR — version control for negative knowledge (deadends, fences, landmines)
Project description
SCAR — Version Control for Negative Knowledge
Git records what your codebase is. Nothing records what it refused to be.
SCAR is a git-native system for capturing, anchoring, and enforcing the negative knowledge of a codebase — the dead ends, the load-bearing weirdness, the invisible tripwires — and surfacing it at the exact moment someone (human or AI agent) is about to step on it.
The one-liner
Every codebase is a battlefield where the bodies have been removed. SCAR puts the markers back.
The three primitives
| Type | Meaning | Example |
|---|---|---|
deadend |
We tried X. It failed because Y. Don't retry unless Z changes. | "We tried Redis for session storage in 2024-03. Eviction under memory pressure logged users out mid-checkout. Don't retry unless sessions become re-derivable." |
fence |
This code looks wrong. It is intentional. Here's why. | "Yes, this retry loop sleeps 7 seconds, not 5. The upstream vendor's rate limiter has a 6-second window they don't document." |
landmine |
Changing A breaks B in a way nothing in the code tells you. | "The CSV export in reports/ depends on the column order of this SELECT. Reorder it and Finance's reconciliation pipeline silently corrupts." |
Why now
AI agents write an increasing share of all code. Agents have zero hallway memory. They see a weird retry loop and "clean it up." They see a missing cache layer and re-add the library that was removed after a data-corruption incident. They retry, across thousands of sessions, the exact approaches that already failed — because the repository only records positive space.
Humans at least had tribal knowledge. Agents have none. And as agents author more of the code, the negative knowledge stops even entering human memory — it evaporates entirely.
The flip side: agents also solve the historically fatal flaw of every knowledge-capture system — authorship cost. Nobody writes documentation after a failure. But an agent that just tried an approach and abandoned it can write a deadend scar in milliseconds, for free, at the moment of maximum context.
Agents created the urgency. Agents remove the adoption barrier. That's the wedge.
How it works
.scars/
├── 0001-redis-sessions.deadend.md
├── 0002-vendor-retry-window.fence.md
└── 0003-csv-column-order.landmine.md
- Scars are small structured Markdown files with YAML frontmatter, tracked in git, reviewed in PRs like code.
- Each scar is anchored to code via paths, symbol names, and content fingerprints — not line numbers — so anchors survive refactors.
- Enforcement happens at the moment of action:
scar check <path>— CLI gate for humans and CI- Agent hook (Claude Code
PreToolUse, etc.) — injects relevant scars into the agent's context before it edits the file - MCP server — planned, so any agent can query the scar graph
scar harvest— mines git history (reverts, add-then-remove dependencies, reopened issues) to propose candidate scars for codebases starting from zero.- Scars are advisory, never blocking, by default — and stale knowledge has a lifecycle:
scar challenge <id> --reasondisputes a scar (it still fires, marked as disputed),scar archive <id> --reasonretires it (never fires again;scar whykeeps the history), andscar lint/scar statussurface any scar whosereview_afterdate has passed. Nothing expires automatically — archiving is a human decision, same governance as promotion.
Install
uv tool install scar-cli # or: pipx install scar-cli
Zero runtime dependencies. Python ≥3.10.
Quickstart
cd your-repo
scar init # creates .scars/ with template + README
# write your first scar
cp .scars/template.md .scars/candidates/redis-sessions.md
$EDITOR .scars/candidates/redis-sessions.md
scar lint # validate format
scar promote redis-sessions.md # human review gate: candidate -> active
# from then on
scar check src/auth/ # what's anchored here?
scar why src/auth/ # full history of pain for this path
scar harvest # mine git history for candidate scars
Wiring the Claude Code hook (auto-injects scars before any agent edit):
scar hook install
Quality discipline
- Candidates vs active: agents and
scar harvestonly ever write to.scars/candidates/. A human promotes (scar promote) — nothing enters active enforcement without review. - Expiry conditions: every scar can declare when it stops being true ("valid until sessions are re-derivable"). Stale knowledge is a bug, not a feature.
- Validated in use: in a 14-day agent auto-authorship trial, agents drafted 13 keepable scars across 3 repos with 0% false positives — including one that caught a real parser bug in this repo and fired on the exact edit that fixed it.
Read more
- IDEA.md — the full pitch: problem, solution, why this, why now, why me
- SPEC.md — scar format, anchoring model, CLI surface, agent integration
- STRESS-TEST.md — adversarial analysis: failure modes, loopholes, objections, premortem
- ROADMAP.md — phased plan from prototype to product
Status & expectations
Working software, shared as-is. CLI v0 is shipped: 9 subcommands, 63 tests, zero dependencies, CI-enforced. It runs daily across the author's repos (where it has already caught real bugs — see .scars/ in this very repo for live examples).
This is personal infrastructure published as a gift to the OSS community, not a product. Issues and PRs are welcome and read with interest, but there is no support SLA and no roadmap promise. If it's useful to you, that's the whole point.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scar_cli-0.2.0.tar.gz.
File metadata
- Download URL: scar_cli-0.2.0.tar.gz
- Upload date:
- Size: 75.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b7429f9f8d9cf5d68aa77d00e81f72ae001b4c030df1a56005ead3d58d414d9
|
|
| MD5 |
b4d2eb9cf1eae25295b628a05f1b687a
|
|
| BLAKE2b-256 |
081d4bc2d54fb6503568d3da767824b7be5e9647d771e1f1b63e40e6acd0a744
|
Provenance
The following attestation bundles were made for scar_cli-0.2.0.tar.gz:
Publisher:
release.yml on Daily-Nerd/Scar
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scar_cli-0.2.0.tar.gz -
Subject digest:
8b7429f9f8d9cf5d68aa77d00e81f72ae001b4c030df1a56005ead3d58d414d9 - Sigstore transparency entry: 1798714901
- Sigstore integration time:
-
Permalink:
Daily-Nerd/Scar@230a213dcc8fe40e4ef8a2870cb056f1a0f51d01 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Daily-Nerd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@230a213dcc8fe40e4ef8a2870cb056f1a0f51d01 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scar_cli-0.2.0-py3-none-any.whl.
File metadata
- Download URL: scar_cli-0.2.0-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fad53e13d3e61cc3c3ee7fe55bbbb5a702b0b3774f556b7ed65aac9224a87050
|
|
| MD5 |
f42518a70f3c5568d037458e54fd7121
|
|
| BLAKE2b-256 |
1bfd6ac0e5f697ecffc9af085478becaf6cf1df74d017bf1471b9e8359ad0567
|
Provenance
The following attestation bundles were made for scar_cli-0.2.0-py3-none-any.whl:
Publisher:
release.yml on Daily-Nerd/Scar
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scar_cli-0.2.0-py3-none-any.whl -
Subject digest:
fad53e13d3e61cc3c3ee7fe55bbbb5a702b0b3774f556b7ed65aac9224a87050 - Sigstore transparency entry: 1798715250
- Sigstore integration time:
-
Permalink:
Daily-Nerd/Scar@230a213dcc8fe40e4ef8a2870cb056f1a0f51d01 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Daily-Nerd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@230a213dcc8fe40e4ef8a2870cb056f1a0f51d01 -
Trigger Event:
push
-
Statement type: