What's Changed
Fix: TLS interception support for subprocess environments (#86)
Added NODE_EXTRA_CA_CERTS and REQUESTS_CA_BUNDLE to the subprocess environment passthrough list in #buildSafeEnv().
Problem: In environments with TLS interception (corporate proxies, security sandboxes), ctx_fetch_and_index failed with self-signed certificate in certificate chain because the subprocess didn't inherit the custom CA certificate path.
Fix: Two new env vars added to the passthrough list:
NODE_EXTRA_CA_CERTS— Node.jsfetch()(undici) custom CA supportREQUESTS_CA_BUNDLE— Pythonrequestslibrary parity
Closes #86