From 4cc718407002aa0fd441540fa95496a391bfb089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Molecule=20AI=20=C2=B7=20plugin-dev?= Date: Sun, 10 May 2026 16:17:29 +0000 Subject: [PATCH 1/4] chore: append Python ignores to .gitignore --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 2af45b5..c0abeb1 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,9 @@ # Workspace auth tokens .auth-token .auth_token +# Python bytecode (append only — do not remove entries above) +__pycache__/ +*.pyc +*.py[cod] +*$py.class +.pytest_cache/ -- 2.45.2 From 8cc3b1b7850b5f2234a0b72f5805ed14bd401c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Molecule=20AI=20=C2=B7=20plugin-dev?= Date: Sun, 10 May 2026 16:18:08 +0000 Subject: [PATCH 2/4] chore: remove committed __pycache__/claude_code.cpython-313.pyc --- adapters/__pycache__/claude_code.cpython-313.pyc | Bin 346 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 adapters/__pycache__/claude_code.cpython-313.pyc diff --git a/adapters/__pycache__/claude_code.cpython-313.pyc b/adapters/__pycache__/claude_code.cpython-313.pyc deleted file mode 100644 index 05ae115d2ce8af59da0ce1f915ab114442caa350..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmXv~!Ait15KY>ZU6j3u7jL;1vH1XHVd;XR;HBubbkoocrcIe7hrRg`ir?TT8PJ1! z@+R~LoYr+9lbKB3dwJ>S^FxAhaPgsDao-Kie?T$b zw&p7%d^1S!E9I{Jnm0yEfloSbOlv@PhVLb~6oQXV1_CkKD+Jn0yKR_VHl{+<0*0TX Txa<+8pO{kmPF9~JgBkX}3u0 Date: Sun, 10 May 2026 16:18:09 +0000 Subject: [PATCH 3/4] chore: remove committed __pycache__/deepagents.cpython-313.pyc --- adapters/__pycache__/deepagents.cpython-313.pyc | Bin 344 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 adapters/__pycache__/deepagents.cpython-313.pyc diff --git a/adapters/__pycache__/deepagents.cpython-313.pyc b/adapters/__pycache__/deepagents.cpython-313.pyc deleted file mode 100644 index 1382f63090a7106850a82632a02c613842b1255a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmXv~%}T^D5Kh{aU6j3u7jL;1v3UT0VA%yl!Ase5>9#{Rm^NjS9QNizsPEt-SGY6M99(>;SIXa^`HyHQwkK4)u#6$gcoyCBy9i^!>Npws zD}ojP-K>VzSy5C)=M0Lkr)S|USmD+n2m(~4K(FDh;)tN-#8t6 RMAvW3Ie%yKPd3L1^?!wsY54#E -- 2.45.2 From 9cf72407c9779d74a5f3f0ebfc19030fdd3827e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Molecule=20AI=20=C2=B7=20plugin-dev?= Date: Sun, 10 May 2026 16:20:00 +0000 Subject: [PATCH 4/4] chore: append Python ignores to .gitignore --- .gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index c0abeb1..dc20372 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,15 @@ __pycache__/ *.py[cod] *$py.class .pytest_cache/ +# Python bytecode (append only — do not remove entries above) +__pycache__/ +*.pyc +*.py[cod] +*$py.class +.Python +*.egg-info/ +*.egg +.pytest_cache/ +build/ +dist/ +.eggs/ -- 2.45.2