Worktrees are embedded git repos; if any future agent runs `git add -A` they get committed as a submodule pointer, which causes partial-checkout breakage on clones. Always-ignore so the trap isn't reachable.
75 lines
1.1 KiB
Plaintext
75 lines
1.1 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
dist/
|
|
dist-electron/
|
|
installers/
|
|
packages/web/dist/
|
|
packages/server/dist/
|
|
packages/shared/dist/
|
|
packages/desktop/dist/
|
|
packages/desktop/dist-electron/
|
|
|
|
# Data
|
|
data/
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Generated deployment config (contains secrets)
|
|
livekit.yaml
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
# tsc emit artifacts — Vite handles compilation, tsc is type-check only
|
|
packages/web/src/**/*.js
|
|
|
|
# Misc
|
|
.cache/
|
|
tmp/
|
|
|
|
# Worktrees
|
|
.worktrees/
|
|
|
|
# Superpowers brainstorm artifacts
|
|
.superpowers/
|
|
|
|
# Playwright MCP session artifacts (snapshots, console logs, screenshots)
|
|
.playwright-mcp/
|
|
|
|
# Local files
|
|
Gemini Starter.rtf
|
|
|
|
# Test harness scratch directories
|
|
tests/.tmp/
|
|
tests/reports/*
|
|
!tests/reports/.gitkeep
|
|
|
|
# Claude Code agent scratch — worktrees are embedded repos that, if committed
|
|
# via `git add -A`, produce confusing partial-checkout behavior on clones.
|
|
.claude/worktrees/
|
|
.claude/scheduled_tasks.lock
|