Launching the app from the working copy left .cowork_history/ next to the
source, and one transcript rode along into the previous commit and up to the
remote. It is the user's data, not code. Untracked and ignored, along with
.cowork_local/ for the same reason.
The file stays in the history of e5bd679 — removing it there rewrites the
branch, which is the user's call.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
123 lines
2.6 KiB
Plaintext
123 lines
2.6 KiB
Plaintext
# =============================================================================
|
|
# Dependencies
|
|
# =============================================================================
|
|
node_modules/
|
|
.pnpm-store/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env.venv/
|
|
pip-wheel-metadata/
|
|
*.egg-info/
|
|
*.egg
|
|
.eggs/
|
|
bower_components/
|
|
|
|
# =============================================================================
|
|
# Environment & Secrets
|
|
# =============================================================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
.env.development
|
|
.env.preview
|
|
*.pem
|
|
*.key
|
|
secrets/
|
|
credentials.json
|
|
.npmrc
|
|
.yarnrc
|
|
|
|
# =============================================================================
|
|
# Build & Distribution
|
|
# =============================================================================
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
.output/
|
|
|
|
# =============================================================================
|
|
# IDE & Editor
|
|
# =============================================================================
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# =============================================================================
|
|
# OS Files
|
|
# =============================================================================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# =============================================================================
|
|
# Logs & Debug
|
|
# =============================================================================
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# =============================================================================
|
|
# Testing & Coverage
|
|
# =============================================================================
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
.nox/
|
|
coverage/
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.nyc_output/
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# =============================================================================
|
|
# AI & Agent Workspace
|
|
# =============================================================================
|
|
vibeflow.json
|
|
.claude/
|
|
.cursor/
|
|
.aider/
|
|
.continue/
|
|
.copilot/
|
|
|
|
# =============================================================================
|
|
# Temporary & Cache
|
|
# =============================================================================
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
.parcel-cache/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
|
|
# Runtime data the app writes next to itself when it is run from the repo.
|
|
# A chat transcript got committed and pushed this way.
|
|
.cowork_history/
|
|
.cowork_local/
|