From 76246bad69276f0330204dac0a18b1da561b3769 Mon Sep 17 00:00:00 2001 From: Auto Date: Thu, 5 Feb 2026 09:54:33 +0200 Subject: [PATCH] fix: add temp_cleanup.py to npm package files whitelist PR #158 added temp_cleanup.py and its import in autonomous_agent_demo.py but did not include the file in the package.json "files" array. This caused ModuleNotFoundError for npm installations since the module was missing from the published tarball. Co-Authored-By: Claude Opus 4.5 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 46a2299..03fa4d6 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "registry.py", "rate_limit_utils.py", "security.py", + "temp_cleanup.py", "requirements-prod.txt", "pyproject.toml", ".env.example",