Skip to content

Overlay Repositories

An overlay repository is a GitHub repository that contains multiple named overlays organized by project. This lets you maintain a central collection of overlays that can be applied to any repo with a short reference like org/repo/overlay-name.

An overlay repository is organized by org, repo, and overlay name:

my-overlays/
├── microsoft/
│ └── FluidFramework/
│ ├── claude-config/
│ │ ├── CLAUDE.md
│ │ └── .claude/
│ └── dev-tools/
│ └── .envrc
└── tylerbutler/
└── tools-monorepo/
└── ai-config/
└── CLAUDE.md

Once configured, reference overlays by their path within the repository:

Terminal window
repoverlay apply microsoft/FluidFramework/claude-config

This section is coming soon.