From b9ef09e728d0521b537968d7ceabfcae86a9ee60 Mon Sep 17 00:00:00 2001 From: Conduction Release Bot Date: Tue, 25 Aug 2026 23:37:12 +0200 Subject: [PATCH] chore: ignore agent/test scratch and untrack generated files Part of the 2026-08-25 fleet structure audit (ADR-100 Decision 2: the repository root is a closed set; generated files are never tracked). Ignore rules added: .stale/ /.e2e-state/ .phpunit.cache `.stale/` was missing from ALL 19 fleet repos and is the one that matters most operationally: agent scratch there grew unbounded and filled the dev disk once already. Refs ConductionNL/hydra ADR-100. --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 00b7d046..6557b985 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,9 @@ tests/e2e/test-results/ # were still tracked candidates. /playwright-report/ /test-results/ + +# Agent/test scratch and tool caches — generated, never source. +# Added by the 2026-08-25 fleet hygiene sweep (ADR-100 Decision 2). +.stale/ +/.e2e-state/ +.phpunit.cache