d1d7b65fb7
- Allow packaging/winget/*.sh via .gitignore (global *.sh ignore) - Track packaging/winget/generate-winget-manifest.sh (bump version/SHA + sync .winget mirror) - docs/RELEASE_RUNBOOK: 34-file -> 27-file single-binary inventory (codewhale+codew only) 7x1 matrix verified, FreeBSD source-build note stays in release-artifacts.yml and docs/INSTALL.md (#1097) and winget manifests resolve #1561. Co-Authored-By: internal-model
151 lines
2.8 KiB
Plaintext
151 lines
2.8 KiB
Plaintext
# Build artifacts
|
|
/target
|
|
/extensions/vscode/out/
|
|
*.pdb
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.rlib
|
|
*.o
|
|
|
|
# Development
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
node_modules/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Generated
|
|
outputs/
|
|
tmp/
|
|
backup/
|
|
|
|
# Reference papers / large research blobs (keep locally if needed, don't ship)
|
|
docs/DeepSeek_V4.pdf
|
|
docs/*.pdf
|
|
|
|
# Note: Cargo.lock is intentionally NOT ignored for reproducible builds
|
|
|
|
# Local dev scripts and temp files
|
|
*.sh
|
|
*.cmd
|
|
!scripts/**
|
|
!.github/scripts/**
|
|
!web/public/install.sh
|
|
!packaging/winget/**
|
|
test.txt
|
|
TODO*.md
|
|
todo*.md
|
|
AGENTS.md
|
|
# …except the deliberate, maintained agent-guidance files:
|
|
!/AGENTS.md
|
|
!crates/tui/AGENTS.md
|
|
!crates/tui/locales/AGENTS.md
|
|
!web/AGENTS.md
|
|
NEXT_SESSION.md
|
|
AI_HANDOFF.md
|
|
result.json
|
|
count_deps.py
|
|
project_overhaul_prompt.md
|
|
.codex/
|
|
.context/
|
|
.wrangler/
|
|
|
|
# Local runtime state
|
|
# Ignore everything under any .codewhale/ (snapshots, auto-generated
|
|
# instructions.md, etc.) at any depth EXCEPT the committed repo authority policy.
|
|
**/.codewhale/*
|
|
!**/.codewhale/constitution.json
|
|
.deepseek/
|
|
**/session_*.json
|
|
*.db
|
|
npm/*/bin/downloads/
|
|
|
|
# Companion app (tracked separately)
|
|
apps/
|
|
|
|
# Claude Code runtime artifacts
|
|
.worktrees/
|
|
.ace-tool/
|
|
|
|
# NOTE: the blanket `.claude/` rule further down already ignores everything
|
|
# under .claude/ — `git check-ignore -v` attributes every path below to that
|
|
# line, not to these. The handoff/codemap patterns are kept as defense in depth:
|
|
# those notes are working state, not user-facing artifacts, and they leaked into
|
|
# the public repo through .claude/ before (HANDOFF_v0.8.28, CODEMAP_v0.8.25).
|
|
# They live under .private/handoffs/ now. If anyone ever narrows the blanket
|
|
# rule to track part of .claude/, these must keep holding.
|
|
.claude/HANDOFF_*
|
|
.claude/CODEMAP_*
|
|
.claude/handoff_*
|
|
.claude/codemap_*
|
|
|
|
# Maintainer-internal design notes (trade-secret material, never published)
|
|
.private/
|
|
|
|
# Coverage reports (build artifacts)
|
|
web/coverage/
|
|
|
|
# Agent handoffs and version-specific setup plans are working-state notes, not
|
|
# public docs. Keep durable setup guidance in docs/runbooks instead.
|
|
docs/*HANDOFF*.md
|
|
docs/*handoff*.md
|
|
docs/*_PLAN.md
|
|
!docs/archive/**
|
|
|
|
# direnv
|
|
.envrc
|
|
.direnv
|
|
scripts/run_deep_swe.py
|
|
.claude/
|
|
|
|
# Local run artifacts and caches re-included by !scripts/**
|
|
results/
|
|
scripts/**/__pycache__/
|
|
|
|
# Maintainer-local verification artifacts
|
|
.uv-bin/
|
|
.uv-cache/
|
|
.uv-tools/
|
|
issues/
|
|
logs/
|
|
notes/
|
|
|
|
# Agent-local roadmap and scratch (never commit — may hold unreleased plans)
|
|
.agents/
|
|
scratchpad/
|
|
|
|
# Exploratory operations spec / prompt — never track (canonical copy lives at CW root)
|
|
operations9.md
|
|
OPERATIONS_0_9_0.md
|
|
operations_0_9_0.md
|
|
CODEWHALE_0_9_0_CUTOVER.md
|
|
|
|
# Hepha project metadata (local only, not upstream)
|
|
.hepha/
|
|
|
|
# Ralph agent scratch (local only)
|
|
.ralph/
|