From fe889a3f5c70a58deef7d0777d9f8acbd044637a Mon Sep 17 00:00:00 2001 From: 0xrsydn Date: Mon, 21 Sep 2026 17:09:43 +0700 Subject: [PATCH] Ignore run artifacts and trace logs deck.json, capture/live_*.json, and JSONL trace files are machine state from bot runs, not source. Reference captures stay tracked. --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..472a172 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Python bytecode cache +__pycache__/ +*.py[cod] + +# Machine state from bot runs -- reproducible, not source +deck.json + +# Run artifacts written by run.py / JEV_TRACE during live sessions +capture/live_*.json +capture/decisions.jsonl +capture/jev*.jsonl