-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (44 loc) · 1.39 KB
/
Copy path.gitignore
File metadata and controls
53 lines (44 loc) · 1.39 KB
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
# Python
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Claude — machine-local permissions/paths, never publish (any depth, incl. bundles)
settings.local.json
**/.claude/settings.local.json*
# Runtime / generated artifacts (regenerable)
test-results/
.rehearse/
artifacts/
*.log
# self-test scratch bundle (regenerated by `make`)
results/issue_selftest/
# local bundle backups (moved aside before a live re-run; not for publication)
.backup/
# Mantis scraper (engine/scripts/mantis_notes.py + scrape-mantis.sh): the persistent
# browser profiles hold your logged-in session/cookies — NEVER commit them.
# pw-profile/ = Playwright launch mode; .cf-chrome-profile/ = the --attach debug Chrome.
pw-profile/
.cf-chrome-profile/
notes_json/
# scrape-mantis.sh --setup venv (holds the Playwright wheel + its bundled Node driver).
.venv-mantis/
# wiki scrape cache (regenerable; the reference root-ignores it)
wiki/.wikiscrape/
# git worktrees created by EnterWorktree
.claude/worktrees/
# Act frontier lock/temp sidecars (issue #299) — runtime-only serialization helpers;
# the marker itself (process/.act-reviewed) stays tracked.
.act-reviewed.lock
.act-reviewed.tmp.*
.act-session.lock
# Per-cycle Do/Check worktrees (issue #94) — created next to the target checkout;
# ignored in case a checkout lives inside the project tree.
*.pdca-wt/
*.pdca-wt-l*/