Worktree Tools Schemas

JSON Schema definitions for worktree-tools configuration files.

Worktree Sync Configuration

Schema URL: https://worktree-tools.pages.dev/schemas/worktree-sync.schema.json

Configuration schema for .worktree-sync.json files.

Usage

Add the schema reference to your .worktree-sync.json file:

{
  "$schema": "https://worktree-tools.pages.dev/schemas/worktree-sync.schema.json",
  "link_patterns": [
    ".claude/**",
    ".cursor/**"
  ],
  "worktree_setup": {
    "create_empty_files": ["CLAUDE.local.md"],
    "symlinks_from_main_branch": {
      "CLAUDE.md": "CLAUDE.local.md"
    }
  }
}

Features

View Raw Schema →