From 087af5b29749095a5971056433625e7cc5ec10f2 Mon Sep 17 00:00:00 2001 From: TPTBusiness Date: Thu, 9 Apr 2026 14:24:49 +0200 Subject: [PATCH] chore: Remove all JSON strategy files from history and working directory - Deleted 204+ JSON strategy files from Git history using BFG Repo-Cleaner - Added *.json to .gitignore (excluding package*.json) - Removed all loose JSON files from root directory - Git GC completed: 13,221 objects cleaned These files were accidentally committed strategy outputs that should never have been in the repository. The actual strategy files belong in: - results/strategies_new/ (managed by .gitignore) - strategies/ (managed by .gitignore) --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 7f032feb..dae2fdbe 100644 --- a/.gitignore +++ b/.gitignore @@ -113,3 +113,9 @@ docs/SMART_STRATEGY_GEN.md # OpenACP local workspace (contains secrets) .openacp CLAUDE.md + +# Generated strategy JSON files (root directory only) +*.json +!package.json +!package-lock.json +!pyproject.json