Skip to content
Development
Skill

/add-resolver

Add a format-specific resolver to GitWand core. Use this skill whenever someone wants to add support for a new file format, file extension, lockfile, config file type, or format-specific conflict resolution strategy. Triggers: "add resolver for .prisma", "handle composer.lock

From plugin
gitwand
1725 skills3 agents2 commands
Install
$ npx -y skills add devlint/GitWand --skill add-resolver --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/add-resolver

Context preview

The summary Claude sees to decide when to auto-load this skill.

Add a format-specific resolver to GitWand core. Use this skill whenever someone wants to add support for a new file format, file extension, lockfile, config file type, or format-specific conflict resolution strategy. Triggers: "add resolver for .prisma", "handle composer.lock

SKILL.md

add-resolver.SKILL.md
name: add-resolver
description: >
  Add a format-specific resolver to GitWand core. Use this skill whenever
  someone wants to add support for a new file format, file extension, lockfile,
  config file type, or format-specific conflict resolution strategy. Triggers:
  "add resolver for .prisma", "handle composer.lock conflicts", "resolve .tf
  files", "new format support", "add lockfile resolver", "teach GitWand about
  X files".

Skill: add-resolver

Guide the agent through adding a format-specific resolver to `packages/core` end to end — file creation, dispatcher wiring, tests, and docs — without missing any of the four required touch points.

---

Step 1 — Qualify the need

Answer these before writing any code:

1. **Format / extension?** (e.g. `.prisma`, `composer.lock`, `.tf`, `.toml`) 2. **Is it a lockfile?** If yes → confidence is `0.95` by convention. Lockfile conflicts are almost always trivially re-generable, so high confidence is appropriate. 3. **Resolution strategy?** Examples:

  • Structured config (key = value) → merge non-conflicting keys
  • Lockfile → accept one side; file is regenerable
  • Source code → be conservative, 0.70–0.80 max

4. **Browser-compatible parsing available?** `packages/core` must run in browsers — no Node.js imports (`fs`, `path`, `child_process`). If no parser lib is available, write a pure string-manipulation parser.

**Confidence score guidelines:**

| File type | Score | |---|---| | Lockfile | `0.95` | | Structured config (JSON, YAML, TOML, dotenv) | `0.85`–`0.90` | | Source code | `0.70`–`0.80` | | Never exceed `0.95` unless perfectly deterministic | — |

---

Step 2 — Create the resolver file

Create `packages/core/src/resolvers/<format>.ts`. Follow this exact shape, which mirrors all existing resolvers in the directory:

/**
 * GitWand — <FORMAT> resolver
 *
 * Strategy: [describe the resolution strategy precisely]
 *
 * Handled cases:
 *  - [case 1]
 *  - [case 2]
 *  - [non-resolvable case → return null]
 */

// ✅ Allowed: pure string manipulation, parsing, algorithms
// ❌ FORBIDDEN: import * as fs from 'fs' / import * as path from 'path'

export interface ResolveResult {
  /** Resolved lines, or null if not resolvable */
  lines: string[] | null;
  /** Human-readable description of what was done (or why it failed) */
  reason: string;
}

/**
 * Attempts to resolve a <format> conflict.
 * Confidence: 0.XX — [justify the score here]
 */
export function tryResolve<Format>Conflict(
  baseLines: string[],
  oursLines: string[],
  theirsLines: string[],
): ResolveResult {
  // ... resolution logic ...

  return { lines: null, reason: "Non-resolvable: [reason]." };
}

Key points:

  • Zero Node.js imports — double-check every import before writing it
  • Justify the confidence score in the JSDoc comment
  • On parse failure, return `lines: null` rather than throwing — the dispatcher

falls back gracefully when a resolver returns null

---

Step 3 — Wire into the dispatcher

Open `packages/core/src/resolvers/dispatcher.ts` and make **four changes**:

**3a. Add a detection function** in the `// ─── Type detection ───` section:

/** Checks whether the file is a <format> file */
export function is<Format>File(filePath: string): boolean {
  return /\.<ext>$/i.test(filePath);
  // For exact filenames: /(?:^|[\\/])<name>$/i.test(filePath)
}

**3b. Add the import** at the top with the other resolver imports:

import { tryResolve<Format>Conflict } from "./<format>.js";

**3c. Add the route in `tryFormatAwareResolve()`**, keeping specificity order — more specific detections first (e.g. `composer.lock` before `*.lock`, a named lockfile before a generic JSON):

if (is<Format>File(filePath)) {
  const result = tryResolve<Format>Conflict(
    hunk.baseLines,
    hunk.oursLines,
    hunk.theirsLines,
  );
  return {
    lines: result.lines,
    reason: `[<format>] ${result.reason}`,
    resolverUsed: "<format>",
  };
}

**3d. Extend the `resolverUsed` union** in `FormatResolveResult`:

resolverUsed: "json" | "markdown" | ... | "<format>" | "structural" | "none";

---

Step 4 — Write tests

Create `packages/core/src/__tests__/resolvers/<format>.test.ts` with at least **5 cases**:

import { describe, it, expect } from "vitest";
import { resolve } from "../../resolver.js";

// Case 1 — Simple resolvable conflict (happy path)
describe("<FORMAT> — non-conflicting addition", () => {
  it("auto-resolves and keeps both sides", () => { /* ... */ });
  it("reason mentions [<format>]", () => { /* ... */ });
});

// Case 2 — Irresolvable complex conflict
describe("<FORMAT> — irresolvable conflict", () => {
  it("returns resolved: false", () => { /* ... */ });
});

// Case 3 — Empty / minimal structure
describe("<FORMAT> — minimal file", () => {
  it("does not throw", () => { /* ... */ });
});

// Cases 4 & 5 — Representative real-world conflicts for this format
describe("<FORMAT> — real scenario 1", () => { /* ... */ });
describe("<FORMAT> — real scenario 2", () => { /* ... */ });

Build fixtures using real git conflict markers (`<<<<<<< ours / ||||||| base / ======= / >>>>>>> theirs`). Never mock the diff algorithms.

---

Step 5 — Update the docs

In `packages/core/CLAUDE.md`, add the new resolver name to the resolvers list.

---

Step 6 — Validate

cd packages/core && pnpm test

If the resolver touches the main resolution pipeline, also run the parity probe to make sure Rust and TypeScript outputs stay in sync:

cd apps/desktop && pnpm test:parity

---

Common mistakes to avoid

  • **Forgetting step 3d** — omitting the new name from the `resolverUsed` union

causes a TypeScript error that only surfaces at build time.

  • **Wrong specificity order** — a generic `*.lock` matcher placed before

`pnpm-lock.yaml` would silently shadow the existing pnpm resolver.

  • **Importing Node.js builtins** — `packages/
Read more
Ships withgitwand

The Git client that actually resolves conflicts: 8 deterministic patterns auto-resolve the ones that were never decisions, full trace on the rest. Native (Tauri 2 + Rust), free, MIT.

Get the whole plugin
Stats
173
Stars
8
Forks
Active
Maintenance
TypeScript
Language
MIT
License
3h ago
Last commit
5mo ago
Created
13d ago
Added

Repo: devlint/GitWand

Other skills on gitwand.