-
Notifications
You must be signed in to change notification settings - Fork 10
feat(python): Add Phase 2 propagation and presets #355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Nov 9, 2025
Owner
Author
This was referenced Nov 9, 2025
This was referenced Nov 9, 2025
SafeDep Report SummaryNo dependency changes detected. Nothing to scan. This report is generated by SafeDep Github App |
Owner
Author
Merge activity
|
## Summary - Implemented Phase 2 propagation primitives (string operations) - Added PropagationPresets for common use cases - Added global configuration system for defaults ## New Components **codepathfinder/propagation.py:** - Added propagates.string_concat() - Added propagates.string_format() **codepathfinder/presets.py:** - PropagationPresets.minimal() - 2 primitives, ~40% coverage - PropagationPresets.standard() - 5 primitives, ~75-80% coverage (recommended) - PropagationPresets.comprehensive() - All MVP primitives - PropagationPresets.exhaustive() - Future: all phases **codepathfinder/config.py:** - PathfinderConfig singleton - set_default_propagation() - set_default_scope() - flows() now uses global defaults when not specified ## Testing ✅ 137 tests pass (38 new tests for Phase 2, presets, config) ✅ 99% coverage (exceeds 95% requirement) ✅ Black, ruff, mypy: all clean ## Breaking Change - flows() now uses global default propagation/scope when not specified - Previous behavior: empty propagation by default - New behavior: uses get_default_propagation() (empty by default, can be configured) 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
f5cae1d to
a0c019d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Summary
Adds Phase 2 propagation primitives (string operations) and preset bundles for common use cases.
Changes
Testing
Stacked On
PR #354