MCPcopy Index your code
hub / github.com/github/spec-kit / _bundle_overlaps

Function _bundle_overlaps

src/specify_cli/commands/bundle/__init__.py:676–690  ·  view source on GitHub ↗

Return informational overlaps between *manifest* and installed bundles.

(project_root: Path, manifest, *, offline: bool)

Source from the content-addressed store, hash-verified

674
675
676def _bundle_overlaps(project_root: Path, manifest, *, offline: bool) -> list[str]:
677 """Return informational overlaps between *manifest* and installed bundles."""
678 if manifest is None:
679 return []
680 try:
681 from ...bundler.services.conflict import detect_conflicts
682
683 report = detect_conflicts(
684 manifest,
685 active_integration(project_root),
686 load_records(project_root),
687 )
688 return list(report.overlaps)
689 except BundlerError:
690 return []
691
692
693def _local_manifest_source(arg: str):

Callers 2

bundle_infoFunction · 0.85
bundle_installFunction · 0.85

Calls 3

detect_conflictsFunction · 0.85
active_integrationFunction · 0.85
load_recordsFunction · 0.85

Tested by

no test coverage detected