Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Dependencies
node_modules/

# Git worktrees
.worktrees/
# Git worktrees — Claude Code's native worktree tool writes here; this is the
# canonical location (gitignored). Narrow ignore: the rest of .claude/ stays tracked.
.claude/worktrees/

# Docusaurus
build/
Expand Down
4 changes: 4 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ pnpm lint # Linting
5. Use conventional commits: `feat:`, `fix:`, `docs:`, `chore:`
6. Prefer incremental commits over amending

## Worktrees

Use **`.claude/worktrees/`** for git worktrees — this is the canonical location across all trakrf repos. Claude Code's native worktree tool (`EnterWorktree`) writes there and cannot be redirected, so the convention matches the tool rather than fighting it. The directory is gitignored (narrowly — the rest of `.claude/` stays tracked). Do not reintroduce a root-level `.worktrees/` or a symlink bridge.

## Style & Conventions

- **TypeScript** for any config or custom components
Expand Down
Loading