Commit 4f1ffc0
Release v0.12.0 (#233)
## v0.12.0 - 2026-03-27
### Command: `apply`
#### Added
##### Add overlay composition via `extends` and `includes`
Overlays can now inherit files from other library overlays using two new
`repoverlay.ccl` sections. Multi-level chains are supported with cycle
detection.
**`extends`** inherits all files from a parent overlay. The child's own
files take precedence on conflict, making this ideal for creating
specialized variants of a base overlay:
```
extends =
overlay = base-config
```
Use case: a `claude-config-strict` overlay that extends `claude-config`
and overrides just the `CLAUDE.md` file while inheriting everything
else.
**`includes`** cherry-picks specific files from other overlays, useful
when you only need a few shared files without full inheritance:
```
includes =
overlay = shared-dotfiles
files =
.editorconfig
.prettierrc
```
Use case: multiple overlays that each need the same `.editorconfig` from
a shared dotfiles overlay, without duplicating the file.
Both features are restricted to library overlays.
### Command: `create`
#### Fixed
##### Fall back to tracked config files when using `create --yes`
When `--yes` is used and no AI config files are found, `create` now
falls back to tracked config files (`.envrc`, `.gitignore`,
`.vscode/settings.json`, etc.) instead of bailing. The auto-select
priority is: AI configs first, tracked configs second, then error with a
helpful message.
### Command: `edit`
#### Fixed
##### Allow `edit add` without git remote origin
`edit add` with a short-form overlay name (e.g., `my-overlay`) no longer
requires a git remote origin. Previously, the command called
`detect_target_repo()` to resolve `org/repo` for an error message hint,
but this is unnecessary for the actual operation. Now uses the same
inline name extraction as `edit remove` and `edit --interactive`.
##### Directory exclusions now persist across remove/reapply cycles
Directories removed via `edit remove` no longer reappear when the
overlay is removed and reapplied. The `ExcludedFile` struct now tracks
whether an exclusion is for a file or directory, and directory
exclusions match descendant paths. Also fixes trailing-slash handling
(`.vscode/` is now treated the same as `.vscode`) and makes external
state backup failures a hard error to ensure exclusions are always
persisted.
---------
Co-authored-by: tylerbutler <19589+tylerbutler@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>1 parent 5f4fc7b commit 4f1ffc0
8 files changed
Lines changed: 156 additions & 182 deletions
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
8 | 77 | | |
9 | 78 | | |
10 | 79 | | |
| |||
0 commit comments