Skip to content

Commit 58c66dd

Browse files
committed
Keep local planning state out of repository history
PRD and plan files are local task bookkeeping, and OMX runtime data is local agent state. The repository should ignore those paths and stop tracking existing planning artifacts while leaving the files available on disk for local use. Constraint: User explicitly directed PRD bookkeeping and .omx state not to be in Git Rejected: Add only ignore rules | tracked PRD/plan files would remain part of repository contents Confidence: high Scope-risk: narrow Reversibility: clean Directive: Do not re-add PRDs, PLANS, or .omx state unless they are promoted to product documentation Tested: git check-ignore -v PRDs/README.md PLANS/plan-005-photon-simulator.md .omx/state/foo conda-bld/osx-arm64/r-tttrlib-0.27.0-h60d57d3_0.conda Not-tested: N/A
1 parent c70ab38 commit 58c66dd

8 files changed

Lines changed: 42 additions & 1063 deletions

.gitignore

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,54 @@ tmp/
1515
playground
1616
junk/
1717
venv
18-
tttrlib
18+
# root-level build/install copy only — must not match nested package dirs
19+
# such as ext/**/io/github/fluorescencetools/tttrlib/ or ext/python/tttrlib.*
20+
/tttrlib
1921
!bin/tttrlib
2022

23+
# Local planning and agent state
24+
PRDs/
25+
PLANS/
26+
.omx/
27+
2128
# Windows artifacts
2229
nul
2330

2431
# CMake builds
2532
cmake-build-*/
2633
cmake-build-release/
34+
build-*/
35+
CMakeCache.txt
36+
CMakeFiles/
37+
CMakeScripts/
38+
Testing/
39+
cmake_install.cmake
40+
compile_commands.json
41+
CTestTestfile.cmake
42+
DartConfiguration.tcl
43+
install_manifest.txt
44+
_deps/
45+
46+
# Local ImageJ/Fiji plugin build & launch folder (native libs, ij.jar, jars)
47+
imagej-test/
48+
49+
# Conda/rattler build output
50+
conda-bld/
51+
docsenv/
2752

2853
# act cache
2954
.act-cache/
3055

56+
# Local tooling state
57+
.claude/settings.local.json
58+
3159
# Documentation and tools
3260
doc/_*
3361
doc/xml
3462
doc/_build/
3563
doc/paper*
3664
/doc/examples/
65+
doc/sg_execution_times.rst
3766

3867
# IDE
3968
.vscode
@@ -44,7 +73,19 @@ doc/paper*
4473
# Python
4574
__pycache__
4675
*.egg-info/
76+
.eggs/
77+
.pytest_cache/
78+
.ruff_cache/
79+
.mypy_cache/
80+
.tox/
81+
.nox/
82+
.benchmarks/
4783
.ipynb_checkpoints
84+
.coverage
85+
.coverage.*
86+
coverage.xml
87+
htmlcov/
88+
pip-wheel-metadata/
4889

4990
# Test data
5091
tttr-data

PLANS/plan-005-photon-simulator.md

Lines changed: 0 additions & 116 deletions
This file was deleted.

PRDs/PRD-001-cross-language-test-parity.md

Lines changed: 0 additions & 162 deletions
This file was deleted.

0 commit comments

Comments
 (0)