.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ataraxy-labs/weave
home/skills/ataraxy-labs/weave
ataraxy-labs avatar

weave

byataraxy-labs· 5 skills

Stars

1.2k

Forks

35

Category

Frontend Development

View on GitHub

TL;DR

Entity-level semantic merge driver for Git. Resolves conflicts at the function/class level instead of lines.

How to install weave?

ataraxy-labs/weave
$npx -y skills add ataraxy-labs/weave --skill weave

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/ataraxy-labs/weave" --skill "ataraxy-labs/weave"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/ataraxy-labs/weave" that are relevant to the current task. Run `npx skills add "https://github.com/ataraxy-labs/weave"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1> **Part of the [Ataraxy Labs](https://ataraxy-labs.com) stack** — agent-native infrastructure for software development. See also: [sem](https://ataraxy-labs.com/sem) (semantic version control) · [inspect](https://github.com/Ataraxy-Labs/inspect) (semantic code review) · [opensessions](https://github.com/Ataraxy-Labs/opensessions) (tmux sidebar for coding agents).
2>
3> Read the manifesto: https://ataraxy-labs.com/#thesis · Essays: https://ataraxy-labs.com/blogs · LLMs: https://ataraxy-labs.com/llms.txt
4 
5<p align="center">
6 <img src="assets/banner.svg" alt="weave" width="600" />
7</p>
8 
9<p align="center">
10 <strong>Entity-level semantic merge driver for Git.</strong><br>
11 Resolves merge conflicts that Git can't by understanding code structure via tree-sitter.
12</p>
13 
14<p align="center">
15 <a href="#install">Install</a> ·
16 <a href="#how-weave-fixes-this">How It Works</a> ·
17 <a href="#mcp-server">MCP Server</a> ·
18 <a href="https://github.com/Ataraxy-Labs/weave/releases/latest">Releases</a>
19</p>
20 
21<p align="center">
22 <a href="https://github.com/Ataraxy-Labs/weave/releases/latest"><img src="https://img.shields.io/github/v/release/Ataraxy-Labs/weave?color=blue&label=release" alt="Release"></a>
23 <a href="https://formulae.brew.sh/formula/weave"><img src="https://img.shields.io/badge/homebrew-weave-orange" alt="Homebrew"></a>
24 <img src="https://img.shields.io/badge/rust-stable-orange" alt="Rust">
25 <img src="https://img.shields.io/badge/tests-124_passing-brightgreen" alt="Tests">
26 <img src="https://img.shields.io/badge/version-0.3.0-blue" alt="Version">
27 <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-yellow" alt="License"></a>
28 <img src="https://img.shields.io/badge/languages-28-blue" alt="Languages">
29</p>
30 
31<p align="center">
32 <img src="assets/merge-animation.gif" alt="Weave merge animation: two branches add different functions, git conflicts, weave merges cleanly" width="700" />
33</p>
34 
35## The Problem
36 
37Git merges by comparing **lines**. When two branches both add code to the same file — even to completely different functions — Git sees overlapping line ranges and declares a conflict:
38 
39```
40<<<<<<< HEAD
41export function validateToken(token: string): boolean {
42 return token.length > 0 && token.startsWith("sk-");
43}
44=======
45export function formatDate(date: Date): string {
46 return date.toISOString().split('T')[0];
47}
48>>>>>>> feature-branch
49```
50 
51These are **completely independent changes**. There's no real conflict. But someone has to manually resolve it anyway.
52 
53This happens constantly when multiple AI agents work on the same codebase. Agent A adds a function, Agent B adds a different function to the same file, and Git halts everything for a human to intervene.
54 
55## How Weave Fixes This
56 
57Weave replaces Git's line-based merge with **entity-level merge**. Instead of diffing lines, it:
58 
591. Parses all three versions (base, ours, theirs) into semantic entities — functions, classes, JSON keys, etc. — using [tree-sitter](https://tree-sitter.github.io/)
602. Matches entities across versions by identity (name + type + scope)
613. Merges at the entity level:
62 - **Different entities changed** → auto-resolved, no conflict
63 - **Same entity changed by both** → attempts intra-entity merge, conflicts only if truly incompatible
64 - **One side modifies, other deletes** → flags a meaningful conflict
65 
66The same scenario above? Weave merges it cleanly with zero conflicts — both functions end up in the output.
67 
68## Weave vs Git Merge
69 
70| Scenario | Git (line-based) | Weave (entity-level) |
71|----------|-----------------|---------------------|
72| Two agents add different functions to same file | **CONFLICT** | Auto-resolved |
73| Agent A modifies `foo()`, Agent B adds `bar()` | **CONFLICT** (adjacent lines) | Auto-resolved |
74| Both agents modify the same function differently | CONFLICT | CONFLICT (with entity-level context) |
75| One agent modifies, other deletes same function | CONFLICT (cryptic diff) | CONFLICT: `function 'validateToken' (mo

Preview

ataraxy-labs/weaveataraxy-labs/weave

$ npx -y skills add ataraxy-labs/weave --skill weave

▸ installing to .claude/skills…

✓ weave ready

Repoataraxy-labs/weave
TypeSkills
CategoryFrontend Development
ForDeveloperDesigner
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. vercel-labs avatarreact-best-practicesReact and Next.js performance optimization guidelines from Vercel Engineering.SkillsJul 2026587k29k
  2. heygen-com avatarhyperframes-registryInstall, discover, and wire registry blocks and components into HyperFrames compositions.SkillsJul 2026267k38k
  3. vercel-labs avatarcomposition-patternsReact composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing…SkillsJul 2026266k29k
  4. shadcn avatarshadcnManages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces.SkillsJul 2026257k120k
  5. larksuite avatarlark-apps妙搭(Spark/Miaoda)应用开发与托管:应用创建、本地全栈开发、云端生成迭代、创意设计(UI mockup / 可交互原型 / 线框图 / 落地页 / 仪表盘 / 幻灯片 deck / 视觉探索)、AI相关能力和飞书平台能力或者其他外部能力集成、日志/Trace/监控指标/PV/UV…SkillsJul 2026235k16k
  6. leonxlnx avatarimage-to-code-skillElite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then…SkillsJul 2026175k68k