CodePulse – Smart Function Change DetectorCodePulse is a VS Code extension that prevents runtime crashes by monitoring Python functions for logic changes and warning you when dependent functions may break. Why CodePulse Prevents Runtime Crashesfile A.py → function f1() file B.py → calls f1() If you modify f1(): Python will NOT warn you VS Code will NOT warn you The error appears only at runtime, sometimes in production Features
How to use
LimitationsThis is an early version. Please note: Only function-level tracking is supported (Python-only) Class methods, decorators, inheritance logic NOT analysed yet(Will be added in future releases) Does not guarantee catching all complex runtime behaviors This extension is meant as a helper, not a full static analyzer. |