the signals and their derived score are provisional and subject to change.
validate manually before sharing.
da86242e0364c28420901416ee3bbc5c58673ba596c8060cf2d51fbcb7b74fe47352b75cfc2e0a05Authored: 5 days ago (Wed, 9 Sep 2026 16:18:47 +0000)Match: Claude-Session: https://claude.ai/code/session_012rY1F8ahufDDsxhRczF5y8e5f7304769d00bcdede1211b3eca9238181e2ebdAuthored: 1 week ago (Tue, 1 Sep 2026 19:57:34 +0000)Match: Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>efbdd039aebbbe62ddc39437cbc8d6efff3095edAuthored: 1 week ago (Tue, 1 Sep 2026 11:35:23 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>f126c6c7f84e8217c2103486ea7f7d69e27da650Authored: 2 weeks ago (Mon, 31 Aug 2026 20:57:52 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>907c8d4cfb0742713b2a2d27bdbe2775b7f8cad2Authored: 2 weeks ago (Mon, 31 Aug 2026 20:46:53 +0000)Match: Claude-Session: https://claude.ai/code/session_01JCTBfqkYptZuoVssmv4C5ka98279f9e423d74a7431af084e492dc072a7bd0cAuthored: 2 weeks ago (Mon, 31 Aug 2026 20:39:13 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>4c9819d9512e12291d3dee1ab5893d5377fa6690Authored: 2 weeks ago (Mon, 31 Aug 2026 20:31:09 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>d55b174757fd0fb135536e531c112299c0507bc1Authored: 2 weeks ago (Mon, 31 Aug 2026 18:32:08 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>6bb3ff88caec09d048a7f1dba030da8a6ed8453bAuthored: 2 weeks ago (Mon, 31 Aug 2026 18:30:32 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>81196c37df5a6631533c138057f5150bf4b198e5Authored: 2 weeks ago (Mon, 31 Aug 2026 18:26:39 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>81c9000dc61ce012873681918028c6307ef119f9Authored: 2 weeks ago (Mon, 31 Aug 2026 18:20:48 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>253126e715386aa8554351a2051c32769eac922aAuthored: 2 weeks ago (Sat, 29 Aug 2026 09:51:18 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>67412ce5db7bcbf1b6e712d6573dca2fe5ceda16Authored: 2 weeks ago (Thu, 27 Aug 2026 22:00:35 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>fdb855606b6a6a417cde7ea970e047438cd3d9b8Authored: 2 weeks ago (Thu, 27 Aug 2026 21:41:35 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>b9b0abdfbdb8b576c3ea75bba2d5cf1ff2095fb0Authored: 1 month ago (Thu, 13 Aug 2026 10:36:15 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>d97fe55ed094f2b99631d180faf1d5abecdbfaa1Authored: 4 months ago (Mon, 20 Apr 2026 16:31:31 +0000)Match: Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>3992a21dc9083bade8d08376444a4356bf60867dAuthored: 5 months ago (Tue, 14 Apr 2026 18:56:42 +0000)Match: Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>3f7b0c83b119ad79e7c56971a156e583934a9ee6Authored: 5 months ago (Tue, 14 Apr 2026 18:47:21 +0000)Match: Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>0ffe310f7b0819e5b1484d5bdf210cca4317281dAuthored: 7 months ago (Fri, 13 Feb 2026 03:07:05 +0000)Match: Co-authored-by: Amp <amp@ampcode.com>SKILL.mdTool: unspecified# weave
Entity-level semantic merge driver for Git. Resolves conflicts at the
function/class level instead of the line level, so two changes to different
functions in the same file never conflict.
## Setup
```bash
weave setup # this repo: registers weave as the merge driver + .gitattributes
weave setup --global # every repo on this machine, no per-repo step
weave setup --local # this repo only, writes .git/info/attributes instead
```
`weave setup` auto-detects the `weave-driver` binary, docs/llms.txtTool: unspecified# weave
> Entity-level semantic merge driver for Git. Resolves conflicts at the function and class level using tree-sitter.
## Overview
weave replaces git's line-level merge with entity-level merge. It parses all three versions (base, ours, theirs) with tree-sitter, extracts functions/classes/methods, matches them by name and structural hash, and merges per-entity instead of per-line.
Two developers editing different functions in the same file? No conflict. Git would flag this as a conflict because the none